diff options
Diffstat (limited to 'Meta')
-rw-r--r-- | Meta/ShellCompletions/zsh/_serenity | 7 |
1 files changed, 6 insertions, 1 deletions
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 ;; |