initial commit

This commit is contained in:
2025-08-31 07:34:13 -04:00
commit be5007d57c
23 changed files with 1013 additions and 0 deletions

22
completions/_wom.zsh Normal file
View File

@@ -0,0 +1,22 @@
#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