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

@ -430,12 +430,19 @@
}
]
},
{
{
"language": "Rust",
"markers": [
{
"type": "line",
"pattern": "//"
},
{
"type": "block",
"pattern": {
"start": "/\\*",
"end": "\\*/"
}
}
]
}