mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-05 04:17:51 +00:00
Extract common classify
This commit is contained in:
parent
aea0035f94
commit
ed3d28f2cd
@ -34,6 +34,8 @@ impl View {
|
||||
pub fn deduce(matches: &getopts::Matches, filter: FileFilter, dir_action: DirAction) -> Result<View, Misfire> {
|
||||
use options::misfire::Misfire::*;
|
||||
|
||||
let classify = Classify::deduce(matches);
|
||||
|
||||
let colour_scale = || {
|
||||
matches.opt_present("color-scale") || matches.opt_present("colour-scale")
|
||||
};
|
||||
@ -68,8 +70,6 @@ impl View {
|
||||
xattr: xattr::ENABLED && matches.opt_present("extended"),
|
||||
};
|
||||
|
||||
let classify = Classify::deduce(matches);
|
||||
|
||||
Ok(View { mode: Mode::Details(details), colours, classify })
|
||||
}
|
||||
};
|
||||
@ -96,7 +96,6 @@ impl View {
|
||||
};
|
||||
|
||||
let other_options_scan = || {
|
||||
let classify = Classify::deduce(matches);
|
||||
let term_colours = TerminalColours::deduce(matches)?;
|
||||
let term_width = TerminalWidth::deduce()?;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user