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
While fiddling with the rules for the other 'issue', i found out the c++ parameter was not recognized by the lexer.
The reason is that the ++ part is treated as regexp quantifiers instead of characters. It seems those need to be escaped.
On my end this was solved by adapting the code-block-cpp modules in rst.tmLanguage.json:
While fiddling with the rules for the other 'issue', i found out the
c++
parameter was not recognized by the lexer.The reason is that the
++
part is treated as regexp quantifiers instead of characters. It seems those need to be escaped.On my end this was solved by adapting the
code-block-cpp
modules inrst.tmLanguage.json
:This adaption includes the lowercase version, since that one was not recognized as well.
The text was updated successfully, but these errors were encountered: