You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In LaTeX.tmLanguage.json, the token punctuation.definition.string.begin.latex currently has the begin pattern (?<!\\\\)(\\`\\`). I suggest extending the negative lookbehind to eliminate incorrect matches. I just encountered \catcode`` , and \string`` would be similar. A begin pattern like (?<!\\\\|\\\\catcode|\\\\string)(\\`\\`) would be better. There may be other situations that could cause an incorrect match, but I expect that this modification would cover most common cases.
The text was updated successfully, but these errors were encountered:
In
LaTeX.tmLanguage.json
, the tokenpunctuation.definition.string.begin.latex
currently has the begin pattern(?<!\\\\)(\\`\\`)
. I suggest extending the negative lookbehind to eliminate incorrect matches. I just encountered\catcode``
, and\string``
would be similar. A begin pattern like(?<!\\\\|\\\\catcode|\\\\string)(\\`\\`)
would be better. There may be other situations that could cause an incorrect match, but I expect that this modification would cover most common cases.The text was updated successfully, but these errors were encountered: