Files
server/etc/bash_completion.d/global-python-argcomplete
cutemeli 0bfc6c8425 Initial
2025-12-22 10:32:59 +00:00

8 lines
379 B
Plaintext

# Enable python-argcomplete global completions
# This checks for a PYTHON_ARGCOMPLETE_OK in the first 1024 bytes of any
# executable, and if found will attempt to use argcomplete completions.
if [[ -e /usr/lib/python3/dist-packages/argcomplete/bash_completion.d/_python-argcomplete ]]; then
. /usr/lib/python3/dist-packages/argcomplete/bash_completion.d/_python-argcomplete
fi