mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 15:25:58 +01:00
20899d0df2
* hyprpm: add completions * hyprctl: correct spell mistakes * Apply fixes * makefile: correct shell completion paths * makefile: remove complletions on uninstalling
151 lines
5.7 KiB
Bash
151 lines
5.7 KiB
Bash
#compdef hyprpm
|
|
|
|
_hyprpm_cmd_0 () {
|
|
hyprpm list | grep Plugin | awk '{print $4}'
|
|
}
|
|
|
|
_hyprpm () {
|
|
local -a literals=("-n" "::=" "list" "disable" "--help" "update" "add" "--verbose" "-v" "--force" "remove" "enable" "--notify" "-h" "reload" "-f")
|
|
|
|
local -A descriptions
|
|
descriptions[1]="Send a hyprland notification for important events (e.g. load fail)"
|
|
descriptions[3]="List all installed plugins"
|
|
descriptions[4]="Unload a plugin"
|
|
descriptions[5]="Show help menu"
|
|
descriptions[6]="Check and update all plugins if needed"
|
|
descriptions[7]="Install a new plugin repository from git"
|
|
descriptions[8]="Enable too much loggin"
|
|
descriptions[9]="Enable too much loggin"
|
|
descriptions[10]="Force an operation ignoring checks (e.g. update -f)"
|
|
descriptions[11]="Remove a plugin repository"
|
|
descriptions[12]="Load a plugin"
|
|
descriptions[13]="Send a hyprland notification for important events (e.g. load fail)"
|
|
descriptions[14]="Show help menu"
|
|
descriptions[15]="Reload all plugins"
|
|
descriptions[16]="Force an operation ignoring checks (e.g. update -f)"
|
|
|
|
local -A literal_transitions
|
|
literal_transitions[1]="([10]=7 [3]=3 [8]=7 [9]=7 [5]=7 [11]=3 [12]=4 [6]=3 [14]=7 [4]=4 [15]=3 [16]=7 [7]=3)"
|
|
literal_transitions[2]="([11]=3 [12]=4 [4]=4 [3]=3 [15]=3 [6]=3 [7]=3)"
|
|
literal_transitions[5]="([2]=6)"
|
|
literal_transitions[6]="([1]=7 [13]=7)"
|
|
|
|
local -A match_anything_transitions
|
|
match_anything_transitions=([4]=3 [3]=5 [1]=2 [2]=2)
|
|
|
|
declare -A subword_transitions
|
|
|
|
local state=1
|
|
local word_index=2
|
|
while [[ $word_index -lt $CURRENT ]]; do
|
|
if [[ -v "literal_transitions[$state]" ]]; then
|
|
local -A state_transitions
|
|
eval "state_transitions=${literal_transitions[$state]}"
|
|
|
|
local word=${words[$word_index]}
|
|
local word_matched=0
|
|
for ((literal_id = 1; literal_id <= $#literals; literal_id++)); do
|
|
if [[ ${literals[$literal_id]} = "$word" ]]; then
|
|
if [[ -v "state_transitions[$literal_id]" ]]; then
|
|
state=${state_transitions[$literal_id]}
|
|
word_index=$((word_index + 1))
|
|
word_matched=1
|
|
break
|
|
fi
|
|
fi
|
|
done
|
|
if [[ $word_matched -ne 0 ]]; then
|
|
continue
|
|
fi
|
|
fi
|
|
|
|
if [[ -v "match_anything_transitions[$state]" ]]; then
|
|
state=${match_anything_transitions[$state]}
|
|
word_index=$((word_index + 1))
|
|
continue
|
|
fi
|
|
|
|
return 1
|
|
done
|
|
|
|
completions_no_description_trailing_space=()
|
|
completions_no_description_no_trailing_space=()
|
|
completions_trailing_space=()
|
|
suffixes_trailing_space=()
|
|
descriptions_trailing_space=()
|
|
completions_no_trailing_space=()
|
|
suffixes_no_trailing_space=()
|
|
descriptions_no_trailing_space=()
|
|
|
|
if [[ -v "literal_transitions[$state]" ]]; then
|
|
local -A state_transitions
|
|
eval "state_transitions=${literal_transitions[$state]}"
|
|
|
|
for literal_id in ${(k)state_transitions}; do
|
|
if [[ -v "descriptions[$literal_id]" ]]; then
|
|
completions_trailing_space+=("${literals[$literal_id]}")
|
|
suffixes_trailing_space+=("${literals[$literal_id]}")
|
|
descriptions_trailing_space+=("${descriptions[$literal_id]}")
|
|
else
|
|
completions_no_description_trailing_space+=("${literals[$literal_id]}")
|
|
fi
|
|
done
|
|
fi
|
|
local -A commands=([4]=0)
|
|
|
|
if [[ -v "commands[$state]" ]]; then
|
|
local command_id=${commands[$state]}
|
|
local output=$(_hyprpm_cmd_${command_id} "${words[$CURRENT]}")
|
|
local -a command_completions=("${(@f)output}")
|
|
for line in ${command_completions[@]}; do
|
|
local parts=(${(@s: :)line})
|
|
if [[ -v "parts[2]" ]]; then
|
|
completions_trailing_space+=("${parts[1]}")
|
|
suffixes_trailing_space+=("${parts[1]}")
|
|
descriptions_trailing_space+=("${parts[2]}")
|
|
else
|
|
completions_no_description_trailing_space+=("${parts[1]}")
|
|
fi
|
|
done
|
|
fi
|
|
|
|
local maxlen=0
|
|
for suffix in ${suffixes_trailing_space[@]}; do
|
|
if [[ ${#suffix} -gt $maxlen ]]; then
|
|
maxlen=${#suffix}
|
|
fi
|
|
done
|
|
for suffix in ${suffixes_no_trailing_space[@]}; do
|
|
if [[ ${#suffix} -gt $maxlen ]]; then
|
|
maxlen=${#suffix}
|
|
fi
|
|
done
|
|
|
|
for ((i = 1; i <= $#suffixes_trailing_space; i++)); do
|
|
if [[ -z ${descriptions_trailing_space[$i]} ]]; then
|
|
descriptions_trailing_space[$i]="${(r($maxlen)( ))${suffixes_trailing_space[$i]}}"
|
|
else
|
|
descriptions_trailing_space[$i]="${(r($maxlen)( ))${suffixes_trailing_space[$i]}} -- ${descriptions_trailing_space[$i]}"
|
|
fi
|
|
done
|
|
|
|
for ((i = 1; i <= $#suffixes_no_trailing_space; i++)); do
|
|
if [[ -z ${descriptions_no_trailing_space[$i]} ]]; then
|
|
descriptions_no_trailing_space[$i]="${(r($maxlen)( ))${suffixes_no_trailing_space[$i]}}"
|
|
else
|
|
descriptions_no_trailing_space[$i]="${(r($maxlen)( ))${suffixes_no_trailing_space[$i]}} -- ${descriptions_no_trailing_space[$i]}"
|
|
fi
|
|
done
|
|
|
|
compadd -Q -a completions_no_description_trailing_space
|
|
compadd -Q -S ' ' -a completions_no_description_no_trailing_space
|
|
compadd -l -Q -a -d descriptions_trailing_space completions_trailing_space
|
|
compadd -l -Q -S '' -a -d descriptions_no_trailing_space completions_no_trailing_space
|
|
return 0
|
|
}
|
|
|
|
if [[ $ZSH_EVAL_CONTEXT =~ :file$ ]]; then
|
|
compdef _hyprpm hyprpm
|
|
else
|
|
_hyprpm
|
|
fi
|