mirror of
https://github.com/systemd/systemd.git
synced 2024-11-07 18:27:04 +03:00
Merge pull request #7872 from mineo/coredumpctl-zsh-completion
Fix the ZSH completion on `coredumpctl gdb <tab>`
This commit is contained in:
commit
e4976acec4
@ -16,10 +16,9 @@ _coredumpctl_command(){
|
|||||||
local -a _dumps
|
local -a _dumps
|
||||||
cmd="${${_coredumpctl_cmds[(r)$words[1]:*]%%:*}}"
|
cmd="${${_coredumpctl_cmds[(r)$words[1]:*]%%:*}}"
|
||||||
if (( $#cmd )); then
|
if (( $#cmd )); then
|
||||||
# user can set zstyle ':completion:*:*:coredumpctl:*' sort no for coredumps to be ordered by date, otherwise they get ordered by pid
|
_dumps=( "${(f)$(coredumpctl list --no-legend | awk 'BEGIN{OFS=":"} {sub(/[[ \t]+/, ""); print $4,$0}' 2>/dev/null)}" )
|
||||||
_dumps=( "${(foa)$(coredumpctl list --no-legend | awk 'BEGIN{OFS=":"} {sub(/[[ \t]+/, ""); print $5,$0}' 2>/dev/null)}" )
|
|
||||||
if [[ -n "$_dumps" ]]; then
|
if [[ -n "$_dumps" ]]; then
|
||||||
_describe -t pids 'coredumps' _dumps
|
_describe -V -t pids 'coredumps' _dumps
|
||||||
else
|
else
|
||||||
_message "no coredumps"
|
_message "no coredumps"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user