mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-08-06 07:57:48 +00:00
ls: formatting
This commit is contained in:
parent
e2716c947b
commit
0717a5f301
1 changed files with 2 additions and 3 deletions
|
@ -122,7 +122,6 @@ struct Config {
|
|||
display: DisplayOptions,
|
||||
files: Files,
|
||||
sort: Sort,
|
||||
|
||||
recursive: bool,
|
||||
reverse: bool,
|
||||
dereference: bool,
|
||||
|
@ -191,7 +190,7 @@ impl Config {
|
|||
display,
|
||||
files,
|
||||
sort,
|
||||
|
||||
|
||||
recursive: options.is_present(options::RECURSIVE),
|
||||
reverse: options.is_present(options::REVERSE),
|
||||
dereference: options.is_present(options::DEREFERENCE),
|
||||
|
@ -458,7 +457,7 @@ fn sort_entries(entries: &mut Vec<PathBuf>, config: &Config) {
|
|||
)
|
||||
}),
|
||||
Sort::Name => entries.sort(),
|
||||
Sort::None => {},
|
||||
Sort::None => {}
|
||||
}
|
||||
|
||||
if config.reverse {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue