nim-lang / NimLime

The official Nim programming language plugin for Sublime Text
MIT License
132 stars 34 forks source link

[minor] wrong syntax highlight for `foo("""{}""")` : right parens after triple quote highlighted as string #144

Closed timotheecour closed 1 year ago

timotheecour commented 5 years ago
# ok
foo("")

# bad: wrong syntax highlight: `)` highlighted as string
foo("""{}""")

# ok
foo("""{}""" )