diff options
author | Mattias Andrée <maandree@kth.se> | 2021-06-25 12:56:30 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-06-25 12:56:30 +0200 |
commit | 5a7db2f34aa6a6787d98a001b6d28be97f36abf4 (patch) | |
tree | 52db199005cc5daee35b5c0e9b3d28b534449e1c /bash-completion/bash-aliases | |
download | dotfiles-5a7db2f34aa6a6787d98a001b6d28be97f36abf4.tar.gz dotfiles-5a7db2f34aa6a6787d98a001b6d28be97f36abf4.tar.bz2 dotfiles-5a7db2f34aa6a6787d98a001b6d28be97f36abf4.tar.xz |
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'bash-completion/bash-aliases')
-rw-r--r-- | bash-completion/bash-aliases | 29 |
1 files changed, 29 insertions, 0 deletions
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 +} |