MCPcopy Create free account
hub / github.com/RetiredWizard/PyDOS / skip_up

Method skip_up

pye.py:449–455  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

447 if self.cur_line < self.top_line:
448 self.scroll_up(1)
449 def skip_up(self):
450 if self.col == 0 and self.cur_line > 0:
451 self.col = len(self.content[self.cur_line - 1])
452 self.move_up()
453 return True
454 else:
455 return False
456 def move_left(self):
457 self.col = self.vcol
458 if not self.skip_up():

Callers 2

move_leftMethod · 0.95
handle_edit_keysMethod · 0.95

Calls 1

move_upMethod · 0.95

Tested by

no test coverage detected