swift.vim
swift.vim copied to clipboard
Highlighting issue when escaping triple quotation marks
Triple quotation marks can be escaped in two ways: either \"\"\" or \""".
The first one works fine, but the second one breaks the syntax highlighting:
"""
\"\"\"
"""
print("Syntax highlighting works on this line")
"""
\"""
"""
print("Syntax highlighting is broken on this line")