diff options
author | Oliver Kiddle <opk@zsh.org> | 2023-03-16 22:12:48 +0100 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2023-03-16 22:12:48 +0100 |
commit | ea229be4cfb6a734938648df4322fc4473e1712e (patch) | |
tree | 0e344de8b305851277c7cc255441344e7fbcfa11 /Completion/Unix/Command/_ps | |
parent | 4b7a9fd0ecb750646cac76c41383f8391cd0fdd9 (diff) | |
download | zsh-ea229be4cfb6a734938648df4322fc4473e1712e.tar.gz zsh-ea229be4cfb6a734938648df4322fc4473e1712e.zip |
51581: update completions to cover changes in OpenBSD 7.2
Diffstat (limited to 'Completion/Unix/Command/_ps')
-rw-r--r-- | Completion/Unix/Command/_ps | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_ps b/Completion/Unix/Command/_ps index 9b54cbcc6..905309a12 100644 --- a/Completion/Unix/Command/_ps +++ b/Completion/Unix/Command/_ps @@ -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]' |