summaryrefslogtreecommitdiffstats
path: root/completions/alias
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--completions/alias20
1 files changed, 20 insertions, 0 deletions
diff --git a/completions/alias b/completions/alias
new file mode 100644
index 0000000..92211d8
--- /dev/null
+++ b/completions/alias
@@ -0,0 +1,20 @@
+# bash alias completion -*- shell-script -*-
+
+_alias()
+{
+ local cur prev words cword
+ _init_completion -n = || return
+
+ case ${words[@]} in
+ *[^=])
+ COMPREPLY=($(compgen -A alias -- "$cur"))
+ ;;
+ *=)
+ COMPREPLY=("$(alias ${cur%=} 2>/dev/null | command sed \
+ -e 's|^alias '"$cur"'\(.*\)$|\1|')")
+ ;;
+ esac
+} &&
+ complete -F _alias -o nospace alias
+
+# ex: filetype=sh