Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 94add27

Browse files
author
deathaxe
committedJul 26, 2024·
Merge branch 'st3-develop' into st4-develop
2 parents 2c7a05f + f1e0581 commit 94add27

6 files changed

+31
-1
lines changed
 

‎schemes/MarkdownEditor-ArcDark.sublime-color-scheme

+6
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,12 @@
394394
"scope": "markup.prompt",
395395
"foreground": "#aaaaaa"
396396
},
397+
{
398+
"name": "Markup: Highlight",
399+
"scope": "markup.highlight",
400+
"foreground": "var(critic_highlight_fg)",
401+
"background": "var(critic_highlight_bg)"
402+
},
397403

398404
//
399405
// CriticMarkup

‎schemes/MarkdownEditor-Dark.sublime-color-scheme

+6
Original file line numberDiff line numberDiff line change
@@ -406,6 +406,12 @@
406406
"scope": "markup.prompt",
407407
"foreground": "#aaaaaa"
408408
},
409+
{
410+
"name": "Markup: Highlight",
411+
"scope": "markup.highlight",
412+
"foreground": "var(critic_highlight_fg)",
413+
"background": "var(critic_highlight_bg)"
414+
},
409415

410416
//
411417
// CriticMarkup

‎schemes/MarkdownEditor-Focus.sublime-color-scheme

+6
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,12 @@
425425
"scope": "markup.prompt",
426426
"foreground": "#555555"
427427
},
428+
{
429+
"name": "Markup: Highlight",
430+
"scope": "markup.highlight",
431+
"foreground": "var(critic_highlight_fg)",
432+
"background": "var(critic_highlight_bg)"
433+
},
428434

429435
//
430436
// CriticMarkup

‎schemes/MarkdownEditor-Yellow.sublime-color-scheme

+6
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,12 @@
404404
"scope": "markup.prompt",
405405
"foreground": "#705442"
406406
},
407+
{
408+
"name": "Markup: Highlight",
409+
"scope": "markup.highlight",
410+
"foreground": "var(critic_highlight_fg)",
411+
"background": "var(critic_highlight_bg)"
412+
},
407413

408414
//
409415
// CriticMarkup

‎schemes/MarkdownEditor.sublime-color-scheme

+6
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,12 @@
403403
"scope": "markup.prompt",
404404
"foreground": "#555555"
405405
},
406+
{
407+
"name": "Markup: Highlight",
408+
"scope": "markup.highlight",
409+
"foreground": "var(critic_highlight_fg)",
410+
"background": "var(critic_highlight_bg)"
411+
},
406412

407413
//
408414
// CriticMarkup

‎syntaxes/Markdown.sublime-syntax

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

0 commit comments

Comments
 (0)
Please sign in to comment.