mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-26 19:03:38 +08:00
4 lines
131 B
Fish
4 lines
131 B
Fish
function __fish_complete_proc --description 'Complete by list of running processes'
|
|
ps a --no-headers --format comm | sort -u
|
|
end
|