Skip to content

Commit 5308817

Browse files
committed
add support for assembly language
1 parent 1a3e7f1 commit 5308817

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# NOJ Language Services Configurations
2+
23
Standalone Configurations for Language Services of NOJ.

asm.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"comments": {
3+
"lineComment": ";",
4+
"blockComment": [ "/*", "*/" ]
5+
},
6+
"brackets": [
7+
["(", ")"],
8+
["[", "]"]
9+
],
10+
"autoClosingPairs": [
11+
["(", ")"],
12+
["[", "]"],
13+
["\"", "\""],
14+
["'", "'"]
15+
],
16+
"surroundingPairs": [
17+
["(", ")"],
18+
["[", "]"],
19+
["\"", "\""],
20+
["'", "'"]
21+
]
22+
}

0 commit comments

Comments
 (0)