Add completion for pipx. (#1719)
* Add completion for pipx. * Add pipx completion to clean_files.txt. * Format pipx.completion.bash to match the project's coding style. * Format pipx.completion.bash with ./lint_clean_files.sh.pull/1724/head
parent
d9364ced7a
commit
4a5ea95e2e
|
|
@ -31,3 +31,4 @@ themes/powerline
|
|||
# completions
|
||||
#
|
||||
completion/available/rustup.completion.bash
|
||||
completion/available/pipx.completion.bash
|
||||
|
|
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
# pipx completion
|
||||
|
||||
if _command_exists register-python-argcomplete && _command_exists pipx; then
|
||||
eval "$(register-python-argcomplete pipx)"
|
||||
fi
|
||||
Loading…
Reference in New Issue