Add block comment support for Rust

This commit is contained in:
Levon Tarver
2021-11-02 21:27:06 -05:00
parent c4d82bdcf4
commit aff5175c61

View File

@@ -436,6 +436,13 @@
{ {
"type": "line", "type": "line",
"pattern": "//" "pattern": "//"
},
{
"type": "block",
"pattern": {
"start": "/\\*",
"end": "\\*/"
}
} }
] ]
} }