]> git.armaanb.net Git - charsel.git/blob - bash-completions
modified Makefile
[charsel.git] / bash-completions
1 _script()
2 {
3   _script_commands=$(charsel -L)
4
5   local cur prev
6   COMPREPLY=()
7   cur="${COMP_WORDS[COMP_CWORD]}"
8   COMPREPLY=( $(compgen -W "${_script_commands}" -- ${cur}) )
9
10   return 0
11 }
12 complete -o nospace -F _script charsel