From: Ronny Chevalier Date: Mon, 12 Jan 2015 20:26:27 +0000 (+0100) Subject: zsh-completion: add missing completions for coredumpctl X-Git-Tag: v219~544 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=720e0be0f00f4a7fee808d1cf60db43970900588;hp=40d6f6a35e7c66ccb8ea060b4539aa2565b4ebf9 zsh-completion: add missing completions for coredumpctl --- diff --git a/shell-completion/zsh/_coredumpctl b/shell-completion/zsh/_coredumpctl index d13bc703a..833c7e2bb 100644 --- a/shell-completion/zsh/_coredumpctl +++ b/shell-completion/zsh/_coredumpctl @@ -4,6 +4,7 @@ _coredumpctl_command(){ local -a _coredumpctl_cmds _coredumpctl_cmds=( 'list:List available coredumps' + 'info:Show detailed information about one or more coredumps' 'dump:Print coredump to stdout' 'gdb:Start gdb on a coredump' ) @@ -30,7 +31,9 @@ _coredumpctl_command(){ _arguments \ {-o+,--output=}'[Write output to FILE]:output file:_files' \ {-F+,--field=}'[Show field in list output]:field' \ + '-1[Show information about most recent entry only]' \ '--no-pager[Do not pipe output into a pager]' \ + '--no-legend[Do not print the column headers]' \ {-h,--help}'[Show this help]' \ '--version[Show package version]' \ '*::coredumpctl commands:_coredumpctl_command'