Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 748 by jodyfanning: RIDE reformats certain file types on editing
http://code.google.com/p/robotframework/issues/detail?id=748
When using any of the RIDE versions up to the latest it reformats the plain
text format files on editing.
For example, the TSV format. When you open the file RIDE places the first
keyword on the same line as the test case name. This causes unnecessary
changes in version control in projects using a mixture of plain text
editors and RIDE.
An example, original file:
This Is My Test Case
[Setup] Setup environment
Given xxxx
When xxxx
And xxxx
Then xxxx
[Teardown] Cleanup
And after RIDE reformats:
This Is My Test Case [Setup] Setup environment
Given xxxx
When xxxx
And xxxx
Then xxxx
[Teardown] Cleanup