Skip to content

Commit 35b94f4

Browse files
authored
feat(autocomplete): remove beta check for arg completion (#2838)
1 parent 429239f commit 35b94f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/core/autocomplete.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ func AutoCompleteArgValue(ctx context.Context, cmd *Command, argSpec *ArgSpec, a
407407

408408
// Complete arg value using list verb if possible
409409
// "instance server get <tab>" completes "server-id" arg with "id" in instance server list
410-
if len(possibleValues) == 0 && ExtractBetaMode(ctx) {
410+
if len(possibleValues) == 0 {
411411
possibleValues = AutocompleteGetArg(ctx, cmd, argSpec, completedArgs)
412412
}
413413

0 commit comments

Comments
 (0)