From 5a7db2f34aa6a6787d98a001b6d28be97f36abf4 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Fri, 25 Jun 2021 12:56:30 +0200 Subject: First commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- bash-completion/bash-aliases | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 bash-completion/bash-aliases (limited to 'bash-completion/bash-aliases') diff --git a/bash-completion/bash-aliases b/bash-completion/bash-aliases new file mode 100644 index 0000000..92aab19 --- /dev/null +++ b/bash-completion/bash-aliases @@ -0,0 +1,29 @@ +# -*- shell-script -*- + +# DESCRIPTION: reload autocompletion scripts and load new ones +# USAGE: recomplete + +recomplete () { + if test -f /etc/bash_completion && ! shopt -oq posix; then + . /etc/bash_completion + fi + if test -f /usr/share/bash-completion/bash_completion && ! shopt -oq posix; then + . /usr/share/bash-completion/bash_completion + fi + if test -d ~/.local/bash_completion.d ] && ! shopt -oq posix; then + for __completionscript in ~/.local/bash_completion.d/*; do + if test -r "${__completionscript}"; then + . "${__completionscript}" + fi + done + unset __completionscript + fi + if test -d ~/.local/share/bash_completion.d && ! shopt -oq posix; then + for __completionscript in ~/.local/share/bash_completion.d/*; do + if [ -r "${__completionscript}" ]; then + . "${__completionscript}" + fi + done + unset __completionscript + fi +} -- cgit v1.2.3-70-g09d2