diff options
Diffstat (limited to 'init/completions/wc.fish')
-rw-r--r-- | init/completions/wc.fish | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/init/completions/wc.fish b/init/completions/wc.fish index a9c2dcc3..f4e5c1e6 100644 --- a/init/completions/wc.fish +++ b/init/completions/wc.fish @@ -1,7 +1,7 @@ -complete -c wc -s c -l bytes -d "Print byte counts" -complete -c wc -s m -l chars -d "Print character counts" -complete -c wc -s l -l lines -d "Print newline counts" -complete -c wc -s L -l max-line-length -d "Print length of longest line" -complete -c wc -s w -l words -d "Print word counts" -complete -c wc -l help -d "Display help and exit" -complete -c wc -l version -d "Display version and exit" +complete -c wc -s c -l bytes -d (_ "Print byte counts") +complete -c wc -s m -l chars -d (_ "Print character counts") +complete -c wc -s l -l lines -d (_ "Print newline counts") +complete -c wc -s L -l max-line-length -d (_ "Print length of longest line") +complete -c wc -s w -l words -d (_ "Print word counts") +complete -c wc -l help -d (_ "Display help and exit") +complete -c wc -l version -d (_ "Display version and exit") |