mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 22:14:53 +00:00
5 lines
129 B
Fish
5 lines
129 B
Fish
|
function __fish_complete_proc --description 'Complete by list of running processes'
|
||
|
ps a --no-headers --format comm | uniq
|
||
|
|
||
|
end
|