update completion tags

bump kong-completion version
This commit is contained in:
2026-04-11 01:21:22 +01:00
parent 888d84472e
commit 024cc263d4
18 changed files with 103 additions and 103 deletions

View File

@@ -11,11 +11,11 @@ import (
// ProfileCmd provides commands to manage profiles in OBS Studio.
type ProfileCmd struct {
List ProfileListCmd `cmd:"" help:"List profiles." aliases:"ls" completion-command-alias-enabled:"false"`
Current ProfileCurrentCmd `cmd:"" help:"Get current profile." aliases:"c" completion-command-alias-enabled:"false"`
Switch ProfileSwitchCmd `cmd:"" help:"Switch profile." aliases:"sw" completion-command-alias-enabled:"false"`
Create ProfileCreateCmd `cmd:"" help:"Create profile." aliases:"new" completion-command-alias-enabled:"false"`
Remove ProfileRemoveCmd `cmd:"" help:"Remove profile." aliases:"rm" completion-command-alias-enabled:"false"`
List ProfileListCmd `cmd:"" help:"List profiles." aliases:"ls" completion-enabled-command-alias:"false"`
Current ProfileCurrentCmd `cmd:"" help:"Get current profile." aliases:"c" completion-enabled-command-alias:"false"`
Switch ProfileSwitchCmd `cmd:"" help:"Switch profile." aliases:"sw" completion-enabled-command-alias:"false"`
Create ProfileCreateCmd `cmd:"" help:"Create profile." aliases:"new" completion-enabled-command-alias:"false"`
Remove ProfileRemoveCmd `cmd:"" help:"Remove profile." aliases:"rm" completion-enabled-command-alias:"false"`
}
// ProfileListCmd provides a command to list all profiles.