1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-09 00:11:25 +02:00

unposted: document change to brace parameter completion context in 29452/29459

This commit is contained in:
Peter Stephenson 2011-06-14 18:59:23 +00:00
parent 21c39600ef
commit 4e556ac875
2 changed files with 14 additions and 6 deletions

View file

@ -1,3 +1,8 @@
2011-06-14 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Doc/Zsh/compwid.yo: document change to brace
parameter context in 29452/29459.
2011-06-12 Barton E. Schaefer <schaefer@zsh.org> 2011-06-12 Barton E. Schaefer <schaefer@zsh.org>
* 29472: Src/jobs.c: findproc() needs at least to also return * 29472: Src/jobs.c: findproc() needs at least to also return
@ -27,10 +32,10 @@
2011-06-04 Peter Stephenson <p.w.stephenson@ntlworld.com> 2011-06-04 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Completion/Zsh/Context/_brace_parameter, Src/Zle/compcore.c * 29459: Completion/Zsh/Context/_brace_parameter,
(check_param): In shell function, check for ${( not at start Src/Zle/compcore.c (check_param): In shell function, check for
of match; in C code, check for untokenized parentheses when ${( not at start of match; in C code, check for untokenized
in double quotes. parentheses when in double quotes.
2011-06-03 Peter Stephenson <p.w.stephenson@ntlworld.com> 2011-06-03 Peter Stephenson <p.w.stephenson@ntlworld.com>
@ -14985,5 +14990,5 @@
***************************************************** *****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL * This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.5368 $ * $Revision: 1.5369 $
***************************************************** *****************************************************

View file

@ -162,7 +162,10 @@ this case the tt(words) array contains the words inside the parentheses.
) )
item(tt(brace_parameter))( item(tt(brace_parameter))(
when completing the name of a parameter in a parameter expansion beginning when completing the name of a parameter in a parameter expansion beginning
with tt(${). with tt(${). This context will also be set when completing parameter
flags following tt(${LPAR()); the full command line argument is presented
and the handler must test the value to be completed to ascertain that
this is the case.
) )
item(tt(assign_parameter))( item(tt(assign_parameter))(
when completing the name of a parameter in a parameter assignment. when completing the name of a parameter in a parameter assignment.