From 2203c91cf1c0c0737e42fd34e8e7d23e1c2693ce Mon Sep 17 00:00:00 2001 From: Oliver Kiddle Date: Wed, 19 Apr 2000 14:48:48 +0000 Subject: 10833: new print completion and complete nothing for clear and logname --- ChangeLog | 6 ++++++ Completion/Builtins/.distfiles | 6 +++--- Completion/Builtins/_nothing | 2 +- Completion/Builtins/_print | 26 ++++++++++++++++++++++++++ 4 files changed, 36 insertions(+), 4 deletions(-) create mode 100644 Completion/Builtins/_print diff --git a/ChangeLog b/ChangeLog index 06dbf945b..d83867ec4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2000-04-19 Oliver Kiddle + + * 10833: Completion/Builtins/_print, Completion/Builtins/.distfiles, + Completion/Builtins/_nothing: new print completion, no arguments to + clear and logname + 2000-04-19 Peter Stephenson * 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' -- cgit 1.4.1