summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Kiddle <opk@users.sourceforge.net>2000-04-19 14:48:48 +0000
committerOliver Kiddle <opk@users.sourceforge.net>2000-04-19 14:48:48 +0000
commit2203c91cf1c0c0737e42fd34e8e7d23e1c2693ce (patch)
tree78ea93b5bdd8995b88cd1faac88572d8dbf21401
parent21bedf998079514d75e327c73972c01767813752 (diff)
downloadzsh-2203c91cf1c0c0737e42fd34e8e7d23e1c2693ce.tar.gz
zsh-2203c91cf1c0c0737e42fd34e8e7d23e1c2693ce.zip
10833: new print completion and complete nothing for clear and logname
-rw-r--r--ChangeLog6
-rw-r--r--Completion/Builtins/.distfiles6
-rw-r--r--Completion/Builtins/_nothing2
-rw-r--r--Completion/Builtins/_print26
4 files changed, 36 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 06dbf945b..d83867ec4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2000-04-19 Oliver Kiddle <opk@zsh.org>
+
+ * 10833: Completion/Builtins/_print, Completion/Builtins/.distfiles,
+ Completion/Builtins/_nothing: new print completion, no arguments to
+ clear and logname
+
2000-04-19 Peter Stephenson <pws@cambridgesiliconradio.com>
* 10830: Doc/Makefile.in: don't force dvips to use 300 dpi.
diff --git a/Completion/Builtins/.distfiles b/Completion/Builtins/.distfiles
index 0ea9e7a71..93a6ce398 100644
--- a/Completion/Builtins/.distfiles
+++ b/Completion/Builtins/.distfiles
@@ -2,7 +2,7 @@ DISTFILES_SRC='
.distfiles
_aliases _arrays _autoload _bg_jobs _bindkey _builtin _cd _command
_compdef _disable _echotc _emulate _enable _fc _fg_jobs _functions
- _hash _kill _limits _nothing _pids _popd _sched _set _setopt _source
- _stat _trap _unhash _unsetopt _vars _vars_eq _wait _which _zcompile
- _zftp _zle _zmodload _zpty _signals _zstyle
+ _hash _kill _limits _nothing _pids _popd _print _sched _set _setopt
+ _source _stat _trap _unhash _unsetopt _vars _vars_eq _wait _which
+ _zcompile _zftp _zle _zmodload _zpty _signals _zstyle
'
diff --git a/Completion/Builtins/_nothing b/Completion/Builtins/_nothing
index 38f6bee77..9551022f9 100644
--- a/Completion/Builtins/_nothing
+++ b/Completion/Builtins/_nothing
@@ -1,3 +1,3 @@
-#compdef true false log times whoami
+#compdef true false log times clear logname whoami
_message 'no argument or option'
diff --git a/Completion/Builtins/_print b/Completion/Builtins/_print
new file mode 100644
index 000000000..f2634e124
--- /dev/null
+++ b/Completion/Builtins/_print
@@ -0,0 +1,26 @@
+#compdef print
+
+local state expl line eflag
+
+# -e flag available only after -R
+eflag="${words[1,CURRENT-1][(r)-*R*]:+-e[enable escapes]}"
+
+_arguments -C -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)]' \
+ '-b[recognise bindkey escape sequences]' \
+ '-m[remove arguments matching specified pattern]' \
+ '(-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]' \
+ '(-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]' \
+ '(-s -p -z)-u+[specify file-descriptor to print arguments to]:file-descritor' \
+ '(-s -u -z)-p[print arguments to input of coprocess]' \
+ '(-s -p -u)-z[push arguments onto editing buffer stack]' \
+ '-D[substitute any arguments which are named directories using ~ notation]' \
+ '-P[perform prompt expansion]' \
+ $eflag '*:default:_default'