description: APIs to define custom action buttons
APIs to more conveniently define action buttons (alternative to setting them via regular ^Library/Std/Config).
Keys to define:
icon: feather icon to use for your buttonrun: function to invoke once the button is pusheddescription (optional): description of button (appears on hover)priority (optional): determines priority of button (the higher, the earlier in the list)mobile: when set to true this button will only appear on mobile devices-- Defines a new button that forces your UI into read-only mode
actionButton.define {
icon = "eye",
-- Uncomment the following line to only make this button appear
-- ONLY on mobile devices:
-- mobile = true,
run = function()
editor.setUiOption("forcedROMode", true)
editor.rebuildEditorState()
end
}
-- priority: 100
actionButton = actionButton or {}
function actionButton.define(spec)
local actionButtonConfig = config.get("actionButtons", {})
table.insert(actionButtonConfig, spec)
end