mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 22:11:54 +02:00
43177: _grep: support bzgrep, and add a few options for macOS
This commit is contained in:
parent
14fe9799ff
commit
73a3ad345c
2 changed files with 19 additions and 8 deletions
|
@ -1,3 +1,8 @@
|
|||
2018-07-18 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
|
||||
|
||||
* 43177: Completion/Unix/Command/_grep: support bzgrep, and add
|
||||
a few options for macOS.
|
||||
|
||||
2018-07-17 Peter Stephenson <p.stephenson@samsung.com>
|
||||
|
||||
* unposted: Doc/Makefile.in: remove ftp_sites.yo.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#compdef grep egrep fgrep bsdgrep zgrep zegrep zfgrep ggrep gegrep gfgrep gzgrep gzegrep gzfgrep -value-,GREP_OPTIONS,-default-
|
||||
#compdef grep egrep fgrep bsdgrep zgrep zegrep zfgrep ggrep gegrep gfgrep gzgrep gzegrep gzfgrep bzgrep bzegrep bzfgrep -value-,GREP_OPTIONS,-default-
|
||||
|
||||
local arguments matchers command variant
|
||||
|
||||
|
@ -11,13 +11,15 @@ else
|
|||
arguments=( '(-e --regexp -f --file)1: :_guard "^-*" pattern' )
|
||||
if [[ $service = z* ]]; then
|
||||
arguments+=( '*:files:_files -g "*.gz(-.)"' )
|
||||
elif [[ $service = bz* ]]; then
|
||||
arguments+=( '*:files:_files -g "*.bz2(-.)"' )
|
||||
else
|
||||
arguments+=( '*:files:_files' )
|
||||
fi
|
||||
command="$words[1]"
|
||||
fi
|
||||
|
||||
if [[ $service != (|g)(|z)[ef]grep ]]; then
|
||||
if [[ $service != (|g|z|gz|bz)[ef]grep ]]; then
|
||||
matchers='(--extended-regexp --fixed-strings --basic-regexp --perl-regexp -E -F -G -P)'
|
||||
arguments+=(
|
||||
$matchers{--extended-regexp,-E}'[use extended regular expression]'
|
||||
|
@ -66,7 +68,7 @@ arguments+=(
|
|||
_pick_variant -r variant -c "$command" gnu=gnu gpl2=2.5.1 unix --version
|
||||
case $variant:$OSTYPE in
|
||||
(gnu:*|gpl2:freebsd*))
|
||||
[[ $service != (|g)(|z)[ef]grep ]] && arguments+=(
|
||||
[[ $service != (|g|z|gz|bz)[ef]grep ]] && arguments+=(
|
||||
$matchers{--perl-regexp,-P}'[use perl regular expression]'
|
||||
)
|
||||
;|
|
||||
|
@ -76,17 +78,21 @@ case $variant:$OSTYPE in
|
|||
'(-z --null-data)'{-z,--null-data}'[input data separated by 0 byte, not newline]'
|
||||
)
|
||||
;|
|
||||
gpl2:freebsd*)
|
||||
arguments+=(
|
||||
'(--null --no-filename -h)--null[print 0 byte after each filename]'
|
||||
)
|
||||
;|
|
||||
gpl2:(freebsd|darwin)*)
|
||||
arguments+=(
|
||||
'(--null --no-filename -h)--null[print 0 byte after each filename]'
|
||||
'(-Z --decompress -J --bz2decompress)'{-J,--bz2decompress}"[decompress bzip2'ed input before searching]"
|
||||
'(-Z --decompress -J --bz2decompress)'{-Z,--decompress}"[decompress gzip'ed input before searching]"
|
||||
)
|
||||
;|
|
||||
gpl2:darwin*)
|
||||
arguments+=(
|
||||
'(-p -S)-O[follow symlinks on the command line]'
|
||||
'(-O -S)-p[do not follow symlinks]'
|
||||
'(-O -p)-S[follow all symlinks]'
|
||||
'*--include-dir=[only search directories matching specified pattern]:directory pattern'
|
||||
)
|
||||
;|
|
||||
(gnu:*|gpl2:netbsd*))
|
||||
arguments+=(
|
||||
'(--null -Z --no-filename -h)'{--null,-Z}'[print 0 byte after each filename]'
|
||||
|
|
Loading…
Reference in a new issue