Skip to content

Commit d16b9aa

Browse files
author
deathaxe
authored
Merge pull request #769 from SublimeText-Markdown/st3-develop
ST3 next
2 parents 0f57eb2 + f1e0581 commit d16b9aa

6 files changed

+31
-1
lines changed

schemes/MarkdownEditor-ArcDark.sublime-color-scheme

+6
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,12 @@
380380
"scope": "markup.prompt",
381381
"foreground": "#aaaaaa"
382382
},
383+
{
384+
"name": "Markup: Highlight",
385+
"scope": "markup.highlight",
386+
"foreground": "var(critic_highlight_fg)",
387+
"background": "var(critic_highlight_bg)"
388+
},
383389

384390
//
385391
// CriticMarkup

schemes/MarkdownEditor-Dark.sublime-color-scheme

+6
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,12 @@
392392
"scope": "markup.prompt",
393393
"foreground": "#aaaaaa"
394394
},
395+
{
396+
"name": "Markup: Highlight",
397+
"scope": "markup.highlight",
398+
"foreground": "var(critic_highlight_fg)",
399+
"background": "var(critic_highlight_bg)"
400+
},
395401

396402
//
397403
// CriticMarkup

schemes/MarkdownEditor-Focus.sublime-color-scheme

+6
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,12 @@
411411
"scope": "markup.prompt",
412412
"foreground": "#555555"
413413
},
414+
{
415+
"name": "Markup: Highlight",
416+
"scope": "markup.highlight",
417+
"foreground": "var(critic_highlight_fg)",
418+
"background": "var(critic_highlight_bg)"
419+
},
414420

415421
//
416422
// CriticMarkup

schemes/MarkdownEditor-Yellow.sublime-color-scheme

+6
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,12 @@
390390
"scope": "markup.prompt",
391391
"foreground": "#705442"
392392
},
393+
{
394+
"name": "Markup: Highlight",
395+
"scope": "markup.highlight",
396+
"foreground": "var(critic_highlight_fg)",
397+
"background": "var(critic_highlight_bg)"
398+
},
393399

394400
//
395401
// CriticMarkup

schemes/MarkdownEditor.sublime-color-scheme

+6
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,12 @@
389389
"scope": "markup.prompt",
390390
"foreground": "#555555"
391391
},
392+
{
393+
"name": "Markup: Highlight",
394+
"scope": "markup.highlight",
395+
"foreground": "var(critic_highlight_fg)",
396+
"background": "var(critic_highlight_bg)"
397+
},
392398

393399
//
394400
// CriticMarkup

syntaxes/Markdown.sublime-syntax

+1-1
Original file line numberDiff line numberDiff line change
@@ -3780,7 +3780,7 @@ contexts:
37803780
- meta_scope: meta.link.inet.markdown markup.underline.link.markdown-gfm
37813781
# 1. When an autolink ends in ), we scan the entire autolink for the total
37823782
# number of parentheses. If there is a greater number of closing parentheses
3783-
# than opening ones, we dont consider the last character part of the
3783+
# than opening ones, we don't consider the last character part of the
37843784
# autolink, in order to facilitate including an autolink inside a parenthesis
37853785
# 2. If an autolink ends in a semicolon (;), we check to see if it appears to
37863786
# resemble an entity reference; if the preceding text is & followed by one

0 commit comments

Comments
 (0)