Opening the Find Bar
Press Cmd F to open the Find bar. It slides in below the breadcrumb bar. Press Cmd Option H to open Find with the Replace row already expanded.
Finding Text
Type your query in the search field. Matches are highlighted in the editor and the counter shows your position (e.g. "3 of 12"). If there are no matches, the counter shows "No results".
| Action | Shortcut |
|---|---|
| Open Find | Cmd F |
| Find Next | Cmd G or Return |
| Find Previous | Cmd Shift G |
| Close Find | Escape |
Navigation wraps around — after the last match, Find Next goes back to the first. The current match scrolls into view automatically.
Search Options
Case Sensitivity
Click the Aa button to toggle case-sensitive matching. By default, search is case-insensitive. When active, the button appears highlighted.
Regular Expressions
Click the .* button to enable regex mode. This uses full NSRegularExpression syntax — useful for pattern matching like \d+px to find pixel values or fill="[^"]*" to find all fill attributes.
Replacing
Click the disclosure triangle at the left of the Find bar, or press Cmd Option H, to reveal the Replace row.
- Replace — replaces the current match and advances to the next one
- All — replaces every match in the file at once
Both buttons are disabled when there are no matches.
##\s+ to locate all h2 headings, or \[([^\]]+)\]\([^\)]+\) to find all Markdown links.