summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRyan Snyder <ryan@vector35.com>2018-08-15 09:43:26 -0400
committerRyan Snyder <ryan@vector35.com>2018-08-15 09:52:13 -0400
commite8e844ef24483102103e6d20e8debbc78a687d17 (patch)
tree283e10761ab4f79b093a062e35975fdd184c9edd /docs
parentbd9e38ccfafd0d5bafec4b9844dc60b20eb3287c (diff)
Expose ScriptingProvider name in C++ bindings
Diffstat (limited to 'docs')
-rw-r--r--docs/getting-started.md19
1 files changed, 10 insertions, 9 deletions
diff --git a/docs/getting-started.md b/docs/getting-started.md
index 7e7e4acb..0e0bd596 100644
--- a/docs/getting-started.md
+++ b/docs/getting-started.md
@@ -265,9 +265,10 @@ Settings are stored in the _user_ directory in the file `settings.json`. Each to
| ui | activeContent | boolean | True | Allow Binary Ninja to connect to the web to check for updates |
| ui | colorblind | boolean | True | Choose colors that are visible to those with red/green colorblind |
| ui | debug | boolean | False | Enable developer debugging features (Additional views: Lifted IL, and SSA forms) |
-| ui | recent-file-limit | integer | 10 | Specify limit for number of recent files |
+| ui | recent-file-limit | integer | 10 | Specify limit for number of recent files |
+| ui | scriptingprovider | string | "Python" | Specify the registered ScriptingProvider that controls the 'Console' in the UI |
| pdb | local-store-absolute | string | "" | Absolute path specifying where the pdb symbol store exists on this machine, overrides relative path |
-| pdb | local-store-relative | string | "symbols" | Path *relative* to the binaryninja _user_ directory, sepcifying the pdb symbol store |
+| pdb | local-store-relative | string | "symbols" | Path *relative* to the binaryninja _user_ directory, sepcifying the pdb symbol store |
| pdb | auto-download-pdb | boolean | True | Automatically download pdb files from specified symbol servers |
| pdb | symbol-server-list | list(string) | ["http://msdl.microsoft.com/download/symbols"] | List of servers to query for pdb symbols. |
| python | interpreter | string | "python27.{dylib,dll,so.1}" | Python interpreter to load if one is not already present when plugins are loaded |
@@ -275,13 +276,13 @@ Settings are stored in the _user_ directory in the file `settings.json`. Each to
Below is an example `settings.json` setting various options:
```
{
- "ui" :
- {
- "activeContent" : false,
- "colorblind" : false,
- "debug" : true
- "recent-file-limit" : 10
- }
+ "ui" :
+ {
+ "activeContent" : false,
+ "colorblind" : false,
+ "debug" : true
+ "recent-file-limit" : 10
+ }
"pdb" :
{
"local-store-absolute" : "C:\Symbols",