summaryrefslogtreecommitdiffstats
path: root/bash-completion/ul
diff options
context:
space:
mode:
Diffstat (limited to 'bash-completion/ul')
-rw-r--r--bash-completion/ul33
1 files changed, 33 insertions, 0 deletions
diff --git a/bash-completion/ul b/bash-completion/ul
new file mode 100644
index 0000000..449cbe0
--- /dev/null
+++ b/bash-completion/ul
@@ -0,0 +1,33 @@
+_ul_module()
+{
+ local cur prev OPTS
+ COMPREPLY=()
+ cur="${COMP_WORDS[COMP_CWORD]}"
+ prev="${COMP_WORDS[COMP_CWORD-1]}"
+ case $prev in
+ '-t'|'--terminal')
+ local TERM_LIST I
+ TERM_LIST=''
+ for I in /usr/share/terminfo/?/*; do
+ TERM_LIST+="${I##*/} "
+ done
+ COMPREPLY=( $(compgen -W "$TERM_LIST" -- $cur) )
+ return 0
+ ;;
+ '-h'|'--help'|'-V'|'--version')
+ return 0
+ ;;
+ esac
+ case $cur in
+ -*)
+ OPTS="--terminal --indicated --version --help"
+ COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
+ return 0
+ ;;
+ esac
+ local IFS=$'\n'
+ compopt -o filenames
+ COMPREPLY=( $(compgen -f -- $cur) )
+ return 0
+}
+complete -F _ul_module ul