Skip to content

Commit 7daae25

Browse files
committed
% added as bracket
1 parent d74b086 commit 7daae25

File tree

4 files changed

+16
-9
lines changed

4 files changed

+16
-9
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
- .inp
1616
- .ans
1717
- .out
18-
- .csv (may be unfavourable for most users)
1918
- .ansys
2019
- .apdl.txt
2120
- .apdl

ansys-apdl-syntax-0.1.0.vsix

292 KB
Binary file not shown.

language-configuration.json

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,24 @@
33
"lineComment": "!"
44
},
55

6-
"brackets": [["{", "}"], ["[", "]"], ["(", ")"], ["\\%", "\\%"]],
7-
8-
"autoClosingPairs": [
6+
"brackets": [
97
["{", "}"],
108
["[", "]"],
119
["(", ")"],
12-
["\"", "\""],
13-
["'", "'"],
14-
["\\%", "\\%"]
10+
["%", "%"]
11+
],
12+
13+
"autoClosingPairs": [
14+
{ "open": "{", "close": "}" },
15+
{ "open": "[", "close": "]" },
16+
{ "open": "(", "close": ")" },
17+
{ "open": "'", "close": "'" },
18+
{ "open": "\"", "close": "\"" },
19+
{ "open": "`", "close": "`"},
20+
{ "open": "/*", "close": " */"},
21+
{ "open": "/**", "close": " */"},
22+
{ "open": "<!--", "close": "-->"},
23+
{ "open": "%", "close": "%" }
1524
],
1625

1726
"surroundingPairs": [
@@ -20,7 +29,7 @@
2029
["(", ")"],
2130
["\"", "\""],
2231
["'", "'"],
23-
["\\%", "\\%"]
32+
["%", "%"]
2433
],
2534

2635
"folding": {

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
".inp",
3030
".mac",
3131
".ans",
32-
".csv",
3332
".apdl.txt",
3433
"apdl",
3534
"ansys"

0 commit comments

Comments
 (0)