mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 15:14:44 +00:00
8 lines
205 B
Fish
8 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
|