1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-24 17:21:08 +02:00

41826: dana: fix inaccuracies in completion description wording for parameter expansion flags

This commit is contained in:
dana 2017-10-07 02:44:09 -05:00 committed by Oliver Kiddle
parent 12902206b7
commit 96006eaa87
2 changed files with 7 additions and 4 deletions

View file

@ -1,5 +1,8 @@
2017-10-07 Oliver Kiddle <opk@zsh.org>
* dana: 41826: Completion/Zsh/Context/_brace_parameter: fix
inaccuracies in completion description wording
* 41824: Src/Zle/computil.c, Test/Y03arguments.ztst: fix to
not complete rest args from an _arguments set alongside
the argument to and option in a separate set

View file

@ -178,11 +178,11 @@ if [[ $PREFIX = *'${('[^\)]# ]]; then
# "_:extended flags, for future expansion"
"S:search substrings in #, %, / expressions"
"I:search <argument>th match in #, %, / expressions"
"B:include index of beginning of match in #, %, / expressions"
"E:include index of one past end of match in #, %, / expressions"
"M:include matched portion in #, %, / expressions"
"B:include index of beginning of match in #, % expressions"
"E:include index of one past end of match in #, % expressions"
"M:include matched portion in #, % expressions"
"N:include length of match in #, % expressions"
"R:include rest (unmatched portion) in #, %, / expressions"
"R:include rest (unmatched portion) in #, % expressions"
)
_describe -t flags "parameter flag" flags -Q -S ''
return