mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-19 11:31:26 +01:00
31182: _awk: Allow sticked arguments
This commit is contained in:
parent
275ba0fdca
commit
7c50da8394
2 changed files with 8 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-03-29 Mikael Magnusson <mikachu@gmail.com>
|
||||
|
||||
* 31182: Completion/Unix/Command/_awk: Allow sticked arguments.
|
||||
|
||||
2013-03-20 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||
|
||||
* Han Pingtian: 31167 (with tweak):
|
||||
|
@ -631,5 +635,5 @@
|
|||
|
||||
*****************************************************
|
||||
* This is used by the shell to define $ZSH_PATCHLEVEL
|
||||
* $Revision: 1.5826 $
|
||||
* $Revision: 1.5827 $
|
||||
*****************************************************
|
||||
|
|
|
@ -14,8 +14,8 @@
|
|||
# Fixing this is beyond my current _arguments expertise--help
|
||||
# appreciated.
|
||||
|
||||
_arguments -S -s '-F[define input field separator to be an extended regular expression]:extended regular expression:' \
|
||||
'*-v[assign values to variables]:assignment:' \
|
||||
'(1)-f[program file]:program file:_files' \
|
||||
_arguments -S -s '-F+[define input field separator to be an extended regular expression]:extended regular expression:' \
|
||||
'*-v+[assign values to variables]:assignment:' \
|
||||
'(1)-f+[program file]:program file:_files' \
|
||||
'1:program text:' \
|
||||
'*:input files:_files'
|
||||
|
|
Loading…
Reference in a new issue