-
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.
Merge branch 'st3-develop' into st4-develop
- Loading branch information
Showing
10 changed files
with
97 additions
and
12 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# MarkdownEditing 3.1.2 Changelog | ||
|
||
Your _MarkdownEditing_ plugin is updated. Enjoy new version. For any type of | ||
feedback you can use [GitHub issues][issues]. | ||
|
||
## Bug Fixes | ||
|
||
* fix strikethrough visibility with `line_highlight` | ||
* don't add symbols of fenced code blocks to symbol list | ||
* fix interactive shell highlighting in fenced code blocks | ||
|
||
## New Features | ||
|
||
## Changes | ||
|
||
[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
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
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,25 @@ | ||
%YAML 1.2 | ||
--- | ||
name: Interactive Unix Shell | ||
scope: source.shell.interactive.markdown | ||
hidden: true | ||
|
||
contexts: | ||
main: | ||
- match: ^(?=\$\s) | ||
push: shell-interactive | ||
- include: shell-statements | ||
|
||
shell-interactive: | ||
- match: ^\$(?=\s) | ||
scope: comment.other.shell | ||
push: shell-statements | ||
with_prototype: | ||
# continuation lines begin with `> ` | ||
- match: ^>(?=\s) | ||
scope: comment.other.shell | ||
- match: ^ | ||
pop: true | ||
|
||
shell-statements: | ||
- include: scope:source.shell |
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
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