From 43405c35f07d8f6fb7c177cf599e19090020527e Mon Sep 17 00:00:00 2001 From: zeripath Date: Tue, 21 Feb 2023 17:32:24 +0000 Subject: Add Bash and Zsh completion scripts (#22646) This PR adds contrib scripts for bash and zsh completion. Simply call: ```bash source contrib/autocompletion/bash_autocomplete ``` or for Zsh: ```bash source contrib/autocompletion/zsh_autocomplete ``` Signed-off-by: Andrew Thornton --------- Signed-off-by: Andrew Thornton Co-authored-by: a1012112796 <1012112796@qq.com> Co-authored-by: techknowlogick --- main.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'main.go') diff --git a/main.go b/main.go index 4b183a7686..eeedf54c27 100644 --- a/main.go +++ b/main.go @@ -113,6 +113,8 @@ arguments - which can alternatively be run by running the subcommand web.` setFlagsAndBeforeOnSubcommands(&app.Commands[i], defaultFlags, establishCustomPath) } + app.EnableBashCompletion = true + err := app.Run(os.Args) if err != nil { log.Fatal("Failed to run app with %s: %v", os.Args, err) -- cgit v1.2.3