-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jack Cherng <[email protected]>
- Loading branch information
Showing
3 changed files
with
32 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"6.4.0": "messages/update_message.md", | ||
"7.0.0": "messages/update_message.md", | ||
"install": "README.md" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,20 @@ | ||
OpenUri has been updated. To see the changelog, visit | ||
Preferences » Package Settings » OpenUri » CHANGELOG | ||
|
||
## [6.4.0] - 2021-06-14 | ||
## [7.0.0] - 2021-07-23 | ||
|
||
Added | ||
- refactor: drop ST 3 support | ||
- refactor: default mouse binding has been removed | ||
|
||
- Use strings in setting `draw_uri_regions.flags` | ||
|
||
Previously, it's simply an integer, which is less self-explanatory. | ||
Now, you can use a list of strings (flag names): | ||
If you need the mouse binding, add | ||
|
||
```js | ||
"draw_uri_regions": { | ||
// the draw flags used, see https://www.sublimetext.com/docs/api_reference.html | ||
"flags": [ | ||
"HIDE_ON_MINIMAP", | ||
"DRAW_SOLID_UNDERLINE", | ||
"DRAW_NO_FILL", | ||
"DRAW_NO_OUTLINE", | ||
], | ||
}, | ||
[ | ||
// open URL via: alt + right click | ||
{ | ||
button: 'button2', | ||
modifiers: ['alt'], | ||
command: 'open_context_url', | ||
}, | ||
] | ||
``` | ||
|
||
Changed | ||
|
||
- make `plugin_loaded()` async to speed up ST startup | ||
- make plugin folder structure simpler | ||
|
||
Documentation | ||
|
||
- Update settings comments for recent ST 4 release |