-
Notifications
You must be signed in to change notification settings - Fork 85
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Sometimes you want tables to be broken earlier than the standard line limit, it'd be nice to have an extra setting to break tables earlier/later than other lines.
Examples:
Current:
some.really.long.function_call(with, many, parameters)
table = {that = should, really = be, broken = sooner}Or:
some.really.long.function_call(with, many,
parameters)
table = {
that = now,
is = actually,
broken = sooner,
}Suggested:
some.really.long.function_call(with, many, parameters)
table = {
that = now,
is = actually,
broken = sooner,
}Note that chop_down_table only seems to "chop down" tables if they would be longer than the line length limit. This is sane behavior, just not exactly what is needed for my project.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request