From ef7afd833154e9cd71759a15ccea12b8a3b0a4ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?kleines=20Filmr=C3=B6llchen?= Date: Wed, 10 May 2023 21:59:39 +0200 Subject: Meta/ShellCompletions: Complete command list The command list was missing the help command, and the command order was different from the help output. --- Meta/ShellCompletions/zsh/_serenity | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Meta') diff --git a/Meta/ShellCompletions/zsh/_serenity b/Meta/ShellCompletions/zsh/_serenity index d2916a3f1b..f23c3126fb 100644 --- a/Meta/ShellCompletions/zsh/_serenity +++ b/Meta/ShellCompletions/zsh/_serenity @@ -10,10 +10,10 @@ _serenity() { local commands commands=( + 'help' 'build' 'install' 'image' - 'copy-src' 'run' 'gdb' 'test' @@ -24,6 +24,7 @@ _serenity() { 'addr2line' 'rebuild-toolchain' 'rebuild-world' + 'copy-src' ) local targets @@ -51,6 +52,10 @@ _serenity() { # lagom target is not supported for these, remove from targets targets[$targets[(i)lagom]]=() ;; + help) + # Help command has no targets. + targets=() + ;; esac _describe 'target' targets ;; -- cgit v1.2.3