summaryrefslogtreecommitdiff
path: root/docs/getting-started.md
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2022-05-25 02:01:16 -0400
committerJordan Wiens <jordan@psifertex.com>2022-05-25 02:01:16 -0400
commit78c2f90452625a710c6dbdb9d86a007155d26f3f (patch)
tree07d19111ac3722b5b84f2eaa7e364e2a94890917 /docs/getting-started.md
parenta8dc8813d296147f795b1a578d457c93ee56e3b5 (diff)
fix formatting mistake
Diffstat (limited to 'docs/getting-started.md')
-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 c4a239a3..d0f3694d 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]()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.
+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.
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.