From a6e4952d562d691a5eea09abd52a51593bb54042 Mon Sep 17 00:00:00 2001 From: Wieland Hoffmann Date: Sat, 13 Jan 2018 15:23:28 +0100 Subject: [PATCH] zsh/coredumpctl: Never sort the completion candidates That way, they're always sorted by date. I do not know how to make ZSH sort them by PID through some option, but that doesn't seem very useful in the first place. --- shell-completion/zsh/_coredumpctl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/shell-completion/zsh/_coredumpctl b/shell-completion/zsh/_coredumpctl index 3445aa6f3d9..f727820660a 100644 --- a/shell-completion/zsh/_coredumpctl +++ b/shell-completion/zsh/_coredumpctl @@ -16,10 +16,9 @@ _coredumpctl_command(){ local -a _dumps cmd="${${_coredumpctl_cmds[(r)$words[1]:*]%%:*}}" 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=( "${(foa)$(coredumpctl list --no-legend | awk 'BEGIN{OFS=":"} {sub(/[[ \t]+/, ""); print $4,$0}' 2>/dev/null)}" ) + _dumps=( "${(f)$(coredumpctl list --no-legend | awk 'BEGIN{OFS=":"} {sub(/[[ \t]+/, ""); print $4,$0}' 2>/dev/null)}" ) if [[ -n "$_dumps" ]]; then - _describe -t pids 'coredumps' _dumps + _describe -V -t pids 'coredumps' _dumps else _message "no coredumps" fi -- 2.39.2