fish-shell/share/completions/pkill.fish
Charlotte 3027bc355b completions/pkill: use locals.
(cherry picked from commit 7c5777a82a)
2023-10-08 17:15:20 +02:00

9 lines
205 B
Fish

__fish_complete_pgrep pkill
__fish_make_completion_signals
for i in $__kill_signals
echo $i | read -l number name
complete -c pkill -o $number -d $name
complete -c pkill -o $name -d $name
end