Skip to content

Commit

Permalink
Merge branch 'st4-develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
deathaxe committed Jul 25, 2024
2 parents 59c3063 + e1f5d4e commit 88f589f
Show file tree
Hide file tree
Showing 8 changed files with 1,085 additions and 34 deletions.
21 changes: 21 additions & 0 deletions Default (Linux).sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,27 @@
]
},

//
// Auto-Pairing Highlight
//

{ "keys": ["="], "command": "insert_snippet", "args": {"contents": "==${0:$SELECTION}=="}, "context":
[
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown - meta.frontmatter - meta.disable-markdown - markup.raw - markup.kbd", "match_all": true },
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true }
]
},
{ "keys": ["backspace"], "command": "run_macro_file", "args": {"file": "Packages/MarkdownEditing/macros/Delete Left Right 2.sublime-macro"}, "context":
[
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown - meta.frontmatter - meta.disable-markdown - markup.raw - markup.kbd", "match_all": true },
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_contains", "operand": "==$", "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^==", "match_all": true }
]
},

//
// Auto-Pairing Strike Through
//
Expand Down
21 changes: 21 additions & 0 deletions Default (OSX).sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,27 @@
]
},

//
// Auto-Pairing Highlight
//

{ "keys": ["="], "command": "insert_snippet", "args": {"contents": "==${0:$SELECTION}=="}, "context":
[
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown - meta.frontmatter - meta.disable-markdown - markup.raw - markup.kbd", "match_all": true },
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true }
]
},
{ "keys": ["backspace"], "command": "run_macro_file", "args": {"file": "Packages/MarkdownEditing/macros/Delete Left Right 2.sublime-macro"}, "context":
[
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown - meta.frontmatter - meta.disable-markdown - markup.raw - markup.kbd", "match_all": true },
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_contains", "operand": "==$", "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^==", "match_all": true }
]
},

//
// Auto-Pairing Strike Through
//
Expand Down
21 changes: 21 additions & 0 deletions Default (Windows).sublime-keymap
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,27 @@
]
},

//
// Auto-Pairing Highlight
//

{ "keys": ["="], "command": "insert_snippet", "args": {"contents": "==${0:$SELECTION}=="}, "context":
[
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown - meta.frontmatter - meta.disable-markdown - markup.raw - markup.kbd", "match_all": true },
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true }
]
},
{ "keys": ["backspace"], "command": "run_macro_file", "args": {"file": "Packages/MarkdownEditing/macros/Delete Left Right 2.sublime-macro"}, "context":
[
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown - meta.frontmatter - meta.disable-markdown - markup.raw - markup.kbd", "match_all": true },
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_contains", "operand": "==$", "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^==", "match_all": true }
]
},

//
// Auto-Pairing Strike Through
//
Expand Down
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,6 @@
"3.1.10": "messages/3.1.10.md",
"3.1.11": "messages/3.1.11.md",
"3.1.12": "messages/3.1.12.md",
"3.1.13": "messages/3.1.13.md"
"3.1.13": "messages/3.1.13.md",
"3.1.14": "messages/3.1.14.md"
}
19 changes: 19 additions & 0 deletions messages/3.1.14.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# MarkdownEditing 3.1.14 Changelog

Your _MarkdownEditing_ plugin is updated. Enjoy new version. For any type of
feedback you can use [GitHub issues][issues].

## Bug Fixes

* improve code span patterns in table cells
* Fix Terraform syntax highlighting in fenced code blocks (#765)
* add missing language tag names to detect fenced code block syntaxes

## New Features

* syntax highlighting for `==highlight==` emphasis (#764)
* syntax highlighting for Groovy in fenced code blocks (#768)

## Changes

[issues]: https://github.com/SublimeText-Markdown/MarkdownEditing/issues
Loading

0 comments on commit 88f589f

Please sign in to comment.