2006-02-12 13:14:21 +00:00
|
|
|
function __fish_complete_pids -d "Print a list of process identifiers along with brief descriptions"
|
|
|
|
# This may be a bit slower, but it's nice - having the tty displayed is really handy
|
2013-01-16 22:11:43 +00:00
|
|
|
# 'tail -n +2' deletes the first line, which contains the headers
|
2016-04-08 02:46:51 +00:00
|
|
|
# %self is removed from output by string match -r -v
|
2013-01-16 22:11:43 +00:00
|
|
|
set -l SELF %self
|
|
|
|
|
|
|
|
# Display the tty if available
|
|
|
|
# But not if it's just question marks, meaning no tty
|
2016-04-08 02:46:51 +00:00
|
|
|
ps axc -o pid,ucomm,tty | string match -r -v '^\s*'$SELF'\s' | tail -n +2 | string replace -r ' *([0-9]+) +([^ ].*[^ ]|[^ ]) +([^ ]+) *$' '$1\t$2 [$3]' | string replace -r ' *\[\?*\] *$' ''
|
2006-02-12 13:14:21 +00:00
|
|
|
end
|
|
|
|
|