diff options
author | Linus Groh <mail@linusgroh.de> | 2022-03-14 22:19:53 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-03-14 22:20:35 +0000 |
commit | 4260638121da86a5311e8540297221b5dbb0fef6 (patch) | |
tree | 206be3c8988c1447621ce8c809a3d65308eab7f0 | |
parent | 7560f61b71664204a143c023b8a7d02ad1b26244 (diff) | |
download | serenity-4260638121da86a5311e8540297221b5dbb0fef6.zip |
Meta: Add copy-src to commands in ZSH autocomplete script
-rw-r--r-- | Meta/ShellCompletions/zsh/_serenity | 3 |
1 files changed, 2 insertions, 1 deletions
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]]=() ;; |