Skip to content

Commit

Permalink
add support for assembly language
Browse files Browse the repository at this point in the history
  • Loading branch information
ZsgsDesign committed Mar 29, 2022
1 parent 1a3e7f1 commit 5308817
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# NOJ Language Services Configurations

Standalone Configurations for Language Services of NOJ.
22 changes: 22 additions & 0 deletions asm.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"comments": {
"lineComment": ";",
"blockComment": [ "/*", "*/" ]
},
"brackets": [
["(", ")"],
["[", "]"]
],
"autoClosingPairs": [
["(", ")"],
["[", "]"],
["\"", "\""],
["'", "'"]
],
"surroundingPairs": [
["(", ")"],
["[", "]"],
["\"", "\""],
["'", "'"]
]
}

0 comments on commit 5308817

Please sign in to comment.