我正在尝试为zsh(或bash)编写一个自定义自动完成脚本,该脚本包含以斜杠开头的选项。
例如:MyCommand /foo=bar.txt /yolo=test /final=4
我一直在尝试使用zsh帮助器_arguments
,但它不起作用:
#compdef MyCommand
_MyCommand()
{
local curcontext="$curcontext" state line
typeset -A opt_args
_arguments \
'/foo=:foo:_files'
}
_MyCommand "$@"
但是,当我将/
替换为--
时效果很好。
我怎样才能做到这一点?
答案 0 :(得分:1)
你可以使用_regex_arguments
这样做:
matchany=/$'[^\0]##\0'/
_regex_arguments _mycommand "$matchany" \( /$'/foo='/ ':option:option:(/foo=)' "$matchany" ':file:filename:_files' \| /$'/yolo='/ ':option:option:(/yolo=)' "$matchany" ':optarg:optarg:(test this)' \| /$'/final='/ ':option:option:(/final=)' /$'[0-9]##\0'/ ':number:number:' \) \#
_mycommand "$@"
您可以在此处详细了解_regex_arguments
http://zsh.sourceforge.net/Doc/Release/Completion-System.html#Completion-Functions
或者在这里:https://github.com/vapniks/zsh-completions/blob/master/zsh-completions-howto.org
这里需要注意的重要一点是,在模式匹配选项名称的末尾没有空字符(\ 0)。