fish-shell/share/functions/__fish_complete_proc.fish
Maxim Gonchar 8224d9f984 A lot of new completions.
Some small updates and fixes of old functions and completions.
2012-06-12 20:19:31 +04:00

4 lines
133 B
Fish

function __fish_complete_proc --description 'Complete by list of running processes'
ps -A --no-headers --format comm | sort -u
end