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/Makefile | 17 +++++++++++++++++ bash-completion/bash-aliases | 29 +++++++++++++++++++++++++++++ bash-completion/bash-bashrc | 3 +++ 3 files changed, 49 insertions(+) create mode 100644 bash-completion/Makefile create mode 100644 bash-completion/bash-aliases create mode 100644 bash-completion/bash-bashrc (limited to 'bash-completion') diff --git a/bash-completion/Makefile b/bash-completion/Makefile new file mode 100644 index 0000000..7d9fcc9 --- /dev/null +++ b/bash-completion/Makefile @@ -0,0 +1,17 @@ +.POSIX: + +install: + mkdir -p -- ~/.config/bash/aliases.d + mkdir -p -- ~/.config/bash/bashrc.d + test ! -d ~/.config/bash/aliases.d/bash-completion + test ! -d ~/.config/bash/bashrc.d/bash-completion + ln -sf -- ~/.dotfiles/bash-completion/bash-aliases ~/.config/bash/aliases.d/bash-completion + ln -sf -- ~/.dotfiles/bash-completion/bash-bashrc ~/.config/bash/bashrc.d/bash-completion + +uninstall: + -unlink -- ~/.config/bash/aliases.d/bash-completion + -unlink -- ~/.config/bash/bashrc.d/bash-completion + -rmdir -- ~/.config/bash/aliases.d + -rmdir -- ~/.config/bash/bashrc.d + +.PHONY: install uninstall 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 +} diff --git a/bash-completion/bash-bashrc b/bash-completion/bash-bashrc new file mode 100644 index 0000000..5222094 --- /dev/null +++ b/bash-completion/bash-bashrc @@ -0,0 +1,3 @@ +# -*- shell-script -*- + +recomplete -- cgit v1.2.3-70-g09d2