ImGuiColorTextEdit icon indicating copy to clipboard operation
ImGuiColorTextEdit copied to clipboard

Fix a bug where multiline comments weren't being highlighted if the beginning of the multiline comment contained the same characters as a single line comment

Open DeathEgg opened this issue 3 years ago • 0 comments

This specifically effects Lua:

-- This is a single line comment. It's handled fine.

--[[ This is a multi-line comment.
Because of the bug, only the first line
is highlighted as a comment currently.]]

DeathEgg avatar Jun 22 '21 20:06 DeathEgg