This file is indexed.

/usr/share/fish/completions/kill.fish is in fish-common 2.2.0-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
__fish_make_completion_signals

for i in $__kill_signals
	set number (echo $i | cut -d " " -f 1)
	set name (echo $i | cut -d " " -f 2)
	complete -c kill -o $number -d $name
	complete -c kill -o $name -d $name
	complete -c kill -o s -x -a \"$number\tSend\ $name\ signal\"
	complete -c kill -o s -x -a \"$name\tSend\ $name\ signal\"
end

complete -c kill -xa '(__fish_complete_pids)'