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
I am not sure yet whether Runic will reformat to stay within a certain line width (gofmt does not) but if an expression have already commited to multiple lines, for example
some_function_name(argument1,
argument2)
This should insert a newline after ( and before ):
some_function_name(
argument1,
argument2,
)
and, where applicable, add a trailing , to the last item.
The text was updated successfully, but these errors were encountered:
I am not sure yet whether Runic will reformat to stay within a certain line width (gofmt does not) but if an expression have already commited to multiple lines, for example
some_function_name(argument1, argument2)
This should insert a newline after
(
and before)
:some_function_name( argument1, argument2, )
and, where applicable, add a trailing
,
to the last item.The text was updated successfully, but these errors were encountered: