mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 05:13:10 +00:00
completions/pkginfo: Silence stderr
This commit is contained in:
parent
e927ad367f
commit
309fae9a12
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
# completions for Python pkginfo
|
# completions for Python pkginfo
|
||||||
if pkginfo --help | string match -qr Python
|
if pkginfo --help 2>/dev/null | string match -qr Python
|
||||||
complete -f -c pkginfo -s h -l help -d 'Print help'
|
complete -f -c pkginfo -s h -l help -d 'Print help'
|
||||||
complete -x -c pkginfo -s m -l metadata-version -d 'Override metadata version'
|
complete -x -c pkginfo -s m -l metadata-version -d 'Override metadata version'
|
||||||
complete -x -c pkginfo -s f -l field -d 'Specify an output field (repeatable)'
|
complete -x -c pkginfo -s f -l field -d 'Specify an output field (repeatable)'
|
||||||
|
|
Loading…
Reference in a new issue