trackLastCell property

set trackLastCell (bool value)

Implementation

set trackLastCell(bool value) {
  _ensureOpen();
  final out = calloc<ffi.Bool>()..value = value;
  try {
    _setOption(
      bindings
          .GhosttyMouseEncoderOption
          .GHOSTTY_MOUSE_ENCODER_OPT_TRACK_LAST_CELL,
      out.cast(),
    );
  } finally {
    calloc.free(out);
  }
}