clearSelection method

void clearSelection()

Gated to match alacritty event.rs:clear_selection — the FFI hop + full snapshot are skipped when there's nothing to clear.

Implementation

void clearSelection() {
  if (!_selectionActive) return;
  _engine?.selectionClear();
  _selectionActive = false;
  notifyListeners();
}