Files
womblic/completions/_wom.zsh
2025-08-31 07:34:13 -04:00

23 lines
300 B
Bash

#compdef wom
_arguments \
'1:flag:->flags' \
'*:: :->args'
case "$state" in
flags)
local -a opts
opts=(
'-c:Path to config file'
'-v:Show version and exit'
'-h:Show help text'
$(wom subcmds)
)
_describe 'flags' opts
;;
args)
case $line[1] in
-c) _files ;;
esac
esac