mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-30 14:53:11 +00:00
3 lines
131 B
Fish
3 lines
131 B
Fish
function __fish_complete_proc --description 'Complete by list of running processes'
|
|
ps a --no-headers --format comm | sort -u
|
|
end
|