mirror of
https://github.com/sharkdp/bat
synced 2024-11-23 20:33:06 +00:00
Use deref coercion to simplify some argument passing
This commit is contained in:
parent
7956485e37
commit
4baa346aae
3 changed files with 3 additions and 3 deletions
|
@ -50,7 +50,7 @@ impl InputDescription {
|
|||
}
|
||||
|
||||
pub fn title(&self) -> &String {
|
||||
match self.title.as_ref() {
|
||||
match &self.title {
|
||||
Some(title) => title,
|
||||
None => &self.name,
|
||||
}
|
||||
|
|
|
@ -395,7 +395,7 @@ impl<'a> Printer for InteractivePrinter<'a> {
|
|||
return Ok(());
|
||||
}
|
||||
};
|
||||
highlighter.highlight(line.as_ref(), self.syntax_set)
|
||||
highlighter.highlight(&line, self.syntax_set)
|
||||
};
|
||||
|
||||
if out_of_range {
|
||||
|
|
|
@ -151,7 +151,7 @@ impl<'a> SyntaxMapping<'a> {
|
|||
}
|
||||
|
||||
pub(crate) fn get_syntax_for(&self, path: impl AsRef<Path>) -> Option<MappingTarget<'a>> {
|
||||
let candidate = Candidate::new(path.as_ref());
|
||||
let candidate = Candidate::new(&path);
|
||||
let candidate_filename = path.as_ref().file_name().map(Candidate::new);
|
||||
for (ref glob, ref syntax) in self.mappings.iter().rev() {
|
||||
if glob.is_match_candidate(&candidate)
|
||||
|
|
Loading…
Reference in a new issue