Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/markdown-basics/language-configuration.json
3309 views
1
{
2
"comments": {
3
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
4
"blockComment": [
5
"<!--",
6
"-->"
7
]
8
},
9
// symbols used as brackets
10
"brackets": [
11
[
12
"{",
13
"}"
14
],
15
[
16
"[",
17
"]"
18
],
19
[
20
"(",
21
")"
22
]
23
],
24
"colorizedBracketPairs": [],
25
"autoClosingPairs": [
26
{
27
"open": "{",
28
"close": "}"
29
},
30
{
31
"open": "[",
32
"close": "]"
33
},
34
{
35
"open": "(",
36
"close": ")"
37
},
38
{
39
"open": "<",
40
"close": ">",
41
"notIn": [
42
"string"
43
]
44
},
45
],
46
"surroundingPairs": [
47
[
48
"(",
49
")"
50
],
51
[
52
"[",
53
"]"
54
],
55
[
56
"`",
57
"`"
58
],
59
[
60
"_",
61
"_"
62
],
63
[
64
"*",
65
"*"
66
],
67
[
68
"{",
69
"}"
70
],
71
[
72
"'",
73
"'"
74
],
75
[
76
"\"",
77
"\""
78
],
79
[
80
"<",
81
">"
82
],
83
[
84
"~",
85
"~"
86
],
87
[
88
"$",
89
"$"
90
]
91
],
92
"folding": {
93
"offSide": true,
94
"markers": {
95
"start": "^\\s*<!--\\s*#?region\\b.*-->",
96
"end": "^\\s*<!--\\s*#?endregion\\b.*-->"
97
}
98
},
99
"wordPattern": {
100
"pattern": "(\\p{Alphabetic}|\\p{Number}|\\p{Nonspacing_Mark})(((\\p{Alphabetic}|\\p{Number}|\\p{Nonspacing_Mark})|[_])?(\\p{Alphabetic}|\\p{Number}|\\p{Nonspacing_Mark}))*",
101
"flags": "ug"
102
},
103
}
104
105