LuaCoderAssist
LuaCoderAssist copied to clipboard
Auto format removes ';'
The plugin automatically removes all ';' at the end of a command during automatic formatting. But I need this because the LUA code is compressed and at the end everything is in one line. Is it possible to prevent the ';' from being removed? And is it possible to make the editor check if there are ';' at the end of a command?
Currently, there is no way to prevent the ; from being removed, the code formatter is base on the lua-fmt and ; is removed after the ast build.
Would this apply to trailing commas , as well or can they be kept in place?