core/cli: add completion for hpi command

This commit is contained in:
Sean Breckenridge 2022-02-15 18:20:47 -08:00 committed by karlicoss
parent f1b18beef7
commit 8b01674fed
5 changed files with 133 additions and 0 deletions

35
misc/completion/zsh/_hpi Normal file
View file

@ -0,0 +1,35 @@
#compdef hpi
_hpi_completion() {
local -a completions
local -a completions_with_descriptions
local -a response
(( ! $+commands[hpi] )) && return 1
response=("${(@f)$(env COMP_WORDS="${words[*]}" COMP_CWORD=$((CURRENT-1)) _HPI_COMPLETE=zsh_complete hpi)}")
for type key descr in ${response}; do
if [[ "$type" == "plain" ]]; then
if [[ "$descr" == "_" ]]; then
completions+=("$key")
else
completions_with_descriptions+=("$key":"$descr")
fi
elif [[ "$type" == "dir" ]]; then
_path_files -/
elif [[ "$type" == "file" ]]; then
_path_files -f
fi
done
if [ -n "$completions_with_descriptions" ]; then
_describe -V unsorted completions_with_descriptions -U
fi
if [ -n "$completions" ]; then
compadd -U -V unsorted -a completions
fi
}
compdef _hpi_completion hpi;