vscode/extensions/markdown-basics/language-configuration.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

96 lines
1.1 KiB
JSON
Raw Normal View History

2016-05-21 07:39:12 +00:00
{
2016-05-23 17:38:31 +00:00
"comments": {
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
"blockComment": [
"<!--",
"-->"
2016-05-23 17:38:31 +00:00
]
},
// symbols used as brackets
"brackets": [
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
]
],
"colorizedBracketPairs": [],
2016-06-20 09:42:55 +00:00
"autoClosingPairs": [
{
"open": "{",
"close": "}"
},
{
"open": "[",
"close": "]"
},
{
"open": "(",
"close": ")"
},
{
"open": "<",
"close": ">",
"notIn": [
"string"
]
},
],
"surroundingPairs": [
[
"(",
")"
],
[
"[",
"]"
],
[
"`",
"`"
],
[
"_",
"_"
],
[
"*",
"*"
],
[
"{",
"}"
],
[
"'",
"'"
],
[
"\"",
"\""
],
[
"<",
">"
]
],
"folding": {
"offSide": true,
"markers": {
"start": "^\\s*<!--\\s*#?region\\b.*-->",
"end": "^\\s*<!--\\s*#?endregion\\b.*-->"
}
},
"wordPattern": {
"pattern": "(\\p{Alphabetic}|\\p{Number}|\\p{Nonspacing_Mark})(((\\p{Alphabetic}|\\p{Number}|\\p{Nonspacing_Mark})|[_])?(\\p{Alphabetic}|\\p{Number}|\\p{Nonspacing_Mark}))*",
"flags": "ug"
},
}