Add markers for multi-line Python comments

This commit is contained in:
Jonathan Karr
2022-01-17 13:25:16 -05:00
committed by GitHub
parent fa33680f84
commit 3ec876d51a

View File

@@ -5,6 +5,20 @@
{
"type": "line",
"pattern": "#"
},
{
"type": "block",
"pattern": {
"start": "'''",
"end": "'''"
}
},
{
"type": "block",
"pattern": {
"start": "\"\"\"",
"end": "\"\"\""
}
}
]
},