aboutsummaryrefslogtreecommitdiffstats
path: root/bash-completion
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-06-25 12:56:30 +0200
committerMattias Andrée <maandree@kth.se>2021-06-25 12:56:30 +0200
commit5a7db2f34aa6a6787d98a001b6d28be97f36abf4 (patch)
tree52db199005cc5daee35b5c0e9b3d28b534449e1c /bash-completion
downloaddotfiles-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')
-rw-r--r--bash-completion/Makefile17
-rw-r--r--bash-completion/bash-aliases29
-rw-r--r--bash-completion/bash-bashrc3
3 files changed, 49 insertions, 0 deletions
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