Skip to content

Commit

Permalink
Merge pull request #4 from 70165tk/comment-block
Browse files Browse the repository at this point in the history
複数行コメント/**/でコメント表示の追加
  • Loading branch information
tubone24 committed Apr 10, 2023
2 parents 3513b8a + 2960498 commit d65248e
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion syntaxes/aiscript.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,22 @@
{
"name": "comment.line.aiscript",
"match": "\\/\\/.*"
}
},
{
"name": "comment.block.aiscript",
"begin": "/\\*",
"beginCaptures": {
"0": {
"name": "punctuation.definition.comment.aiscript"
}
},
"end": "\\*/",
"endCaptures": {
"0": {
"name": "punctuation.definition.comment.aiscript"
}
}
}
]
},
"script_configuration": {
Expand Down

0 comments on commit d65248e

Please sign in to comment.