add local path dep for kong-completion

update the completion tags
This commit is contained in:
2026-03-25 21:08:36 +00:00
parent e5e0ac3dcf
commit acf7bc79b2
18 changed files with 103 additions and 103 deletions

View File

@@ -10,10 +10,10 @@ import (
// SceneCollectionCmd provides commands to manage scene collections in OBS Studio.
type SceneCollectionCmd struct {
List SceneCollectionListCmd `help:"List scene collections." cmd:"" aliases:"ls"`
Current SceneCollectionCurrentCmd `help:"Get current scene collection." cmd:"" aliases:"c"`
Switch SceneCollectionSwitchCmd `help:"Switch scene collection." cmd:"" aliases:"sw"`
Create SceneCollectionCreateCmd `help:"Create scene collection." cmd:"" aliases:"new"`
List SceneCollectionListCmd `cmd:"" help:"List scene collections." aliases:"ls" completion-command-alias-enabled:"false"`
Current SceneCollectionCurrentCmd `cmd:"" help:"Get current scene collection." aliases:"c" completion-command-alias-enabled:"false"`
Switch SceneCollectionSwitchCmd `cmd:"" help:"Switch scene collection." aliases:"sw" completion-command-alias-enabled:"false"`
Create SceneCollectionCreateCmd `cmd:"" help:"Create scene collection." aliases:"new" completion-command-alias-enabled:"false"`
}
// SceneCollectionListCmd provides a command to list all scene collections.