From 3a5eb6151d84f3f7dfa3dc4d8a9ea53d2e01ada3 Mon Sep 17 00:00:00 2001 From: Collin Styles Date: Mon, 10 Feb 2020 12:01:08 -0800 Subject: [PATCH] Correct `list-language` to `list-languages` in bat completions --- share/completions/bat.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/completions/bat.fish b/share/completions/bat.fish index 036543fac..e3bf1e58b 100644 --- a/share/completions/bat.fish +++ b/share/completions/bat.fish @@ -56,7 +56,7 @@ set -l tabs_opts ' ' complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -s l -l language -a '(__bat_complete_languages_and_extensions)' -d 'Set language for syntax highlighting' -complete -c bat -n 'not __fish_seen_subcommand_from cache' -f -s L -l list-language -d 'List supported languages for syntax highlighting' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -f -s L -l list-languages -d 'List supported languages for syntax highlighting' complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -s m -l map-syntax -d 'Map file name/extension to existing syntax' complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -l theme -a '(__bat_complete_themes)' -d 'Set theme for syntax highlighting' complete -c bat -n 'not __fish_seen_subcommand_from cache' -f -l list-themes -d 'List syntax-highlighting themes'