From 1ee91301f4b468813965bb748499a22a44b1f478 Mon Sep 17 00:00:00 2001 From: Evan Fiordeliso Date: Mon, 13 Nov 2023 15:24:18 -0500 Subject: [PATCH] Add todo to bash completions --- completions_bash.go | 1 + 1 file changed, 1 insertion(+) diff --git a/completions_bash.go b/completions_bash.go index 71a11c0..1331127 100644 --- a/completions_bash.go +++ b/completions_bash.go @@ -15,6 +15,7 @@ func WriteBashCompletions(out io.Writer, rootCmd *Command) error { } // TODO: Add --option|--other-option...) to return nothing for options that require a value +// TODO: Add descriptions to completions using https://stackoverflow.com/a/10130007 var bashTpl = template.Must(template.New("bash").Funcs(tplFuncs).Parse(` {{- $rootCmd := .RootCmd -}} {{- $progName := $rootCmd.Name -}}