1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-08 12:01:21 +02:00

38989: minor completion updates for FreeBSD

This commit is contained in:
Oliver Kiddle 2016-08-03 17:29:41 +02:00
parent 7d282fa588
commit 81f229a037
5 changed files with 10 additions and 2 deletions

View file

@ -1,5 +1,9 @@
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
2016-08-01 Daniel Shahaf <d.s@daniel.shahaf.name>

View file

@ -20,4 +20,4 @@ _arguments \
'-s[fetch files from the specified server or server pool]:server:_hosts' \
'-t[mail output of cron command, if any, to address]:address' \
'--currently-running[assume specified release as current]:release' \
':command:_values -S " " -w "commands" $flags[@]'
'*:command:_values -S " " -w "commands" $flags[@]'

View file

@ -28,6 +28,7 @@ case $OSTYPE in
'*-j[show sockets belonging to JID]: : _jails -0 -o jid'
'-L[exclude loopback]'
'*-P+[specify protocol]: : _values -s , protocols $protocols'
'-s[display protocol state if applicable]'
)
;;
netbsd*)

View file

@ -57,7 +57,8 @@ else
'(dragonfly|freebsd)*' '-l[link files instead of copying]' \
'(darwin|dragonfly|freebsd|netbsd)*' '-v[show file names as they are copied]' \
'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
[[ $OSTYPE = $~pattern ]] && args+=( $arg )
done

View file

@ -29,6 +29,8 @@ case $state in
databases=( "${(@)${(@f)$(_call_program databases $words[1] --help \
2>/dev/null)}[(r)Supported*,-1]}" )
databases=( "${=${(@)databases[2,${(@)databases[(i)]}-1]}}" )
elif [[ $OSTYPE = freebsd* ]]; then
databases=( ${=${(f)"$(_call_program databases $words[1] 2>&1)"}[-1]} )
else
databases=( passwd group hosts ipnodes services protocols ethers networks netmasks )
fi