mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-27 03:13:37 +08:00
c66ec4df3d
__fish_complete_subcommand * sudo: - now can be completed bu group and user (-u and -g keys). - subcommand completion is fixed * __fish_complete_proc.fish is added to complete killall command with list of running processes * __fish_complete_tex.fish is updated with common options * __fish_make_completion_signals.fish is added to make a list of kill signals for kill and killall * completions: - minor filetype completions are added for djview, xpdf, mupdf, gv, xdvi - adduser is copmleted by user and group - dlocate and dpkg are completed by packages - find: -executable options is added - htop: options - funced and funcsave are completed by function names - ifdown and ifup are copmleted by interfaces - kill and killall: options, signals and processes - latexmk, ln, nm: options - lualatex and xelatex copmletions - sudo: -u and -g options - wvdial: presets
21 lines
1.3 KiB
Fish
21 lines
1.3 KiB
Fish
__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 killall -o $number -d $name
|
|
complete -c killall -o $name -d $name
|
|
complete -c killall -o s -x -a \"$number\tSend\ $name\ signal\"
|
|
complete -c killall -o s -x -a \"$name\tSend\ $name\ signal\"
|
|
end
|
|
|
|
complete -c killall -xa '(__fish_complete_proc)'
|
|
complete -c killall -s e -l exact -d 'Require an exact match for very long names'
|
|
complete -c killall -s I -l ignore-case -d 'Do case insensitive process name match'
|
|
complete -c killall -s g -l process-group -d 'Kill the process group to which the process belongs. The kill signal is only sent once per group, even if multiple processes belonging to the same process group were found'
|
|
complete -c killall -s i -l interactive -d 'Interactively ask for confirmation before killing'
|
|
complete -c killall -s u -l user -d 'Kill only processes the specified user owns. Command names are optional'
|
|
complete -c killall -s w -l wait -d 'Wait for all killed processes to die. killall checks once per second if any of the killed processes still exist and only returns if none are left. Note that killall may wait forever if the signal was ignored, had no effect, or if the process stays in zombie state'
|
|
|
|
|