diff options
| author | Clint Adams <clint@users.sourceforge.net> | 2000-12-26 21:22:49 +0000 |
|---|---|---|
| committer | Clint Adams <clint@users.sourceforge.net> | 2000-12-26 21:22:49 +0000 |
| commit | 17fb95265444e1e7a8dd6ef4717299dfadd76830 (patch) | |
| tree | 6a8c7cc67a3124eefdc3e74ea9ef8f2f8d31d746 | |
| parent | unposted: thinko in configure.in for determination of jobtable size (diff) | |
| download | zsh-17fb95265444e1e7a8dd6ef4717299dfadd76830.tar zsh-17fb95265444e1e7a8dd6ef4717299dfadd76830.tar.gz zsh-17fb95265444e1e7a8dd6ef4717299dfadd76830.tar.bz2 zsh-17fb95265444e1e7a8dd6ef4717299dfadd76830.tar.lz zsh-17fb95265444e1e7a8dd6ef4717299dfadd76830.tar.xz zsh-17fb95265444e1e7a8dd6ef4717299dfadd76830.tar.zst zsh-17fb95265444e1e7a8dd6ef4717299dfadd76830.zip | |
13312: killall gets long filenames from procps
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Completion/User/_killall | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2000-12-26 Clint Adams <schizo@debian.org> + + * 13312: Completion/User/_killall: get longer command names + from procps. + 2000-12-23 Clint Adams <schizo@debian.org> * unposted: configure.in: thinko in jobtable size determination. diff --git a/Completion/User/_killall b/Completion/User/_killall index ea3e8e2cb..a0f04a38b 100644 --- a/Completion/User/_killall +++ b/Completion/User/_killall @@ -3,7 +3,7 @@ if [[ "$OSTYPE" = linux* ]]; then _alternative \ 'signals:: _signals -p' \ - 'processes:process:{ compadd "$expl[@]" ${$(_call processes-names ps ${${EUID/(#s)0(#e)/xa}//[0-9]#/} ho comm 2> /dev/null):#(ps|COMMAND)} }' + 'processes:process:{ compadd "$expl[@]" ${${${(f)"$(_call processes-names ps ${${EUID/(#s)0(#e)/xa}//[0-9]#/} ho cmd 2> /dev/null)"//[][]/}:#(ps|COMMAND)}%%\ *} }' else _signals -p fi |
