robotframework-tidy icon indicating copy to clipboard operation
robotframework-tidy copied to clipboard

Split too long FOR header

Open bhirsz opened this issue 10 months ago • 0 comments

For example:

FOR    ${file}    IN    test_data/subdir/file.csv    test_data/subdir/file2.csv    test_data/subdir/file3.csv    test_data/subdir/file4.csv    test_data/subdir/file4.csv

to

FOR    ${file}    IN    test_data/subdir/file.csv
...    test_data/subdir/file2.csv
...    test_data/subdir/file3.csv
...    test_data/subdir/file4.csv
...    test_data/subdir/file4.csv

or something similar.

bhirsz avatar Sep 12 '23 12:09 bhirsz