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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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