2013-10-11 16:26:24 +02:00
|
|
|
#completion for cheat
|
|
|
|
complete -c cheat -s h -l help -f -x --description "Display help and exit"
|
2013-10-11 19:15:07 +02:00
|
|
|
complete -c cheat -l edit -f -x --description "Edit <cheatsheet>"
|
|
|
|
complete -c cheat -s e -f -x --description "Edit <cheatsheet>"
|
2013-10-11 16:26:24 +02:00
|
|
|
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 --authoritative -f
|
|
|
|
for cheatsheet in (cheat -l | cut -d' ' -f1)
|
|
|
|
complete -c cheat -a "$cheatsheet"
|
2013-10-11 19:15:07 +02:00
|
|
|
complete -c cheat -o e -a "$cheatsheet"
|
|
|
|
complete -c cheat -o '-edit' -a "$cheatsheet"
|
2013-10-11 16:26:24 +02:00
|
|
|
end
|