mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-11 20:31:11 +01:00
10833: new print completion and complete nothing for clear and logname
This commit is contained in:
parent
21bedf9980
commit
2203c91cf1
4 changed files with 36 additions and 4 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
'
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
#compdef true false log times whoami
|
||||
#compdef true false log times clear logname whoami
|
||||
|
||||
_message 'no argument or option'
|
||||
|
|
26
Completion/Builtins/_print
Normal file
26
Completion/Builtins/_print
Normal file
|
@ -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'
|
Loading…
Reference in a new issue