Update _cheat from upstream
See https://github.com/cheat/cheat/blob/master/scripts/cheat.zsh
This commit is contained in:
parent
578d1d59c2
commit
8788b7734c
63
src/_cheat
63
src/_cheat
|
@ -38,35 +38,58 @@
|
||||||
#
|
#
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
local cheats
|
local cheats taglist pathlist
|
||||||
|
|
||||||
_cheat_load_cheats() {
|
_cheat_complete_cheatsheets()
|
||||||
cheats=("${(f)$(cheat -l | cut -d' ' -f1)}")
|
{
|
||||||
|
cheats=("${(f)$(cheat -l -t personal | tail -n +2 | cut -d' ' -f1)}")
|
||||||
|
_describe -t cheats 'cheats' cheats
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_cheat_complete_tags()
|
||||||
|
{
|
||||||
|
taglist=("${(f)$(cheat -T)}")
|
||||||
|
_describe -t taglist 'taglist' taglist
|
||||||
|
}
|
||||||
|
|
||||||
|
_cheat_complete_paths()
|
||||||
|
{
|
||||||
|
pathlist=("${(f)$(cheat -d | cut -d':' -f1)}")
|
||||||
|
_describe -t pathlist 'pathlist' pathlist
|
||||||
|
}
|
||||||
|
|
||||||
_cheat() {
|
_cheat() {
|
||||||
|
|
||||||
|
_arguments -C \
|
||||||
|
'(--init)--init[Write a default config file to stdout]: :->none' \
|
||||||
|
'(-c --colorize)'{-c,--colorize}'[Colorize output]: :->none' \
|
||||||
|
'(-d --directories)'{-d,--directories}'[List cheatsheet directories]: :->none' \
|
||||||
|
'(-e --edit)'{-e,--edit}'[Edit <sheet>]: :->full' \
|
||||||
|
'(-l --list)'{-l,--list}'[List cheatsheets]: :->full' \
|
||||||
|
'(-p --path)'{-p,--path}'[Return only sheets found on path <name>]: :->pathlist' \
|
||||||
|
'(-r --regex)'{-r,--regex}'[Treat search <phrase> as a regex]: :->none' \
|
||||||
|
'(-s --search)'{-s,--search}'[Search cheatsheets for <phrase>]: :->none' \
|
||||||
|
'(-t --tag)'{-t,--tag}'[Return only sheets matching <tag>]: :->taglist' \
|
||||||
|
'(-T --tags)'{-T,--tags}'[List all tags in use]: :->none' \
|
||||||
|
'(-v --version)'{-v,--version}'[Print the version number]: :->none' \
|
||||||
|
'(--rm)--rm[Remove (delete) <sheet>]: :->full' \
|
||||||
|
|
||||||
_arguments -C -s -S -n \
|
case $state in
|
||||||
'(- 1 *)'{-d,--directories}'[List directories on CHEATPATH]: :->full' \
|
(none)
|
||||||
'(- 1 *)'{-e,--edit}'[Edit cheatsheet]:cheat:->cheats' \
|
;;
|
||||||
'(- 1 *)'{-l,--list}'[List cheatsheets]: :->full' \
|
|
||||||
'(- 1 *)'{-s,--search}'[Search cheatsheets for <keyword>]: :->full' \
|
|
||||||
'(- 1 *)'{-v,--version}'[display version and copyright information]: :->full' \
|
|
||||||
|
|
||||||
case "$state" in
|
|
||||||
(full)
|
(full)
|
||||||
;;
|
_cheat_complete_cheatsheets
|
||||||
(cheats)
|
;;
|
||||||
_cheat_load_cheats
|
(taglist)
|
||||||
_describe -t cheats 'cheats' cheats
|
_cheat_complete_tags
|
||||||
;;
|
;;
|
||||||
|
(pathlist)
|
||||||
|
_cheat_complete_paths
|
||||||
|
;;
|
||||||
(*)
|
(*)
|
||||||
_cheat_load_cheats
|
_cheat_complete_cheatsheets
|
||||||
_describe -t cheats 'cheats' cheats
|
;;
|
||||||
;;
|
esac
|
||||||
esac
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_cheat
|
_cheat
|
||||||
|
|
Loading…
Reference in New Issue