Line Length does not alter text at all in Sublime Text 3 (Build 3021).
Investigation so far:
- Text is properly broken up logically, and the list of lines is properly built.
"\n".join(lines) works correctly
- Plugin does not throw an exception on calling
view.replace(self.edit, selection, "\n".join(lines))
As far as I can tell, it's an issue with how I'm calling the Sublime method, not the changeover to Python 3.
More to come!
Line Length does not alter text at all in Sublime Text 3 (Build 3021).
Investigation so far:
"\n".join(lines)works correctlyview.replace(self.edit, selection, "\n".join(lines))As far as I can tell, it's an issue with how I'm calling the Sublime method, not the changeover to Python 3.
More to come!