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
Hi guys,
I have a code block that is getting unexpected results when formatting:
if (a==b) andd~=eand...andgthendo_something()
end
which gives me the unexpected result:
if (a==b) andd~=eand...andgthendo_something()
end
My expected formatting result is:
if (a==b) andd~=eand...andgthendo_something()
end
I also modified my code to:
if (a==b) and (d~=e) and...andgthendo_something()
end
but also got:
if (a==b) andd~=eand...andgthendo_something()
end
which IMO should be:
if (a==b) andd~=eand...andgthendo_something()
end
My question is which option to correct this?
I tried to set no_break_after_functioncall_lp / no_keep_simple_function_one_line / align_parameter / no_use_tab / align_args but not work.
Thanks.
The text was updated successfully, but these errors were encountered:
JackBoosY
changed the title
Question about how to disable one formatting operation
Question about how to disable / correct one formatting operation
Oct 11, 2023
Hi guys,
I have a code block that is getting unexpected results when formatting:
which gives me the unexpected result:
My expected formatting result is:
I also modified my code to:
but also got:
which IMO should be:
My question is which option to correct this?
I tried to set
no_break_after_functioncall_lp
/no_keep_simple_function_one_line
/align_parameter
/no_use_tab
/align_args
but not work.Thanks.
The text was updated successfully, but these errors were encountered: