[wontfix] Wrong result of "Spaces to tabs (all)"
Posted: 03.03.2014 16:25
Lines with spaces:
Wrong result after spaces to tabs (all) with tab size 4 (with \t instead of the real tabs for this post):
After expansion with tab size 4 you can see that it's not same as at beginning:
Looks as if SynWrite simply replaces 4 spaces with a tab, which is obviously only allowed for leading spaces, not in the text.
SynWrite 6.4.581
Code: Select all
last if (/^\|\s+Missing Information\s+\|/); # -missing_info
last if (/^\|\s+Recursion Ignored\s+\|/); # --verbose_warnings
Code: Select all
\t\t\t\tlast if (/^\|\s+Missing Information\s+\|/);\t # -missing_info
\t\t\t\tlast if (/^\|\s+Recursion Ignored\s+\|/);\t # --verbose_warnings
Code: Select all
last if (/^\|\s+Missing Information\s+\|/); # -missing_info
last if (/^\|\s+Recursion Ignored\s+\|/); # --verbose_warnings
SynWrite 6.4.581