scrollLines method

Future<void> scrollLines(
  1. int delta
)

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()}',
  );
}