You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ctrl+F / Ctrl+H open an Excel-style dialog with Find Next, Replace and Replace
All, plus Match case and Entire cell; the ribbon gets a Find & Select menu in
the Editing group.
The search runs against the raw cell content, which is Excel default "Look in:
Formulas": a formula is found by its text and a replacement rewrites the
formula. Find Next walks row-major from the current cell and wraps around.
Replace All emits one setCell op per changed cell within a single tick, so the
whole sweep is one undo step.
Case-insensitive replacement is done by walking the folded string instead of a
regex, so untouched parts keep their original casing and no query needs
escaping.
The view gains setSelection() so a hit can be selected and scrolled into view
the same way a click would, notifications included.
Not covered: wildcards in the query, searching across all sheets, and Find All
as a result list - the dialog reports the match count instead.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
0 commit comments