From 4260638121da86a5311e8540297221b5dbb0fef6 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Mon, 14 Mar 2022 22:19:53 +0000 Subject: [PATCH] Meta: Add copy-src to commands in ZSH autocomplete script --- Meta/ShellCompletions/zsh/_serenity | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Meta/ShellCompletions/zsh/_serenity b/Meta/ShellCompletions/zsh/_serenity index f25a48cd39..551887e307 100644 --- a/Meta/ShellCompletions/zsh/_serenity +++ b/Meta/ShellCompletions/zsh/_serenity @@ -13,6 +13,7 @@ _serenity() { 'build' 'install' 'image' + 'copy-src' 'run' 'gdb' 'test' @@ -47,7 +48,7 @@ _serenity() { ;; targets) case "$command" in - install|image|kaddr2line|rebuild-toolchain|rebuild-world) + install|image|copy-src|kaddr2line|rebuild-toolchain|rebuild-world) # lagom target is not supported for these, remove from targets targets[$targets[(i)lagom]]=() ;;