selectAll method
select the whole buffer
Implementation
@override
void selectAll() {
_selection.init(Position(0, 0));
_selection.update(Position(terminalWidth, bufferHeight));
refresh();
}
select the whole buffer
@override
void selectAll() {
_selection.init(Position(0, 0));
_selection.update(Position(terminalWidth, bufferHeight));
refresh();
}