summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2019-09-30 11:01:47 -0400
committerJordan Wiens <jordan@psifertex.com>2019-09-30 11:01:47 -0400
commit51510e08a9aeb2b8b23124131679ff89b2cb7f73 (patch)
treeb688b19dc43f6d32d9bd90a711be6641f1eebf88 /docs
parenta25b57635f41c2cbdde4b376e4f542274aa49f94 (diff)
add section on searching in the plugin manager
Diffstat (limited to 'docs')
-rw-r--r--docs/guide/plugins.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/guide/plugins.md b/docs/guide/plugins.md
index 5347d79d..f8388ca0 100644
--- a/docs/guide/plugins.md
+++ b/docs/guide/plugins.md
@@ -35,6 +35,22 @@ Plugins can now be installed directly via the GUI from Binary Ninja. You can lau
Note that some plugins may show `Force Install` instead of the normal `Install` button. If that's the case, it means the plugin does not specifically advertise support for your platform or version of python. Often times the plugin will still work, but you must override a warning to confirm installation and be aware that the plugin may not be compatible.
+#### Plugin Manager Searching
+
+The plugin manager also supports a number of helpful search keywords to filter through the list of plugins as it continues to grow:
+
+ - `@installed` to only show installed plugins
+ - `@enabled` to only show enabled plugins
+ - `@disabled` to show plugins that are installed but not enabled)
+
+The following plugin categories are also searchable:
+
+ - `@core`
+ - `@ui`
+ - `@architecture`
+ - `@binaryview`
+ - `@helper`
+
### Manual installation
You can manually install a plugin either by adding a folder which contains it (the plugin folder must contain an `__init__.py` at the top of the folder, or a python file can be included directly in the plugin folder though this is not recommended).