mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-01-22 18:35:16 +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
|