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
you can also consider a case when line should be split before a keyword because of multiple assignments or long variable names on assignment:
${returned_value_with_long_name_1} ${returned_value_with_long_name_2} ${returned_value_with_long_name_3} ${returned_value_with_long_name_4} ${returned_value_with_long_name_5} ${returned_value_with_long_name_6} some keyword
Thanks for the report. I've tested it and I can also confirm this bug. I will take a look into fixing it. While working at it I will also consider problems with long variable names.
Consider line:
${var1} ${var2} Some Lengthy Keyword So That This Line Is To Long ${arg1} ${arg2}
it's transformed to:
${var1} Some Lengthy Keyword So That This Line Is To Long
... ${arg1} ${arg2}
The text was updated successfully, but these errors were encountered: