Skip to content

Commit

Permalink
[vscode-cdm-extension] Remove block comments from VS Code grammars
Browse files Browse the repository at this point in the history
  • Loading branch information
kapkekes committed Mar 3, 2024
1 parent 41d25a6 commit df4cdc3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 18 deletions.
7 changes: 1 addition & 6 deletions vscode-cdm-extension/syntaxes/cdm16-assembly.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,7 @@
"comments": {
"patterns": [{
"name": "comment.line",
"match": "(//|#).*$"
},
{
"name": "comment.block",
"begin": "/\\*",
"end": "\\*/"
"match": "(#).*$"
}]
},
"macros": {
Expand Down
7 changes: 1 addition & 6 deletions vscode-cdm-extension/syntaxes/cdm8-assembly.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,7 @@
"comments": {
"patterns": [{
"name": "comment.line",
"match": "(//|#).*$"
},
{
"name": "comment.block",
"begin": "/\\*",
"end": "\\*/"
"match": "(#).*$"
}]
},
"macros": {
Expand Down
7 changes: 1 addition & 6 deletions vscode-cdm-extension/syntaxes/cdm8e-assembly.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,7 @@
"comments": {
"patterns": [{
"name": "comment.line",
"match": "(//|#).*$"
},
{
"name": "comment.block",
"begin": "/\\*",
"end": "\\*/"
"match": "(#).*$"
}]
},
"macros": {
Expand Down

0 comments on commit df4cdc3

Please sign in to comment.