Skip to content

Commit

Permalink
Improve handling of nested block comments
Browse files Browse the repository at this point in the history
  • Loading branch information
DanTup committed Mar 11, 2019
1 parent 549d9fa commit 5340e19
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion syntaxes/dart.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@
{
"include": "#comments-doc-oldschool"
},
{
"include": "#comments-inline"
},
{
"include": "#dartdoc"
}
Expand All @@ -167,7 +170,12 @@
{
"begin": "/\\*",
"end": "\\*/",
"name": "comment.block.dart"
"name": "comment.block.dart",
"patterns": [
{
"include": "#comments-inline"
}
]
},
{
"captures": {
Expand Down

0 comments on commit 5340e19

Please sign in to comment.