hideInlayHints method

void hideInlayHints()

Hides inlay hints from the editor.

This clears all inlay hints and restores the editor to editable mode.

Example:

// Call this when Ctrl+Alt is released
controller.hideInlayHints();

Implementation

void hideInlayHints() {
  if (!_inlayHintsVisible) return;

  _inlayHintsVisible = false;
  _inlayHints = [];
  readOnly = false;
  inlayHintsChanged = true;
  notifyListeners();
}