about summary refs log tree commit diff
path: root/Completion/Zsh
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2001-10-08 10:47:46 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2001-10-08 10:47:46 +0000
commit648d1c275613f7e43d01278fb3ffb5bca34640e2 (patch)
treea1f9616537f0836eebca8157ea836e414a8dba74 /Completion/Zsh
parent0ca8bb74f02b1291786f80d9e9f3f884f4ae0fa8 (diff)
downloadzsh-648d1c275613f7e43d01278fb3ffb5bca34640e2.tar.gz
zsh-648d1c275613f7e43d01278fb3ffb5bca34640e2.tar.xz
zsh-648d1c275613f7e43d01278fb3ffb5bca34640e2.zip
add print -f option, %n format specifier and tests for print/printf (15973)
Diffstat (limited to 'Completion/Zsh')
-rw-r--r--Completion/Zsh/Command/_print13
1 files changed, 7 insertions, 6 deletions
diff --git a/Completion/Zsh/Command/_print b/Completion/Zsh/Command/_print
index 76b39f613..9e52da5ab 100644
--- a/Completion/Zsh/Command/_print
+++ b/Completion/Zsh/Command/_print
@@ -10,18 +10,19 @@ eflag="${words[1,CURRENT-1][(r)-*R*]:+-e[enable escapes]}"
   pflag='(-s -u -z)-p[print arguments to input of coprocess]'
 
 _arguments -C -s -A "-*" -S \
-  '-r[ignore escape conventions of echo]' \
-  '(-r -b -m -s -l -N -o -O -i -c -u -p -z -D -P)-R[emulate BSD echo (no escapes, -n & -e flags only)]' \
+  '(-f)-r[ignore escape conventions of echo]' \
+  '(-r -b -f -m -s -l -N -o -O -i -c -u -p -z -D -P)-R[emulate BSD echo (no escapes, -n & -e flags only)]' \
   '-b[recognise bindkey escape sequences]' \
   '-m[remove arguments matching specified pattern]' \
+  '(-r -n -R -l -N -c)-f[print arguments as for the printf builtin]:format' \
   '(-u -p -z)-s[place results in the history list]' \
-  '(-N -c)-n[do not add a newline to the result]' \
-  '(-N -c)-l[print arguments separated by newlines]' \
-  '(-n -l -c)-N[print arguments separated and terminated by nulls]' \
+  '(-c -f)-n[do not add a newline to the result]' \
+  '(-N -c -f)-l[print arguments separated by newlines]' \
+  '(-n -l -c -f)-N[print arguments separated and terminated by nulls]' \
   '(-O)-o[sort arguments in ascending order]' \
   '(-o)-O[sort arguments in descending order]' \
   '-i[case-insensitive sorting]' \
-  '(-n -l -N)-c[print arguments in columns]' \
+  '(-n -l -N -f)-c[print arguments in columns]' \
   '(-s -p -z)-u+[specify file-descriptor to print arguments to]:file-descriptor:_file_descriptors' \
   '(-s -p -u)-z[push arguments onto editing buffer stack]' \
   '-D[substitute any arguments which are named directories using ~ notation]' \