* 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.
7 lines
163 B
Bash
7 lines
163 B
Bash
#!/usr/bin/env bash
|
|
# pipx completion
|
|
|
|
if _command_exists register-python-argcomplete && _command_exists pipx; then
|
|
eval "$(register-python-argcomplete pipx)"
|
|
fi
|