CppCXY / EmmyLuaCodeStyle

fast, powerful, and feature-rich Lua formatting and checking tool.
MIT License
140 stars 27 forks source link

Fix: short comment following long comment close #172

Closed notpeter closed 6 months ago

notpeter commented 6 months ago

Makes short comment immediately following long comment not add a linebreak. No longer incorrectly indents.

Fixes #170

Before: --[[]]-- -> --[[]]\n -- -> --[[]]\n-- After: --[[]]-- -> --[[]] --