nim-lang / NimLime

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

`'"'` completely breaks syntax highlighting #150

Closed timotheecour closed 1 year ago

timotheecour commented 3 years ago

/cc @Varriount

proc skipQuote(input: string; start: int; seps: set[char] = {'"'}): int =
  result = 0
  while start+result < input.len and input[start+result] in seps: inc result

proc findProjectNimFile2*( pkg: string): string =
  discard

image