I use vscode-lua's format option, which uses this library. I'd like to have the option to use semicolons as delimiters at the end of every line within the literal instead of commas, but only for literals that encompass more than one line.
Current format behavior:
local t = {
V1 = "Value 1",
V2 = "Value 2",
V3 = "Value 3"
}
Requested behavior:
(Note the semicolon on the last line)
local t = {
V1 = "Value 1";
V2 = "Value 2";
V3 = "Value 3";
}
Would really appreciate seeing this and a vscode-lua setting to accompany it. Thanks
I use vscode-lua's format option, which uses this library. I'd like to have the option to use semicolons as delimiters at the end of every line within the literal instead of commas, but only for literals that encompass more than one line.
Current format behavior:
Requested behavior: (Note the semicolon on the last line)
Would really appreciate seeing this and a vscode-lua setting to accompany it. Thanks