publish triggerDescription:
The publish function trigger is used to make this command invocable using the invoke executor from other commands in this command set (if local) or any command set (if global).
Parent: triggers
Value (simple form): string specifying the name of the function
Value (key/value form):
name: string, required, specifying the name of the functionscope: string, optional, specifying the scope of the published function (default: local)
local - this command will can be invoked by commands in this command set onlyglobal - this command can be invoked by commands in any command set# simple form
publish: (string)
# simple example
publish: openAiCompleteSelectedTextPutOnClipboard
# key/value form
publish:
name: (string, required)
scope: (string, optional)
# key/value example
publish:
name: openAiCompleteSelectedTextPutOnClipboard
scope: global