summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Ieni <11428655+MarcoIeni@users.noreply.github.com>2020-11-07 19:48:02 +0100
committerGitHub <noreply@github.com>2020-11-07 13:48:02 -0500
commitb14942527ac7f839f16523f7fe390fe922c20553 (patch)
treec1d8274be561327a64c576b6333655e03928c517
parent2ca4b956c3e845b51eed816c78e2fd63c1de779f (diff)
remove some clippy warnings (#383)
* remove some clippy warnings * revert comparison_chain clippy lint Allow it locally
-rw-r--r--src/ansi/iterator.rs24
-rw-r--r--src/ansi/mod.rs2
-rw-r--r--src/bat/assets.rs2
-rw-r--r--src/bat/output.rs2
-rw-r--r--src/cli.rs1
-rw-r--r--src/color.rs2
-rw-r--r--src/draw.rs11
-rw-r--r--src/features/line_numbers.rs3
-rw-r--r--src/features/side_by_side.rs21
-rw-r--r--src/format.rs2
-rw-r--r--src/git_config.rs2
-rw-r--r--src/options/get.rs2
-rw-r--r--src/options/set.rs16
-rw-r--r--src/paint.rs6
-rw-r--r--src/style.rs9
15 files changed, 44 insertions, 61 deletions
diff --git a/src/ansi/iterator.rs b/src/ansi/iterator.rs
index 44fe49fb..1376f9fb 100644
--- a/src/ansi/iterator.rs
+++ b/src/ansi/iterator.rs
@@ -1,8 +1,5 @@
use core::str::Bytes;
-use ansi_term;
-use vte;
-
pub struct AnsiElementIterator<'a> {
// The input bytes
bytes: Bytes<'a>,
@@ -131,19 +128,16 @@ impl vte::Perform for Performer {
return;
}
- match (c, intermediates.get(0)) {
- ('m', None) => {
- if params.is_empty() {
- // Attr::Reset;
- } else {
- self.element = Some(Element::CSI(
- ansi_term_style_from_sgr_parameters(params),
- 0,
- 0,
- ));
- }
+ if let ('m', None) = (c, intermediates.get(0)) {
+ if params.is_empty() {
+ // Attr::Reset;
+ } else {
+ self.element = Some(Element::CSI(
+ ansi_term_style_from_sgr_parameters(params),
+ 0,
+ 0,
+ ));
}
- _ => {}
}
}
diff --git a/src/ansi/mod.rs b/src/ansi/mod.rs
index fc28fc9c..d1741f14 100644
--- a/src/ansi/mod.rs
+++ b/src/ansi/mod.rs
@@ -34,7 +34,7 @@ pub fn measure_text_width(s: &str) -> usize {
// display_width of the result would exceed `display_width`.
pub fn truncate_str<'a, 'b>(s: &'a str, display_width: usize, tail: &'b str) -> Cow<'a, str> {
let items = ansi_strings_iterator(s).collect::<Vec<(&str, bool)>>();
- let width = strip_ansi_codes_from_strings_iterator(items.iter().map(|el| *el)).width();
+ let width = strip_ansi_codes_from_strings_iterator(items.iter().copied()).width();
if width <= display_width {
return Cow::from(s);
}
diff --git a/src/bat/assets.rs b/src/bat/assets.rs
index 17bab5e1..e1a73c75 100644
--- a/src/bat/assets.rs
+++ b/src/bat/assets.rs
@@ -95,7 +95,7 @@ pub fn list_languages() -> std::io::Result<()> {
if loop_through {
for lang in languages {
- write!(stdout, "{}:{}\n", lang.name, lang.file_extensions.join(","))?;
+ writeln!(stdout, "{}:{}", lang.name, lang.file_extensions.join(","))?;
}
} else {
let longest = languages
diff --git a/src/bat/output.rs b/src/bat/output.rs
index e565ed49..98ba5cae 100644
--- a/src/bat/output.rs
+++ b/src/bat/output.rs
@@ -6,8 +6,6 @@ use std::io::{self, Write};
use std::path::PathBuf;
use std::process::{Child, Command, Stdio};
-use shell_words;
-
use super::less::retrieve_less_version;
use crate::config;
diff --git a/src/cli.rs b/src/cli.rs
index 53fcf1d4..a4aae8a9 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -3,7 +3,6 @@ use std::collections::{HashMap, HashSet};
use std::ffi::OsString;
use std::path::PathBuf;
-use itertools;
use lazy_static::lazy_static;
use structopt::clap::AppSettings::{ColorAlways, ColoredHelp, DeriveDisplayOrder};
use structopt::{clap, StructOpt};
diff --git a/src/color.rs b/src/color.rs
index a34628d6..87d0f814 100644
--- a/src/color.rs
+++ b/src/color.rs
@@ -84,7 +84,7 @@ lazy_static! {
}
pub fn ansi_16_color_name_to_number(name: &str) -> Option<u8> {
- ANSI_16_COLORS.get(name).map(|n| *n)
+ ANSI_16_COLORS.get(name).copied()
}
fn ansi_16_color_number_to_name(n: u8) -> Option<&'static str> {
diff --git a/src/draw.rs b/src/draw.rs
index a01e6a96..59c0498a 100644
--- a/src/draw.rs
+++ b/src/draw.rs
@@ -1,9 +1,6 @@
use std::cmp::max;
use std::io::Write;
-use ansi_term;
-use box_drawing;
-
use crate::ansi;
use crate::cli::Width;
use crate::style::Style;
@@ -85,7 +82,7 @@ pub fn write_boxed_with_underline(
text_style,
decoration_style,
)?;
- write!(writer, "\n")?;
+ writeln!(writer)?;
Ok(())
}
@@ -169,7 +166,7 @@ fn _write_under_or_over_lined(
let mut write_line: Box<dyn FnMut(&mut dyn Write) -> std::io::Result<()>> =
Box::new(|writer| {
write_horizontal_line(writer, line_width, text_style, decoration_style)?;
- write!(writer, "\n")?;
+ writeln!(writer)?;
Ok(())
});
match underoverline {
@@ -253,9 +250,9 @@ fn write_boxed_partial(
)
};
let horizontal_edge = horizontal.repeat(box_width);
- write!(
+ writeln!(
writer,
- "{}{}\n",
+ "{}{}",
decoration_style.paint(&horizontal_edge),
decoration_style.paint(down_left),
)?;
diff --git a/src/features/line_numbers.rs b/src/features/line_numbers.rs
index 19c35d40..baa22cbd 100644
--- a/src/features/line_numbers.rs
+++ b/src/features/line_numbers.rs
@@ -1,6 +1,5 @@
use std::cmp::max;
-use ansi_term;
use lazy_static::lazy_static;
use regex::Regex;
@@ -201,7 +200,7 @@ impl<'a> LineNumbersData<'a> {
}
}
-fn parse_line_number_format<'a>(format_string: &'a str) -> LineNumberFormatData<'a> {
+fn parse_line_number_format(format_string: &str) -> LineNumberFormatData {
let mut format_data = Vec::new();
let mut offset = 0;
diff --git a/src/features/side_by_side.rs b/src/features/side_by_side.rs
index 04380461..358261b8 100644
--- a/src/features/side_by_side.rs
+++ b/src/features/side_by_side.rs
@@ -137,10 +137,10 @@ pub fn paint_zero_lines_side_by_side(
);
// TODO: Avoid doing the superimpose_style_sections work twice.
// HACK: These are getting incremented twice, so knock them back down once.
- line_numbers_data.as_mut().map(|d| {
+ if let Some(d) = line_numbers_data.as_mut() {
d.hunk_minus_line_number -= 1;
- d.hunk_plus_line_number -= 1
- });
+ d.hunk_plus_line_number -= 1;
+ }
right_pad_left_panel_line(
&mut left_panel_line,
left_panel_line_is_empty,
@@ -335,14 +335,14 @@ fn paint_minus_or_plus_panel_line(
match (state, &state_for_line_numbers_field) {
(s, t) if s == t => {}
(State::HunkPlus(_), State::HunkMinus(_)) => {
- line_numbers_data
- .as_mut()
- .map(|d| d.hunk_minus_line_number -= 1);
+ if let Some(d) = line_numbers_data.as_mut() {
+ d.hunk_minus_line_number -= 1;
+ }
}
(State::HunkMinus(_), State::HunkPlus(_)) => {
- line_numbers_data
- .as_mut()
- .map(|d| d.hunk_plus_line_number -= 1);
+ if let Some(d) = line_numbers_data.as_mut() {
+ d.hunk_plus_line_number -= 1;
+ }
}
_ => unreachable!(),
}
@@ -351,6 +351,7 @@ fn paint_minus_or_plus_panel_line(
/// Right-pad a line in the left panel with (possibly painted) spaces. A line in the left panel is
/// either a minus line or a zero line.
+#[allow(clippy::comparison_chain)]
fn right_pad_left_panel_line(
panel_line: &mut String,
panel_line_is_empty: bool,
@@ -397,7 +398,7 @@ fn right_pad_left_panel_line(
} else if text_width > panel_width {
*panel_line =
ansi::truncate_str(panel_line, panel_width, &config.truncation_symbol).to_string();
- };
+ }
}
/// Right-fill the background color of a line in the right panel. A line in the right panel is
diff --git a/src/format.rs b/src/format.rs
index ed368c0d..5c1bf39f 100644
--- a/src/format.rs
+++ b/src/format.rs
@@ -1,7 +1,5 @@
use std::borrow::Cow;
-use atty;
-
use crate::config::Config;
use crate::features;
diff --git a/src/git_config.rs b/src/git_config.rs
index fdd28af1..ab831b31 100644
--- a/src/git_config.rs
+++ b/src/git_config.rs
@@ -2,8 +2,6 @@
use std::path::Path;
use std::process;
-use git2;
-
pub struct GitConfig {
config: git2::Config,
pub enabled: bool,
diff --git a/src/options/get.rs b/src/options/get.rs
index caaccd09..e29b8cdf 100644
--- a/src/options/get.rs
+++ b/src/options/get.rs
@@ -100,7 +100,7 @@ pub trait GetOptionValue {
return Some(value_function(opt, &git_config));
}
}
- return None;
+ None
}
}
diff --git a/src/options/set.rs b/src/options/set.rs
index 3683c657..6a0e7340 100644
--- a/src/options/set.rs
+++ b/src/options/set.rs
@@ -100,15 +100,15 @@ pub fn set_options(
// HACK: make minus-line styles have syntax-highlighting iff side-by-side.
if features.contains(&"side-by-side".to_string()) {
let prefix = "normal ";
- if !config::user_supplied_option("minus-style", arg_matches) {
- if opt.minus_style.starts_with(prefix) {
- opt.minus_style = format!("syntax {}", &opt.minus_style[prefix.len()..]);
- }
+ if !config::user_supplied_option("minus-style", arg_matches)
+ && opt.minus_style.starts_with(prefix)
+ {
+ opt.minus_style = format!("syntax {}", &opt.minus_style[prefix.len()..]);
}
- if !config::user_supplied_option("minus-emph-style", arg_matches) {
- if opt.minus_emph_style.starts_with(prefix) {
- opt.minus_emph_style = format!("syntax {}", &opt.minus_emph_style[prefix.len()..]);
- }
+ if !config::user_supplied_option("minus-emph-style", arg_matches)
+ && opt.minus_emph_style.starts_with(prefix)
+ {
+ opt.minus_emph_style = format!("syntax {}", &opt.minus_emph_style[prefix.len()..]);
}
}
diff --git a/src/paint.rs b/src/paint.rs
index c35ba5a5..121617a6 100644
--- a/src/paint.rs
+++ b/src/paint.rs
@@ -578,11 +578,7 @@ impl<'a> Painter<'a> {
fn style_sections_contain_more_than_one_style(sections: &[(Style, &str)]) -> bool {
if sections.len() > 1 {
let (first_style, _) = sections[0];
- sections
- .iter()
- .filter(|(style, _)| *style != first_style)
- .next()
- .is_some()
+ sections.iter().any(|(style, _)| *style != first_style)
} else {
false
}
diff --git a/src/style.rs b/src/style.rs
index d25fc2f7..a15f3eab 100644
--- a/src/style.rs
+++ b/src/style.rs
@@ -96,10 +96,12 @@ impl Style {
pub fn to_painted_string(&self) -> ansi_term::ANSIGenericString<str> {
self.paint(self.to_string())
}
+}
- fn to_string(&self) -> String {
+impl fmt::Display for Style {
+ fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
if self.is_raw {
- return "raw".to_string();
+ return write!(f, "raw");
}
let mut words = Vec::<String>::new();
if self.is_omitted {
@@ -137,7 +139,8 @@ impl Style {
if let Some(color) = self.ansi_term_style.background {
words.push(color::color_to_string(color))
}
- words.join(" ")
+ let style_str = words.join(" ");
+ write!(f, "{}", style_str)
}
}