Skip to content

Commit

Permalink
fix broken image
Browse files Browse the repository at this point in the history
  • Loading branch information
psifertex committed Mar 2, 2020
1 parent dd8b660 commit 04c8cb9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
14 changes: 5 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
# Snippet UI Plugin (v1.1)
# Snippet UI Plugin (v1.1a)
Author: **Vector 35 Inc**
_Example UI plugin demonstrating how to create a snippet manager that allows for quick one-liners to be bound to hotkeys._
## Description:
# Snippet UI Plugin (v1.0 alpha)
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!

Author: **Vector 35 Inc**

_Example UI plugin demonstrating how to create a snippet manager that allows for quick one-liners to be bound to hotkeys._
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).

![](./media/snippets.gif)

## Description:
![](https://github.com/Vector35/snippets/blob/master/media/snippets.gif?raw=true)

This plugin is dual purpose -- first, it demonstrates the new UI plugin interface available for third-party plugins, and secondly it implements the often-requested functionality of adding a snippet editor. This is particularly useful for binding commonly used snippets of python code from the ScriptingConsole to a hotkey to be able to trigger them more easily.
.


## Installation Instructions
Expand Down
4 changes: 2 additions & 2 deletions plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": ["ui"],
"api": ["python2", "python3"],
"description": "Example UI plugin demonstrating how to create a snippet manager that allows for quick one-liners to be bound to hotkeys.",
"longdescription": "# Snippet UI Plugin (v1.0 alpha)\n\nAuthor: **Vector 35 Inc**\n\n_Example UI plugin demonstrating how to create a snippet manager that allows for quick one-liners to be bound to hotkeys._\n\n![](./media/snippets.gif)\n\n## Description:\n\nThis plugin is dual purpose -- first, it demonstrates the new UI plugin interface available for third-party plugins, and secondly it implements the often-requested functionality of adding a snippet editor. This is particularly useful for binding commonly used snippets of python code from the ScriptingConsole to a hotkey to be able to trigger them more easily.",
"longdescription": "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!\n\nAs 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).\n\n![](https://github.com/Vector35/snippets/blob/master/media/snippets.gif?raw=true)\n\n.",
"license": {
"name": "MIT",
"text": "Copyright (c) 2019 Vector 35 Inc\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE."
Expand All @@ -17,7 +17,7 @@
},
"dependencies": {
},
"version": "1.1",
"version": "1.1a",
"author": "Vector 35 Inc",
"minimumbinaryninjaversion": 1401
}

0 comments on commit 04c8cb9

Please sign in to comment.