scrollLines method
Implementation
Future<void> scrollLines(int delta) async {
TerminalScrollTrace.log(
'client',
'scrollLines($delta) before ${_gridPosSnapshot()}',
);
_applyScrollUpdate(await _binding.scrollLines(delta));
TerminalScrollTrace.log(
'client',
'scrollLines($delta) after ${_gridPosSnapshot()}',
);
}