Closed bigdogmat closed 8 years ago
Can you give some examples of what you are trying to align?
local string_format = string.format
local chat_AddText = chat.AddText
local unpack = unpack
local MsgN = MsgN
To
local string_format = string.format
local chat_AddText = chat.AddText
local unpack = unpack
local MsgN = MsgN
And possibly table alignment, e.g
local tab = {
stuff = true,
otherstuff = false,
morestuff = function()
end,
}
To
local tab = {
stuff = true,
otherstuff = false,
morestuff = function()
end,
}
Sorry for the late response. Are you using this package (https://atom.io/packages/language-lua) for grammar support?
I just published https://atom.io/packages/aligner-lua which should provide support for Lua. Let me know if you encounter any issue.
Would be nice to see Lua support for this.