chore: Remove unused markdown rules

This commit is contained in:
equinusocio 2017-11-14 14:41:17 +01:00
parent 7136700933
commit 3e9c374e8a
No known key found for this signature in database
GPG key ID: 7BE552533AB6D4E2
2 changed files with 4 additions and 21 deletions

View file

@ -636,32 +636,14 @@
"foreground": "{{variant.scheme.base.purple}}"
}
},
{
"name": "Markdown - Raw Block Fenced",
"scope": [
"markup.raw.block.fenced.markdown"
],
"settings": {
"foreground": "#00000050"
}
},
{
"name": "Markdown - Fenced Bode Block",
"scope": [
"punctuation.definition.fenced.markdown"
],
"settings": {
"foreground": "#00000050"
}
},
{
"name": "Markdown - Fenced Bode Block Variable",
"scope": [
"markup.raw.block.fenced.markdown",
"variable.language.fenced.markdown"
"markup.fenced_code.block.markdown",
"markup.inline.raw.string.markdown"
],
"settings": {
"foreground": "{{variant.scheme.foreground}}"
"foreground": "{{variant.scheme.foreground}}80"
}
},
{

View file

@ -45,6 +45,7 @@ markup.list.numbered — numbered list items.
markup.list.unnumbered — unnumbered list items.
markup.quote — quoted (sometimes block quoted) text.
markup.raw — text which is verbatim, e.g. code listings. Normally spell checking is disabled for markup.raw.
markup.inline.raw
markup.other — other markup constructs.
meta - the meta scope is generally used to markup larger parts of the document. For example the entire line which declares a function would be meta.function and the subsets would be storage.type, entity.name.function, variable.parameter etc. and only the latter would be styled. Sometimes the meta part of the scope will be used only to limit the more general element that is styled, most of the time meta scopes are however used in scope selectors for activation of bundle items. For example in Objective-C there is a meta scope for the interface declaration of a class and the implementation, allowing the same tab-triggers to expand differently, depending on context.