summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2018-09-24 11:41:04 -0400
committerPeter LaFosse <peter@vector35.com>2018-10-05 14:46:17 -0400
commit1a3fe0b19a2f4f0af902f4a738eb0ef97b7a7394 (patch)
tree21671d936d9207bc1b08901dcf24a6ccacf6a716 /docs
parentc87982cd0ed583f4b8f371ef3f28792153864e1d (diff)
documentation updates
Diffstat (limited to 'docs')
-rw-r--r--docs/getting-started.md18
1 files changed, 11 insertions, 7 deletions
diff --git a/docs/getting-started.md b/docs/getting-started.md
index 0fa6098a..bbbb42a3 100644
--- a/docs/getting-started.md
+++ b/docs/getting-started.md
@@ -276,10 +276,10 @@ Settings are stored in the _user_ directory in the file `settings.json`. Each to
| 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 |
-| arch | x86.disassemblyFlavor | string | "BN_INTEL" | "BN_INTEL", "INTEL", or "AT&T" |
-| arch | x86.disassemblySeperator | string | ", " | What to put between operands in disassembly tokens |
-| arch | x86.disassemblyLowercase | bool | True | Lowercase opcodes, operands, and registers (False for uppercase) |
+| python | interpreter | string | "{/path/,C:\\Path\\}python27.{dylib,dll,so.1}" | Python interpreter to load if one is not already present when plugins are loaded |
+| arch | x86.disassemblyFlavor | string | "BN_INTEL" | "BN_INTEL", "INTEL", or "AT&T" |
+| arch | x86.disassemblySeperator | string | ", " | What to put between operands in disassembly tokens |
+| arch | x86.disassemblyLowercase | bool | True | Lowercase opcodes, operands, and registers (False for uppercase) |
Below is an example `settings.json` setting various options:
```
@@ -288,15 +288,19 @@ Below is an example `settings.json` setting various options:
{
"activeContent" : false,
"colorblind" : false,
- "debug" : true
+ "debug" : true,
"recent-file-limit" : 10
}
"pdb" :
{
- "local-store-absolute" : "C:\Symbols",
+ "local-store-absolute" : "C:\\Symbols",
"local-store-relative" : "",
"symbol-server-list" : ["http://mysymbolserver.company.lan"]
- }
+ },
+ "python":
+ {
+ "interpreter": "C:\\Users\\Binja\\AppData\\Local\\Programs\\Python\\Python37\\python37.dll"
+ }
}
```