@@ -19,7 +19,6 @@ init -1500 python in _editor:
19
19
from pygments import highlight
20
20
from renpy_lexer import RenPyLexer
21
21
from renpyformatter import RenPyFormatter
22
- from pygments.styles import get_style_by_name
23
22
24
23
class History (object ):
25
24
def __init__ (self ): self .reset()
@@ -116,7 +115,9 @@ init -1500 python in _editor:
116
115
renpy.parser.parse_errors = []
117
116
renpy.parser.parse(self .fname, document)
118
117
escaped = re.sub(r ' (?<! \{ ) ( \{ ( \{\{ ) * ) (?! \{ ) ' , r ' {\1 ' , re.sub(r ' (?<! \[ ) ( \[ ( \[\[ ) * ) (?! \[ ) ' , r ' [\1 ' , document))
119
- self .colored_buffer = highlight(escaped, self .lexer, self .formater).split(os.linesep)
118
+
119
+ # NOTE: must split on newline here, not os.linesep, or it won't work in windows
120
+ self .colored_buffer = highlight(escaped, self .lexer, self .formater).split(' \n ' )
120
121
self ._last_parsed_changes = self .history.at
121
122
122
123
class TextView (object ):
@@ -167,7 +168,7 @@ init -1500 python in _editor:
167
168
self .rewrap()
168
169
if self .show_errors is not None :
169
170
err = renpy.parser.parse_errors
170
- self .show_errors = " \n {color=#f00}{size=-10} " + os.linesep.join(err) + " {/size}{/color} " if err else " "
171
+ self .show_errors = os.linesep + " {color=#f00}{size=-10} " + os.linesep.join(err) + " {/size}{/color} " if err else " "
171
172
172
173
def UP (self , sub = 1 ):
173
174
sub = min (self .console.cy + self .lnr, sub)
0 commit comments