mirror of
https://github.com/sharkdp/bat
synced 2024-11-16 21:25:56 +00:00
sort the language listing
This commit is contained in:
parent
15b9acd12f
commit
870ff7b538
@ -226,7 +226,8 @@ fn run() -> Result<()> {
|
||||
let theme = assets.get_theme(config.theme.unwrap_or("Default"))?;
|
||||
|
||||
if app.matches.is_present("list-languages") {
|
||||
let languages = assets.syntax_set.syntaxes();
|
||||
let mut languages = assets.syntax_set.syntaxes().to_owned();
|
||||
languages.sort_by(|a, b| a.name.to_uppercase().cmp(&b.name.to_uppercase()));
|
||||
|
||||
let longest = languages
|
||||
.iter()
|
||||
|
Loading…
Reference in New Issue
Block a user