Corrected the regex to detect espaced percent symbol (#139437)

This commit is contained in:
Khaled
2022-01-05 12:13:29 -08:00
committed by GitHub
parent bdb513f545
commit 0dba492e01
3 changed files with 71 additions and 1 deletions

View File

@@ -14,7 +14,7 @@
"patterns": [
{
"name": "comment.line.math.tex",
"match": "(%)(.+)$",
"match": "((?<!\\\\)%)(.+)$",
"captures": {
"1": {
"name": "punctuation.definition.comment.math.tex"