mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-21 13:34:40 +08:00
fix(completions/coredumpctl.fish): missing --arguments
This commit is contained in:
parent
7a1c005b42
commit
a113b3a755
@ -1,10 +1,10 @@
|
||||
set -l commands list info dump debug
|
||||
|
||||
complete -c coredumpctl -f
|
||||
complete -c coredumpctl -n "not __fish_seen_subcommand_from $commands" -d 'List available coredumps'
|
||||
complete -c coredumpctl -n "not __fish_seen_subcommand_from $commands" -d 'Show detailed information about coredump(s)'
|
||||
complete -c coredumpctl -n "not __fish_seen_subcommand_from $commands" -d 'Print first matching coredump to stdout'
|
||||
complete -c coredumpctl -n "not __fish_seen_subcommand_from $commands" -d 'Start a debugger for the first matching coredump'
|
||||
complete -c coredumpctl -n "not __fish_seen_subcommand_from $commands" -a list -d 'List available coredumps'
|
||||
complete -c coredumpctl -n "not __fish_seen_subcommand_from $commands" -a info -d 'Show detailed information about coredump(s)'
|
||||
complete -c coredumpctl -n "not __fish_seen_subcommand_from $commands" -a dump -d 'Print first matching coredump to stdout'
|
||||
complete -c coredumpctl -n "not __fish_seen_subcommand_from $commands" -a debug -d 'Start a debugger for the first matching coredump'
|
||||
|
||||
complete -c coredumpctl -s h -l help -d 'Show this help'
|
||||
complete -c coredumpctl -l version -d 'Print version string'
|
||||
|
Loading…
x
Reference in New Issue
Block a user