parent
08d9a815e4
commit
4d3769233e
|
@ -223,8 +223,6 @@ class Fundamental(Handler):
|
|||
self.lmargin = 0
|
||||
self.rmargin = 1
|
||||
|
||||
def get_rmargin(self, y, x, ended=False, cont=False):
|
||||
return ('', color.build('default', 'default'))
|
||||
def _null_margin(self, y, x, ended=False, cont=False):
|
||||
return ('', color.build('default', 'default'))
|
||||
def _continuation_margin(self, y, x, ended=False, cont=False):
|
||||
|
@ -242,6 +240,7 @@ class Fundamental(Handler):
|
|||
else:
|
||||
s = ' ' * lm
|
||||
return (s, color.build('default', 'default', 'bold'))
|
||||
|
||||
get_lmargin = _line_number_margin
|
||||
get_rmargin = _continuation_margin
|
||||
|
||||
|
@ -253,7 +252,6 @@ class Fundamental(Handler):
|
|||
def handle_token(self, t):
|
||||
'''self.handle_token(token): handles input "token"'''
|
||||
self.window.active_point = None
|
||||
#self.window.application.clear_error()
|
||||
self.window.clear_error()
|
||||
try:
|
||||
act = Handler.handle_token(self, t)
|
||||
|
|
Loading…
Reference in New Issue