summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2022-05-30 11:45:13 -0400
committerJordan Wiens <jordan@psifertex.com>2022-05-30 11:45:13 -0400
commit55a03e715ec62f7f85cfd57db6351a6efb626d7a (patch)
treeafb679319860ae5ee813befed77ddd2a5479648b /docs
parent81fe573a56e76dcd6066a632d1831d49d274b469 (diff)
fix link in command palette docs
Diffstat (limited to 'docs')
-rw-r--r--docs/getting-started.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/getting-started.md b/docs/getting-started.md
index 938ba51a..4ef85a95 100644
--- a/docs/getting-started.md
+++ b/docs/getting-started.md
@@ -174,7 +174,7 @@ Switching views happens multiple ways. In some instances, it is automatic (click
![command palette](img/command-palette.png "Command Palette")
-One great feature for quickly navigating through a variety of options and actions is the `command palette`. Inspired by similar features in [Sublime](sublime-text-unofficial-documentation.readthedocs.io/en/sublime-text-2/extensibility/command_palette.html) and [VS Code](https://code.visualstudio.com/docs/getstarted/userinterface#_command-palette), the command-palette is a front end into an application-wide, context-sensitive action system that all actions, plugins, and hotkeys in the system are routed through.
+One great feature for quickly navigating through a variety of options and actions is the `command palette`. Inspired by similar features in [Sublime](https://sublime-text-unofficial-documentation.readthedocs.io/en/sublime-text-2/extensibility/command_palette.html) and [VS Code](https://code.visualstudio.com/docs/getstarted/userinterface#_command-palette), the command-palette is a front end into an application-wide, context-sensitive action system that all actions, plugins, and hotkeys in the system are routed through.
To trigger it, simply use the `[CMD/CTRL] p` hotkey. Note that the command-palette is context-sensitive and therefore some actions (for example, `Display as - Binary`) may only be available depending on your current view or selection. This is also available to plugins. For example, a plugin may use [PluginCommand.register](https://api.binary.ninja/binaryninja.plugin-module.html#binaryninja.plugin.PluginCommand.register) with the optional `is_valid` callback to determine when the action should be available.