silverbullet/website/API/command.md

15 lines
241 B
Markdown
Raw Normal View History

APIs related to editor commands
### command.define(command_def)
Registers a command.
Example:
```lua
command.define {
name = "My custom command",
run = function()
editor.flash_notification "Triggered my custom command"
end
}
```