mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-19 14:51:13 -03:00
Fix variable leaking in completion kill
This commit is contained in:
committed by
Fabian Homborg
parent
a410dcb5c2
commit
ff29d81532
@@ -1,8 +1,8 @@
|
||||
__fish_make_completion_signals
|
||||
|
||||
for sig in $__kill_signals[-1..1]
|
||||
set number (string split ' ' $sig)[1]
|
||||
set name (string split ' ' $sig)[2]
|
||||
set -l number (string split ' ' $sig)[1]
|
||||
set -l name (string split ' ' $sig)[2]
|
||||
complete -c kill -o $number -d $name
|
||||
complete -c kill -o $name -d $number
|
||||
complete -c kill -k -s s -x -a "$name\t$number"
|
||||
|
||||
Reference in New Issue
Block a user