mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 22:11:54 +02:00
31909: new cat completion
This commit is contained in:
parent
eec5140dde
commit
973f8491ed
3 changed files with 48 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-10-27 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||
|
||||
* 31909: Jun T: Completion/Unix/Command/_cat: new completion.
|
||||
|
||||
2013-10-26 Barton E. Schaefer <schaefer@zsh.org>
|
||||
|
||||
* 31906: Src/jobs.c, Test/A05execution.ztst: printjob() should not
|
||||
|
|
|
@ -20,6 +20,7 @@ _bzip2
|
|||
_bzr
|
||||
_cal
|
||||
_calendar
|
||||
_cat
|
||||
_ccal
|
||||
_cdcd
|
||||
_cdrdao
|
||||
|
|
43
Completion/Unix/Command/_cat
Normal file
43
Completion/Unix/Command/_cat
Normal file
|
@ -0,0 +1,43 @@
|
|||
#compdef cat
|
||||
|
||||
local -a args
|
||||
|
||||
if _pick_variant gnu=GNU unix --version; then
|
||||
args=(
|
||||
'(-A --show-all)'{-A,--show-all}'[equivalent to -vET]'
|
||||
'(-b --number-nonblank -n --number)'{-b,--number-nonblank}'[number nonempty output lines, overrides -n]'
|
||||
'-e[equivalent to -vE]'
|
||||
'(-E --show-ends)'{-E,--show-ends}'[display $ at end of each line]'
|
||||
'(-n --number)'{-n,--number}'[number all output lines]'
|
||||
'(-s --squeeze-blank)'{-s,--squeeze-blank}'[suppress repeated empty output lines]'
|
||||
'-t[equivalent to -vT]'
|
||||
'(-T --show-tabs)'{-T,--show-tabs}'[display TAB characters as ^I]'
|
||||
'-u[ignored]'
|
||||
'(-v --show-nonprinting)'{-v,--show-nonprinting}'[use ^ and M- notation, except for LFD and TAB]'
|
||||
'(- : *)--help[display help and exit]'
|
||||
'(- : *)--version[output version information and exit]'
|
||||
'*:files:_files'
|
||||
)
|
||||
|
||||
elif [[ "$OSTYPE" == (freebsd|dragonfly|darwin)* ]]; then
|
||||
args=(
|
||||
'(-n)-b[number non-blank output lines]'
|
||||
'(-v)-e[display $ at the end of each line (implies -v)]'
|
||||
'-n[number all output lines]'
|
||||
'-s[squeeze multiple blank lines into one]'
|
||||
'(-v)-t[display tab as ^I (implies -v)]'
|
||||
'-u[do not buffer output]'
|
||||
'-v[display non-printing chars as ^X or M-a]'
|
||||
'(-)*:files:_files'
|
||||
)
|
||||
|
||||
else
|
||||
# POSIX reqires '-u', and most OSes may support '-n'
|
||||
args=(
|
||||
'-n[number all output lines]'
|
||||
'-u[do not buffer output]'
|
||||
'*:files:_files'
|
||||
)
|
||||
fi
|
||||
|
||||
_arguments -s -S : $args
|
Loading…
Reference in a new issue