fish-shell/share/functions/__fish_complete_proc.fish

4 lines
131 B
Fish
Raw Normal View History

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