diff options
| author | Peter LaFosse <peter@vector35.com> | 2017-11-06 17:29:57 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2017-11-06 17:29:57 -0500 |
| commit | 16a4d413d58d2cb29be97781bba0b52546afa390 (patch) | |
| tree | e9f27f78d024606faa18acc763813c2d1f9321db /docs/guide/plugins.md | |
| parent | b54bf0745bd9ef9809dfce1a8937622f8ed92df5 (diff) | |
| parent | af062c5608b6a4abb60c3d6ebc193d3ac929165b (diff) | |
Merge branch 'dev'
Diffstat (limited to 'docs/guide/plugins.md')
| -rw-r--r-- | docs/guide/plugins.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/guide/plugins.md b/docs/guide/plugins.md index 9c67d44f..442d6fe4 100644 --- a/docs/guide/plugins.md +++ b/docs/guide/plugins.md @@ -36,9 +36,9 @@ Binary Ninja now offers a [PluginManager API] which can simplify the process of ['__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'add_repository', 'check_for_updates', 'default_repository', 'disable_plugin', 'enable_plugin', 'handle', 'install_plugin', 'plugins', 'repositories', 'uninstall_plugin', 'update_plugin'] >>> mgr.plugins {'default': [<binaryninja-bookmarks not-installed/disabled>, <binaryninja-msp430 not-installed/disabled>, <binaryninja-radare2 not-installed/disabled>, <binaryninja-spu not-installed/disabled>, <binja-avr not-installed/disabled>, <binja_smali not-installed/disabled>, <binjatron not-installed/disabled>, <binoculars not-installed/disabled>, <easypatch not-installed/disabled>, <liil installed/enabled>, <list_comments not-installed/disabled>, <x64dbgbinja not-installed/disabled>]} ->>> mgr.install_plugin(easypatch) +>>> mgr.install_plugin("easypatch") True ->>> mgr.enable(easypatch) +>>> mgr.enable_plugin("easypatch") True ``` |
