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