selectAll method

  1. @override
void selectAll()
override

select the whole buffer

Implementation

@override
void selectAll() {
  _selection.init(Position(0, 0));
  _selection.update(Position(terminalWidth, bufferHeight));
  refresh();
}