We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here are three tables that are indented like this using default settings:
aaa = { 111, { 222, { 333, { 444 } } } } bbb = { 111, { 222, { 333, { 444 } } } } ccc = { 111, { 222, { 333, { 444 } } } }
It's not so easy to recognize the structure of these tables, especially of aaa and ccc.
aaa
ccc
I would have expected something more like the following:
The rules for this indentation are:
{
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here are three tables that are indented like this using default settings:
It's not so easy to recognize the structure of these tables, especially of
aaa
andccc
.I would have expected something more like the following:
The rules for this indentation are:
{
appears at the end of a line, then indent the next line relative to the first element of the outer group.{
starts a new line, then{
shall have the same indentation as the first element of the same group.The text was updated successfully, but these errors were encountered: