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
Currently the only way to do it is by renaming pythonString, pythonBytes, pythonUniString, pythonUniRawString and pythonRawString groups with the corresponding delimiters and then link new names to the Comment group.
how to mark starting and ending strings with """ or ''' as comment
currently as a workaround I added the following to the .vim/after/syntax/python.vim file
syn region Comment start=/"""/ end=/"""/
syn region Comment start=/'''/ end=/'''/
The text was updated successfully, but these errors were encountered: