jungervin / EsPy

Micropython IDE for ESP8266
71 stars 25 forks source link

Long Line Edge Margin is Fixed at 80 Characters #14

Open andren5060 opened 3 years ago

andren5060 commented 3 years ago

Using Release EsPy.1.0.0.12.7z. which is my preferred editor for MicroPython coding on ESP8266 (I dumped Thonny and PyCharm).

For me EsPy is perfect, except for one thing: the line (Long Line Edge Margin?) which runs down the screen at 80 characters when editing a program. Incidentally, this line does not show on any of the screenshots of EsPy which I have seen in my hours and hours of Googling this issue.

I have tried without success to get rid of it - it seems to be hard coded in EditorForm.Designer.cs:

this.scintilla.EdgeColumn = 80; this.scintilla.EdgeMode = ScintillaNET.EdgeMode.Line;

ScintillaNET.xml states that EdgeMode.None is the Default, Yet the there is the line at 80 characters.

Long lines are not indicated. This is the default.

I have tried dozens of different parameters in ScintillaNET.xml for , and , but nothing I do has any effect.

Is it possible to modify an XML file to remove the Long Line Edge, or would one have to change EditorForm.Designer.cs and then rebuild/re-compile the entire package?