Skip to content

Commit 2a42750

Browse files
committed
bugfix for non-modal editor
1 parent 305e8b8 commit 2a42750

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Snippet UI Plugin (v1.10)
1+
# Snippet UI Plugin (v1.12)
22
Author: **Vector 35 Inc**
33

44
_Powerful code-editing plugin for writing and managing python code-snippets with syntax highlightingd, hotkey binding and other features_
55

66
## Description:
77

8-
The snippet editor started as a simple example UI plugin to demonstrate new features available to UI plugins. It has turned into a functionally useful plugin in its own right. The snippet editor allows you to write small bits of code that might not be big enough to warrant the effort of a full plugin but are longer enough that you don't want to retype them every time in the python-console!
8+
The snippet editor started as a simple example UI plugin to demonstrate new features available to UI plugins. It has turned into a functionally useful plugin in its own right. The snippet editor allows you to write small bits of code that might not be big enough to warrant the effort of a full plugin but are long enough that you don't want to retype them every time in the python-console!
99

1010
As an added bonus, all snippets are added to the snippets menu and hot-keys can be associated with them as they make use of the action system. All action-system items are also available through the command-palette (CTL/CMD-p).
1111

@@ -40,6 +40,7 @@ This plugin requires the following minimum version of Binary Ninja:
4040

4141
The following dependencies are required for this plugin:
4242

43+
* pip - pygments>=2.7.0,<2.9.0
4344

4445

4546
## License

plugin.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,12 @@
2424
"Linux": "no special instructions, package manager is recommended",
2525
"Windows": "no special instructions, package manager is recommended"
2626
},
27-
"dependencies": { "pip": ["pygments>=2.7.0,<2.9.0"] },
28-
"version": "1.11",
27+
"dependencies": {
28+
"pip": [
29+
"pygments>=2.7.0,<2.9.0"
30+
]
31+
},
32+
"version": "1.12",
2933
"author": "Vector 35 Inc",
3034
"minimumbinaryninjaversion": 1528
31-
}
35+
}

0 commit comments

Comments
 (0)