tjdevries / tree-sitter-lua

Neovim Tree Sitter Lua Grammar & Library
116 stars 12 forks source link

comments not stopping where they should #17

Closed Conni2461 closed 2 years ago

Conni2461 commented 3 years ago

Just wanted to do this:

----------------------------
--------- text -------------
----------------------------

local a = 5

local a = 5 is still part of comment.

Even easier repro:

-- text
--

local m
Conni2461 commented 3 years ago

Everthing below is part of the comment, only the end of the file can stop it :rofl:

image