Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ST3 next #769

Merged
merged 2 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions schemes/MarkdownEditor-ArcDark.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,12 @@
"scope": "markup.prompt",
"foreground": "#aaaaaa"
},
{
"name": "Markup: Highlight",
"scope": "markup.highlight",
"foreground": "var(critic_highlight_fg)",
"background": "var(critic_highlight_bg)"
},

//
// CriticMarkup
Expand Down
6 changes: 6 additions & 0 deletions schemes/MarkdownEditor-Dark.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,12 @@
"scope": "markup.prompt",
"foreground": "#aaaaaa"
},
{
"name": "Markup: Highlight",
"scope": "markup.highlight",
"foreground": "var(critic_highlight_fg)",
"background": "var(critic_highlight_bg)"
},

//
// CriticMarkup
Expand Down
6 changes: 6 additions & 0 deletions schemes/MarkdownEditor-Focus.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,12 @@
"scope": "markup.prompt",
"foreground": "#555555"
},
{
"name": "Markup: Highlight",
"scope": "markup.highlight",
"foreground": "var(critic_highlight_fg)",
"background": "var(critic_highlight_bg)"
},

//
// CriticMarkup
Expand Down
6 changes: 6 additions & 0 deletions schemes/MarkdownEditor-Yellow.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,12 @@
"scope": "markup.prompt",
"foreground": "#705442"
},
{
"name": "Markup: Highlight",
"scope": "markup.highlight",
"foreground": "var(critic_highlight_fg)",
"background": "var(critic_highlight_bg)"
},

//
// CriticMarkup
Expand Down
6 changes: 6 additions & 0 deletions schemes/MarkdownEditor.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,12 @@
"scope": "markup.prompt",
"foreground": "#555555"
},
{
"name": "Markup: Highlight",
"scope": "markup.highlight",
"foreground": "var(critic_highlight_fg)",
"background": "var(critic_highlight_bg)"
},

//
// CriticMarkup
Expand Down
2 changes: 1 addition & 1 deletion syntaxes/Markdown.sublime-syntax
Original file line number Diff line number Diff line change
Expand Up @@ -3780,7 +3780,7 @@ contexts:
- meta_scope: meta.link.inet.markdown markup.underline.link.markdown-gfm
# 1. When an autolink ends in ), we scan the entire autolink for the total
# number of parentheses. If there is a greater number of closing parentheses
# than opening ones, we dont consider the last character part of the
# than opening ones, we don't consider the last character part of the
# autolink, in order to facilitate including an autolink inside a parenthesis
# 2. If an autolink ends in a semicolon (;), we check to see if it appears to
# resemble an entity reference; if the preceding text is & followed by one
Expand Down
Loading