X Tutup
Skip to content

Commit 549caf2

Browse files
committed
Enable completion descriptions for powershell
Signed-off-by: Marc Khouzam <marc.khouzam@gmail.com>
1 parent fbdebe8 commit 549caf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/completion/completion.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func NewCmdCompletion(io *iostreams.IOStreams) *cobra.Command {
7171
case "zsh":
7272
return rootCmd.GenZshCompletion(w)
7373
case "powershell":
74-
return rootCmd.GenPowerShellCompletion(w)
74+
return rootCmd.GenPowerShellCompletionWithDesc(w)
7575
case "fish":
7676
return rootCmd.GenFishCompletion(w, true)
7777
default:

0 commit comments

Comments
 (0)
X Tutup