We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40b8b4f commit 10dc765Copy full SHA for 10dc765
avaiable/02_bash_completion.bash
@@ -1 +1,4 @@
1
-source $HOME/.local/bash_completion.d/*
+# anything in $HOME/.local/bash_completion.d ending .bash get included
2
+source $HOME/.local/bash_completion.d/*.bash
3
+
4
+# other environment specific scriots should not end .bash, e.g. see 87_django.bash
avaiable/87_django.bash
@@ -0,0 +1,5 @@
+if [ ! -e "$HOME/.local/bash_completion.d/django_bash_completion" ]; then
+ wget -O https://raw.githubusercontent.com/django/django/main/extras/django_bash_completion $HOME/.local/bash_completion.d/django_bash_completion
+fi
5
+source $HOME/.local/bash_completion.d/django_bash_completion
0 commit comments