diff options
Diffstat (limited to 'completions/hash')
-rw-r--r-- | completions/hash | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/completions/hash b/completions/hash new file mode 100644 index 0000000..4ea517b --- /dev/null +++ b/completions/hash @@ -0,0 +1,26 @@ +# hash completion -*- shell-script -*- + +_comp_cmd_hash() +{ + local cur prev words cword comp_args + _comp_initialize -- "$@" || return + + local noargopts='!(*[p]*)' + # shellcheck disable=SC2254 + case $prev in + -${noargopts}p) + _comp_compgen_filedir + return + ;; + esac + + if [[ $cur == -* ]]; then + _comp_compgen_help -c help "$1" + return + fi + + _comp_compgen_commands +} && + complete -F _comp_cmd_hash hash + +# ex: filetype=sh |