Action
Last updated
Last updated
Actions tell the Command Bar to perform a side effect (e.g. open a URL or copy something to the clipboard). They can be used in two places:
at the root of as CommandResponse.action
in the Option of the or as CommandResponse.view.options[].action
Opens a given URL using the system's default handler.
type: "open-url"
url: The URL to open. You can use any valid URI schema. For example, "https://", "file://", "ssh://", "slack://" (native app). Provide a string to open a single URL or an array of strings to open multiple URLs at once.
Pastes some text to the active app.
type: "paste"
value: The string that will be pasted to the active app.
Copies some text to the clipboard.
type: "copy"
value: The string that will be copied to the clipboard.
Shows a message in a toast (an ephemeral message displayed on the screen).
type: "show-toast"
message: The message that will be displayed in a toast.
type: "add-param"
name: The name of the parameter.
value: The value of the parameter.
Allows to change the . Currently, there is only one Move Action supported – add a param. Location parameters are then passed to the Command when it's run.
Typically, the "add-param" Action is used in the moveAction
property of some that can be triggered by pressing Tab
.