diff options
author | Wieland Hoffmann <themineo@gmail.com> | 2018-01-13 15:23:28 +0100 |
---|---|---|
committer | Wieland Hoffmann <themineo@gmail.com> | 2018-01-13 15:23:28 +0100 |
commit | a6e4952d562d691a5eea09abd52a51593bb54042 (patch) | |
tree | f9edcfe6404151e8ce13d6c5472cc99375e528e4 /shell-completion | |
parent | 83701d75fbb8cbd6fa724bf619a0e8aa47d3b609 (diff) | |
download | systemd-a6e4952d562d691a5eea09abd52a51593bb54042.tar.gz |
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.
Diffstat (limited to 'shell-completion')
-rw-r--r-- | shell-completion/zsh/_coredumpctl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/shell-completion/zsh/_coredumpctl b/shell-completion/zsh/_coredumpctl index 3445aa6f3d..f727820660 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 |