10

我想允许在我的 gradle 完成脚本--flags中的其他输入之后完成,但似乎需要这样做_arguments

描述选项标志的规范必须在描述分析行的非选项(“位置”或“正常”)参数的规范之前(来自zsh 完成文档

换句话说:command foo --o[TAB]什么都不做,但command --o[TAB]工作正常。有什么方法可以配置_arguments还是我需要使用其他控制功能

注意:在我的情况下,单独的完成函数似乎不是一个选项,因为输入不在固定列表中(gradle 任务是任意的,可以指定多个,gradle myfoo mybar --o[TAB]必须工作)。

4

2 回答 2

1

因此,您希望能够键入类似vim foo -[TAB]内容并让列表自动展开以显示标志和开关,目前您必须在其中键入vim -[TAB]以获取标志和开关,然后键入foo,是吗?

希望我能正确理解你的问题。

我当前的 zsh 完成选项可能会对此有所帮助,因为我可以做我所描述的,这似乎是您所要求的?我设置这些已经有一段时间了,所以我不记得每个人都做了什么。我相信你想要的是setopt COMPLETE_IN_WORD, unset LIST_AMBIGUOUS, 以及zstyle ':completion::approximate*:*' prefix-needed false选项。如果我错了,请纠正我。

我已经将我在 zsh 中使用的内容作为我的完成部分。我已经独立测试了它,它可以在我的 zsh 上按原样运行。

#{{{ Completion Stuff
zmodload -i zsh/complist
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
bindkey -M viins '\C-i' complete-word
# Faster! (?)
zstyle ':completion::complete:*' use-cache 1
# case insensitive completion
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}' \
  'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
zstyle ':completion:*' verbose yes
zstyle ':completion:*:descriptions' format '%B%d%b'
zstyle ':completion:*:messages' format '%d'
zstyle ':completion:*:warnings' format 'No matches for: %d'
zstyle ':completion:*' group-name ''
# generate descriptions with magic.
zstyle ':completion:*' auto-description 'specify: %d'
# Don't prompt for a huge list, page it!
zstyle ':completion:*:default' list-prompt '%S%M matches%s'
# Don't prompt for a huge list, menu it!
zstyle ':completion:*:default' menu 'select=0'
# Have the newer files last so I see them first
zstyle ':completion:*' file-sort modification reverse
# color code completion
zstyle ':completion:*' list-colors "=(#b) #([0-9]#)*=36=31"
unsetopt LIST_AMBIGUOUS
setopt  COMPLETE_IN_WORD
# Separate man page sections.
zstyle ':completion:*:manuals' separate-sections true
#
zstyle ':completion:*' list-separator 'fREW'
# complete with a menu for xwindow ids
zstyle ':completion:*:windows' menu on=0
zstyle ':completion:*:expand:*' tag-order all-expansions
# more errors allowed for large words and fewer for small words
zstyle ':completion:*:approximate:*' max-errors 'reply=(  $((  ($#PREFIX+$#SUFFIX)/3  ))  )'
# Errors format
zstyle ':completion:*:corrections' format '%B%d (errors %e)%b'
# Don't complete stuff already on the line
zstyle ':completion::*:(rm|vi):*' ignore-line true
# Don't complete directory we are already in (../here)
zstyle ':completion:*' ignore-parents parent pwd
zstyle ':completion::approximate*:*' prefix-needed false
于 2017-02-07T20:17:50.733 回答
1

我能够通过此提交解决此问题,至少在指定 1 个任务后允许选项。

诀窍是在_argumentswith中设置状态:->statename,将上下文重置为下一个单词,并提供一个匹配非命令单词并_arguments再次使用的通配符匹配器。

几乎可以肯定有一种方法可以允许在任意数量的单词之后指定选项并避免一些重复,但这是一个可行的开始。

于 2017-02-10T04:49:21.943 回答