You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The column_table_limit key is not working properly. Currently, it overrides all other column limit keys (such as column_limit and column_table_limit_kv).
Expected:
-- column_limit: 120localstring="This is a string " .."with many many " .."many many characters " .."which should not be formated."-- column_table_limit: 10locala=
{
"one",
"one",
"one",
"one",
"one",
"one",
"one",
"one",
"one",
"one",
"one",
"one",
"one",
"one"
}
-- column_table_limit_kv: 40localsome_list= {
['A'] =true,
['B'] =true,
['C'] =true,
['D'] =true,
['E'] =true
}
Actual:
-- column_limit: 120localstring="This is a string " .."with many many " .."many many characters " .."which should not be formated."-- column_table_limit: 10locala=
{
"one",
"one",
"one",
"one",
"one",
"one",
"one",
"one",
"one",
"one",
"one",
"one",
"one",
"one"
}
-- column_table_limit_kv: 40localsome_list=
{
['A'] =true,
['B'] =true,
['C'] =true,
['D'] =true,
['E'] =true
}
string has < 120 characters so it should stay in 1 line. Furthermore, some_list is put on to its own line which indicates a limit of 10 is applied.
EDIT: I'm using an extreme value for column_table_limit to clearly demonstrate that the de-facto global column limit is 10. What I would like is to be able to use these 3 keys independently of each other.
The
column_table_limit
key is not working properly. Currently, it overrides all other column limit keys (such ascolumn_limit
andcolumn_table_limit_kv
).Expected:
Actual:
Config file used:
string
has < 120 characters so it should stay in 1 line. Furthermore,some_list
is put on to its own line which indicates a limit of 10 is applied.EDIT: I'm using an extreme value for
column_table_limit
to clearly demonstrate that the de-facto global column limit is 10. What I would like is to be able to use these 3 keys independently of each other.@Koihik
The text was updated successfully, but these errors were encountered: