We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 362fcd2 commit d28b432Copy full SHA for d28b432
autocomplete/complete.bash
@@ -14,9 +14,9 @@ _tldr_complete() {
14
local word="${COMP_WORDS[COMP_CWORD]}"
15
local cmpl=""
16
if [[ "$word" == "--"* ]] || [ -z "$word" ]; then
17
- cmpl=$'--version\n--help\n--update\n--clear-cache\n--platform\n--render'
+ cmpl=$'--help\n--color\n--platform\n--render\n--update\n--version\n--clear-cache\n--verbose\n--list'
18
elif [[ "$word" == "-"* ]]; then
19
- cmpl=$'\n-v\n-h\n-u\n-c\n-p\n-r'
+ cmpl=$'-h\n-C\n-p\n-r\n-u\n-v\n-c\n-V\n-l'
20
elif [[ "$word" == *"/"* ]]; then # the file command will give an error if passed directly since this will be a directory name - an invalid command
21
cmpl=""
22
else
0 commit comments