From d0d56223ce1eb21ae9487bbf676f10ce348071ef Mon Sep 17 00:00:00 2001 From: Anatolij Vasilev Date: Mon, 6 May 2024 13:32:50 +0200 Subject: [PATCH] fixed linter --- src/clients/tldr.rs | 2 +- src/config/yaml.rs | 4 +--- src/finder/mod.rs | 23 ++++++++++++----------- 3 files changed, 14 insertions(+), 15 deletions(-) diff --git a/src/clients/tldr.rs b/src/clients/tldr.rs index 01cec89..79c56bf 100644 --- a/src/clients/tldr.rs +++ b/src/clients/tldr.rs @@ -1,5 +1,5 @@ -use crate::prelude::*; use crate::config::CONFIG; +use crate::prelude::*; use std::process::{Command, Stdio}; lazy_static! { diff --git a/src/config/yaml.rs b/src/config/yaml.rs index e0c7e87..6a080bc 100644 --- a/src/config/yaml.rs +++ b/src/config/yaml.rs @@ -172,8 +172,6 @@ impl Default for Shell { impl Default for Client { fn default() -> Self { - Self { - tealdeer: false, - } + Self { tealdeer: false } } } diff --git a/src/finder/mod.rs b/src/finder/mod.rs index f19f2ca..77d129a 100644 --- a/src/finder/mod.rs +++ b/src/finder/mod.rs @@ -52,11 +52,7 @@ fn parse(out: Output, opts: Opts) -> Result { impl FinderChoice { fn check_fzf_version() -> Option<(u32, u32, u32)> { - let output = Command::new("fzf") - .arg("--version") - .output() - .ok()? - .stdout; + let output = Command::new("fzf").arg("--version").output().ok()?.stdout; let version_string = String::from_utf8(output).ok()?; let version_parts: Vec<_> = version_string.split('.').collect(); if version_parts.len() == 3 { @@ -80,12 +76,17 @@ impl FinderChoice { if let Self::Fzf = self { if let Some((major, minor, patch)) = Self::check_fzf_version() { - if major == MIN_FZF_VERSION_MAJOR && minor < MIN_FZF_VERSION_MINOR && patch < MIN_FZF_VERSION_PATCH { - eprintln!("Warning: Fzf version {}.{} does not support the preview window layout used by navi.", major, minor); - eprintln!("Consider updating Fzf to a version >= {}.{}.{} or use a compatible layout.", - MIN_FZF_VERSION_MAJOR, - MIN_FZF_VERSION_MINOR, - MIN_FZF_VERSION_PATCH + if major == MIN_FZF_VERSION_MAJOR + && minor < MIN_FZF_VERSION_MINOR + && patch < MIN_FZF_VERSION_PATCH + { + eprintln!( + "Warning: Fzf version {}.{} does not support the preview window layout used by navi.", + major, minor + ); + eprintln!( + "Consider updating Fzf to a version >= {}.{}.{} or use a compatible layout.", + MIN_FZF_VERSION_MAJOR, MIN_FZF_VERSION_MINOR, MIN_FZF_VERSION_PATCH ); process::exit(1); }