diff options
| author | Mikael Magnusson <mikachu@gmail.com> | 2016-07-04 16:19:41 +0200 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@gmail.com> | 2016-07-18 00:44:52 +0200 |
| commit | bd707b47875a5bc61b2bea2d7ffd2ed8738afcce (patch) | |
| tree | 4d9650cb867b0bdeef2c52626d5bcc9d248dffcd | |
| parent | Relocate add-zle-hook-widget, everything else in Functions/Zle is a widget. (diff) | |
| download | zsh-bd707b47875a5bc61b2bea2d7ffd2ed8738afcce.tar zsh-bd707b47875a5bc61b2bea2d7ffd2ed8738afcce.tar.gz zsh-bd707b47875a5bc61b2bea2d7ffd2ed8738afcce.tar.bz2 zsh-bd707b47875a5bc61b2bea2d7ffd2ed8738afcce.tar.lz zsh-bd707b47875a5bc61b2bea2d7ffd2ed8738afcce.tar.xz zsh-bd707b47875a5bc61b2bea2d7ffd2ed8738afcce.tar.zst zsh-bd707b47875a5bc61b2bea2d7ffd2ed8738afcce.zip | |
_print: add -v
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | Completion/Zsh/Command/_print | 2 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2016-07-18 Mikael Magnusson <mikachu@gmail.com> + + * 38785 (plus tweak): Completion/Zsh/Command/_print: add -v + 2016-07-17 Barton E. Schaefer <schaefer@zsh.org> * unposted: Functions/Misc/add-zle-hook-widget: Move from Zle/. diff --git a/Completion/Zsh/Command/_print b/Completion/Zsh/Command/_print index 1eba13e88..38f17ab8e 100644 --- a/Completion/Zsh/Command/_print +++ b/Completion/Zsh/Command/_print @@ -33,6 +33,7 @@ if [[ $service = print ]]; then '(-n -l -N -f -C -s -z)-c[print arguments in columns]' \ '(-n -l -N -f -c -s -z)-C+[print arguments in specified number of columns]:columns' \ '(-s -p -z)-u+[specify file descriptor to print arguments to]:file descriptor:_file_descriptors' \ + '-v[store output in named parameter]:parameter:_parameters' \ '(-s -p -u)-z[push arguments onto editing buffer stack]' \ '-D[substitute any arguments which are named directories using ~ notation]' \ '-P[perform prompt expansion]' \ @@ -43,6 +44,7 @@ fi if [[ $state = printf ]]; then _arguments -C -s -S \ + '-v[store output in named parameter]:parameter:_parameters' \ '1:format:->printfformat' \ '*: :_default' && ret=0 fi |
