-
Notifications
You must be signed in to change notification settings - Fork 643
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
887 additions
and
195 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
3 changes: 1 addition & 2 deletions
3
macros/Convert to Blockquote.sublime-macro → ...and Balance Trailing Hashes.sublime-macro
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,6 +1,5 @@ | ||
[ | ||
{"command": "expand_selection", "args": {"to": "line"}}, | ||
{"command": "move", "args": {"by": "characters", "extend": true, "forward": false}}, | ||
{"command": "insert_snippet", "args": {"contents": "${TM_SELECTED_TEXT/^/> /gm}"}}, | ||
{"command": "move_to", "args": {"extend": false, "to": "eol"}} | ||
{"command": "insert_snippet", "args": {"contents": "${TM_SELECTED_TEXT/^(\\s*(?:>\\s*)*)(#+)(.*?)\\s*#*\\s*$/$1$2$3 $2\n$1/}"}} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"command": "expand_selection", "args": {"to": "line"}}, | ||
{"command": "move", "args": {"by": "characters", "extend": true, "forward": false}}, | ||
{"command": "insert_snippet", "args": {"contents": "${TM_SELECTED_TEXT/^(\\s*(?:>\\s*)*)(#+)(.*?)\\s*#*\\s*$/$1$2$3\n$1/}"}} | ||
] |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"command": "expand_selection", "args": {"to": "line"}}, | ||
{"command": "move", "args": {"by": "characters", "extend": true, "forward": false}}, | ||
{"command": "insert_snippet", "args": {"contents": "${TM_SELECTED_TEXT/^([\\s>]*)>.*/$1/}"}} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"command": "expand_selection", "args": {"to": "line"}}, | ||
{"command": "move", "args": {"by": "characters", "extend": true, "forward": false}}, | ||
{"command": "insert_snippet", "args": {"contents": "${TM_SELECTED_TEXT/^([\\s>]*).*/$1/}"}} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[ | ||
{"command": "left_delete" }, | ||
{"command": "left_delete" } | ||
] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
{"command": "expand_selection", "args": {"to": "line"}}, | ||
{"command": "move", "args": {"by": "characters", "extend": true, "forward": false}}, | ||
{"command": "insert_snippet", "args": {"contents": "${TM_SELECTED_TEXT/^(\\s*).*/\n$1/}"}} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# MarkdownEditing 3.0.5 Changelog | ||
|
||
Your _MarkdownEditing_ plugin is updated. Enjoy new version. For any type of | ||
feedback you can use [GitHub issues][issues]. | ||
|
||
## Bug Fixes | ||
|
||
* Restore incremental heading level keybinding on MacOS | ||
* Fenced codeblocks learned `go` and `dockerfile` language identifiers (fixes #650) | ||
* Hitting backspace removes only one block quote sign (fixes #651) | ||
* Add misssing <kbd>keypad_enter</kbd> bindings | ||
* Auto-complete setext heading underlines only if caret is at eol | ||
* Fix regression with <kbd>tab</kbd> after single `-` or `*` not inserting `\t` | ||
* <kbd>shift+enter</kbd> correctly indents 2nd line of GFM task | ||
* Maintain indentation of block quote content when adding new line | ||
|
||
## New Features | ||
|
||
* Add fenced code blocks protobuf highlighting (fixes #650) | ||
* Bind <kbd>f12</kbd> and <kbd>shift+f12</kbd> to jump between references and definitions | ||
* Block quotes can be terminated via <kbd>ctrl+enter</kbd> | ||
|
||
## Changes | ||
|
||
* The `>` key is bound to `mde_indent_quote` to replace `Convert to Blockquote` macro | ||
* The <kbd>ctrl+alt+g</kbd> is no longer bound by default in favor of <kbd>f12</kbd> | ||
* The `Balance Trailing Hashes` macro is renamed to `Add Newline and Balance Trailing Hashes` | ||
* The `Remove Trailing Hashes` macro is renamed to `Add Newline and Delete Trailing Hashes` | ||
* The `Remove Empty List Item` macro is renamed to `Delete Empty List Item` | ||
|
||
[issues]: https://github.com/SublimeText-Markdown/MarkdownEditing/issues |
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