mirror of
https://github.com/cheat/cheat.git
synced 2024-11-16 08:58:28 +01:00
fix edit autocomplete (just dont show description of -e/--edit option and i dont know why
This commit is contained in:
parent
53978fa86f
commit
b1df8fe3cc
1 changed files with 4 additions and 1 deletions
|
@ -1,9 +1,12 @@
|
||||||
#completion for cheat
|
#completion for cheat
|
||||||
complete -c cheat -s h -l help -f -x --description "Display help and exit"
|
complete -c cheat -s h -l help -f -x --description "Display help and exit"
|
||||||
complete -c cheat -s e -l edit -f -x --description "Edit <cheatsheet>"
|
complete -c cheat -l edit -f -x --description "Edit <cheatsheet>"
|
||||||
|
complete -c cheat -s e -f -x --description "Edit <cheatsheet>"
|
||||||
complete -c cheat -s l -l list -f -x --description "List all available cheatsheets"
|
complete -c cheat -s l -l list -f -x --description "List all available cheatsheets"
|
||||||
complete -c cheat -s d -l cheat-directories -f -x --description "List all current cheat dirs"
|
complete -c cheat -s d -l cheat-directories -f -x --description "List all current cheat dirs"
|
||||||
complete -c cheat --authoritative -f
|
complete -c cheat --authoritative -f
|
||||||
for cheatsheet in (cheat -l | cut -d' ' -f1)
|
for cheatsheet in (cheat -l | cut -d' ' -f1)
|
||||||
complete -c cheat -a "$cheatsheet"
|
complete -c cheat -a "$cheatsheet"
|
||||||
|
complete -c cheat -o e -a "$cheatsheet"
|
||||||
|
complete -c cheat -o '-edit' -a "$cheatsheet"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue