1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-06-17 21:18:06 +02:00

51581: update completions to cover changes in OpenBSD 7.2

This commit is contained in:
Oliver Kiddle 2023-03-16 22:12:48 +01:00
parent 4b7a9fd0ec
commit ea229be4cf
6 changed files with 15 additions and 6 deletions
ChangeLog
Completion
BSD/Command
Unix/Command

View file

@ -1,3 +1,10 @@
2023-03-16 Oliver Kiddle <opk@zsh.org>
* 51581: Completion/BSD/Command/_fw_update,
Completion/BSD/Command/_rcctl, Completion/Unix/Command/_grep,
Completion/Unix/Command/_netstat, Completion/Unix/Command/_ps:
update completions to cover changes in OpenBSD 7.2
2023-03-14 Bart Schaefer <schaefer@zsh.org>
* 51573: Src/builtin.c: additional "typset -p -m" fix for namespaces

View file

@ -3,8 +3,10 @@
_arguments -s -S -A "-*" \
'(*)-a[install or update firmware for all drivers]' \
'-d[delete drivers instead of adding them]' \
'-i[display information]' \
'-F[download firmware only]' \
'-n[dry run]' \
'-p[use the firmware at specified path]:path:' \
'-p+[use the firmware at specified path]: : _alternative
"urls\:url\:_urls"
"directories\:path\:_directories"' \
'*-v[verbose output]' \
'(-a)*:driver:'

View file

@ -3,7 +3,7 @@
local context state line
local -a actions lsarg subcmds variables
actions=(check reload restart start stop)
actions=(configtest check reload restart start stop)
subcmds=(disable enable get getdef ls order set)
variables=(class flags status timeout user)
lsarg=(

View file

@ -89,7 +89,7 @@ case $variant:$OSTYPE in
;|
gpl2:(freebsd|darwin)*)
arguments+=(
'(--null --no-filename -h)--null[print 0 byte after each filename]'
'(--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]"
)
@ -129,6 +129,7 @@ case $variant:$OSTYPE in
arguments=(
${(M)arguments:#((#s)|*\))--(context|binary-files|line-buffered|label|max-count)*}
${${arguments:#((#s)|*\))(\*|)-[d-]*}/\)-r/\)-R}
'(-h)--null[print 0 byte after each filename]'
"-U[search binary files but don't print them]"
'-Z[behave as zgrep]'
)

View file

@ -280,7 +280,6 @@ case $OSTYPE in
'-c+[show specified number of updates, then exit]:count'
'-e[show only the number of errors on the interface]'
'-q[only show interfaces that have seen packets]'
'-t[show current value of the watchdog timer function]'
)
statistics+=( $popt '-r[display routing statistics]' )
groups+=( -n$nopt )

View file

@ -105,6 +105,7 @@ case $OSTYPE in
bsdarg+=( 'M[extract values from specified core]' )
;|
linux-gnu|netbsd*) bsdarg+=( 'k[specify sort order]' ) ;|
linux-gnu|openbsd*) bsd+=( 'f[show process hierarchy]' ) ;|
darwin*|freebsd*)
bsd+=( 'X[skip processes with no controlling terminal]' )
bsdarg+=( '*G[select processes by real group]' )
@ -188,7 +189,6 @@ case $OSTYPE in
done
bsd+=(
'c[show true command name]'
'f[show process hierarchy]'
'h[suppress header]'
'm[show threads after processes]'
'n[numeric output for WCHAN and USER]'