-
Notifications
You must be signed in to change notification settings - Fork 644
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 st3176
- Loading branch information
Showing
15 changed files
with
189 additions
and
18 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,18 @@ | ||
# 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 | ||
|
||
* MardownEditings color schemes now underline link urls (fixes #685) | ||
|
||
[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
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,27 @@ | ||
%YAML 1.2 | ||
--- | ||
name: Interactive Unix Shell | ||
scope: source.shell.interactive.markdown | ||
hidden: true | ||
|
||
contexts: | ||
main: | ||
- match: ^(?=\s*\$\s) | ||
push: shell-interactive | ||
- include: shell-statements | ||
|
||
shell-interactive: | ||
- match: ^\s*(\$)(?=\s) | ||
captures: | ||
1: comment.other.shell | ||
push: shell-statements | ||
with_prototype: | ||
# continuation lines begin with `> ` | ||
- match: ^\s*(>)\s | ||
captures: | ||
1: 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