File: global-python-argcomplete

package info (click to toggle)
python-argcomplete 3.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 696 kB
  • sloc: python: 2,803; makefile: 49; sh: 7
file content (7 lines) | stat: -rw-r--r-- 379 bytes parent folder | download
1
2
3
4
5
6
7
# 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