Very late, but hope it can help to someone. I found a solution a few moments ago...
Add the following lines to your /etc/zsh/zshrc (or file containing zsh configuration, I don't know what file is in ubuntu, I use gentoo): zstyle ':completion:*:processes' command 'ps -ax' zstyle ':completion:*:processes-names' command 'ps -aeo comm=' zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31' zstyle ':completion:*:*:kill:*' menu yes select zstyle ':completion:*:*:killall:*:processes-names' list-colors '=(#b) #([0-9]#)*=0=01;31' zstyle ':completion:*:*:killall:*' menu yes select With this you will be able to kill processes with 'kill' with process name or ID. Hope this can help! -- zsh's killall process tab completion should match bash's https://bugs.launchpad.net/bugs/204234 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
