-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Description
It would be really nice to have a setting that enforces this style of line wrap on the method call operator :, using continuation_indent to indent the wrapped lines.
-- before
self:xy(PB.list_center_x, PB.list_center_y):zoomto(PB.list_width, PB.desc_box_height):diffuse(color('#1a1a1a'))
-- after
self:xy(PB.list_center_x, PB.list_center_y)
:zoomto(PB.list_width, PB.desc_box_height)
:diffuse(color('#1a1a1a'))Currently, it only wraps the right-most token that breaks the line width constraint to the next line:
-- after (current behavior)
self:xy(PB.list_center_x, PB.list_center_y):zoomto(PB.list_width, PB.desc_box_height):diffuse(color(
'#1a1a1a'))Metadata
Metadata
Assignees
Labels
No labels