mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-18 03:11:15 +02:00
38989: minor completion updates for FreeBSD
This commit is contained in:
parent
7d282fa588
commit
81f229a037
5 changed files with 10 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
||||||
2016-08-03 Oliver Kiddle <opk@zsh.org>
|
2016-08-03 Oliver Kiddle <opk@zsh.org>
|
||||||
|
|
||||||
|
* 38989: Completion/BSD/Command/_freebsd-update,
|
||||||
|
Completion/BSD/Command/_sockstat, Completion/Unix/Command/_cp,
|
||||||
|
Completion/Unix/Command/_getent: minor completion updates for BSD
|
||||||
|
|
||||||
* 38986: Completion/Unix/Command/_gsettings: new completion
|
* 38986: Completion/Unix/Command/_gsettings: new completion
|
||||||
|
|
||||||
2016-08-01 Daniel Shahaf <d.s@daniel.shahaf.name>
|
2016-08-01 Daniel Shahaf <d.s@daniel.shahaf.name>
|
||||||
|
|
|
@ -20,4 +20,4 @@ _arguments \
|
||||||
'-s[fetch files from the specified server or server pool]:server:_hosts' \
|
'-s[fetch files from the specified server or server pool]:server:_hosts' \
|
||||||
'-t[mail output of cron command, if any, to address]:address' \
|
'-t[mail output of cron command, if any, to address]:address' \
|
||||||
'--currently-running[assume specified release as current]:release' \
|
'--currently-running[assume specified release as current]:release' \
|
||||||
':command:_values -S " " -w "commands" $flags[@]'
|
'*:command:_values -S " " -w "commands" $flags[@]'
|
||||||
|
|
|
@ -28,6 +28,7 @@ case $OSTYPE in
|
||||||
'*-j[show sockets belonging to JID]: : _jails -0 -o jid'
|
'*-j[show sockets belonging to JID]: : _jails -0 -o jid'
|
||||||
'-L[exclude loopback]'
|
'-L[exclude loopback]'
|
||||||
'*-P+[specify protocol]: : _values -s , protocols $protocols'
|
'*-P+[specify protocol]: : _values -s , protocols $protocols'
|
||||||
|
'-s[display protocol state if applicable]'
|
||||||
)
|
)
|
||||||
;;
|
;;
|
||||||
netbsd*)
|
netbsd*)
|
||||||
|
|
|
@ -57,7 +57,8 @@ else
|
||||||
'(dragonfly|freebsd)*' '-l[link files instead of copying]' \
|
'(dragonfly|freebsd)*' '-l[link files instead of copying]' \
|
||||||
'(darwin|dragonfly|freebsd|netbsd)*' '-v[show file names as they are copied]' \
|
'(darwin|dragonfly|freebsd|netbsd)*' '-v[show file names as they are copied]' \
|
||||||
'darwin*' "-X[don't copy extended attributes or resource forks]" \
|
'darwin*' "-X[don't copy extended attributes or resource forks]" \
|
||||||
'(dragonfly|freebsd)*' "-x[don't traverse file systems]"
|
'(dragonfly|freebsd)*' "-x[don't traverse file systems]" \
|
||||||
|
'freebsd<10->.*' '-s[make symbolic links instead of copies of non-directories]'
|
||||||
do
|
do
|
||||||
[[ $OSTYPE = $~pattern ]] && args+=( $arg )
|
[[ $OSTYPE = $~pattern ]] && args+=( $arg )
|
||||||
done
|
done
|
||||||
|
|
|
@ -29,6 +29,8 @@ case $state in
|
||||||
databases=( "${(@)${(@f)$(_call_program databases $words[1] --help \
|
databases=( "${(@)${(@f)$(_call_program databases $words[1] --help \
|
||||||
2>/dev/null)}[(r)Supported*,-1]}" )
|
2>/dev/null)}[(r)Supported*,-1]}" )
|
||||||
databases=( "${=${(@)databases[2,${(@)databases[(i)]}-1]}}" )
|
databases=( "${=${(@)databases[2,${(@)databases[(i)]}-1]}}" )
|
||||||
|
elif [[ $OSTYPE = freebsd* ]]; then
|
||||||
|
databases=( ${=${(f)"$(_call_program databases $words[1] 2>&1)"}[-1]} )
|
||||||
else
|
else
|
||||||
databases=( passwd group hosts ipnodes services protocols ethers networks netmasks )
|
databases=( passwd group hosts ipnodes services protocols ethers networks netmasks )
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue