Skip to content

Commit 026fd8c

Browse files
committed
v2.0.0 release ready
1 parent aafe5c9 commit 026fd8c

File tree

2 files changed

+120
-22
lines changed

2 files changed

+120
-22
lines changed

asciidoc-language-configuration.json

+119-21
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,129 @@
11
{
22
"comments": {
33
"lineComment": "//",
4-
"blockComment": [ "////", "////" ]
4+
"blockComment": [
5+
"////",
6+
"////"
7+
]
58
},
69
"brackets": [
7-
["{", "}"],
8-
["[", "]"],
9-
["(", ")"],
10-
["<", ">"]
10+
[
11+
"{",
12+
"}"
13+
],
14+
[
15+
"[",
16+
"]"
17+
],
18+
[
19+
"(",
20+
")"
21+
],
22+
[
23+
"<",
24+
">"
25+
]
1126
],
1227
"autoClosingPairs": [
13-
{ "open": "{", "close": "}" },
14-
{ "open": "[", "close": "]" },
15-
{ "open": "(", "close": ")" },
16-
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
17-
{ "open": "\"", "close": "\"", "notIn": ["string"] },
18-
{ "open": "`", "close": "`", "notIn": ["string", "comment"] },
19-
{ "open": "/**", "close": " */", "notIn": ["string"] },
20-
{ "open": "////", "close": " ////", "notIn": ["string", "comment"] }
28+
{
29+
"open": "{",
30+
"close": "}"
31+
},
32+
{
33+
"open": "[",
34+
"close": "]"
35+
},
36+
{
37+
"open": "(",
38+
"close": ")"
39+
},
40+
{
41+
"open": "'",
42+
"close": "'",
43+
"notIn": [
44+
"string",
45+
"comment"
46+
]
47+
},
48+
{
49+
"open": "\"",
50+
"close": "\"",
51+
"notIn": [
52+
"string"
53+
]
54+
},
55+
{
56+
"open": "`",
57+
"close": "`",
58+
"notIn": [
59+
"string",
60+
"comment"
61+
]
62+
},
63+
{
64+
"open": "/**",
65+
"close": " */",
66+
"notIn": [
67+
"string"
68+
]
69+
},
70+
{
71+
"open": "////",
72+
"close": " ////",
73+
"notIn": [
74+
"string",
75+
"comment"
76+
]
77+
}
2178
],
2279
"surroundingPairs": [
23-
["{", "}"],
24-
["[", "]"],
25-
["(", ")"],
26-
["<", ">"],
27-
["'", "'"],
28-
["\"", "\""],
29-
["`", "`"]
80+
[
81+
"{",
82+
"}"
83+
],
84+
[
85+
"[",
86+
"]"
87+
],
88+
[
89+
"(",
90+
")"
91+
],
92+
[
93+
"<",
94+
">"
95+
],
96+
[
97+
"'",
98+
"'"
99+
],
100+
[
101+
"\"",
102+
"\""
103+
],
104+
[
105+
"`",
106+
"`"
107+
],
108+
[
109+
"_",
110+
"_"
111+
],
112+
[
113+
"*",
114+
"*"
115+
],
116+
[
117+
"^",
118+
"^"
119+
],
120+
[
121+
"~",
122+
"~"
123+
],
124+
[
125+
"#",
126+
"#"
127+
]
30128
]
31-
}
129+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "asciidoctor-vscode",
33
"displayName": "%displayName%",
44
"description": "%description%",
5-
"version": "1.0.102",
5+
"version": "2.0.0",
66
"publisher": "joaompinto",
77
"author": "João Pinto <[email protected]>",
88
"license": "MIT",

0 commit comments

Comments
 (0)