diff options
author | Mikael Magnusson <mikachu@gmail.com> | 2013-03-29 09:46:18 +0000 |
---|---|---|
committer | Mikael Magnusson <mikachu@gmail.com> | 2013-03-29 09:46:18 +0000 |
commit | 7c50da839400de11576231e82c5014f5b467a241 (patch) | |
tree | 4da89c75f4ce5c50364e3fcf666f81f5ca08d41b /Completion/Unix/Command | |
parent | 275ba0fdcae1b028c2989ba817e6f3c42fb9366a (diff) | |
download | zsh-7c50da839400de11576231e82c5014f5b467a241.tar.gz zsh-7c50da839400de11576231e82c5014f5b467a241.tar.xz zsh-7c50da839400de11576231e82c5014f5b467a241.zip |
31182: _awk: Allow sticked arguments
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r-- | Completion/Unix/Command/_awk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/Unix/Command/_awk b/Completion/Unix/Command/_awk index da748e9be..c493c3b04 100644 --- a/Completion/Unix/Command/_awk +++ b/Completion/Unix/Command/_awk @@ -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' |