MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / right

Method right

python/examples/triage/byte.py:628–638  ·  view source on GitHub ↗
(self, count, selecting)

Source from the content-addressed store, hash-verified

626 self.viewport().update()
627
628 def right(self, count, selecting):
629 if self.cursorAddr <= (self.getEnd() - count):
630 self.cursorAddr += count
631 else:
632 self.cursorAddr = self.getEnd()
633 self.adjustAddressAfterForwardMovement()
634 if not selecting:
635 self.selectNone()
636 self.repositionCaret()
637 if self.selectionVisible or selecting:
638 self.viewport().update()
639
640 def up(self, selecting):
641 self.left(self.cols, selecting)

Callers 2

__init__Method · 0.95
downMethod · 0.95

Calls 5

getEndMethod · 0.95
selectNoneMethod · 0.95
repositionCaretMethod · 0.95
updateMethod · 0.45

Tested by

no test coverage detected