Opening Find
| Action | Shortcut |
|---|---|
| Open Find | Cmd/Ctrl+F |
| Open Find & Replace | Cmd/Ctrl+H |
The Find bar appears at the top of the editor.
Basic Search
- Press Cmd/Ctrl+F to open Find
- Type your search term
- Matches are highlighted in the editor
- The match count displays (e.g.,
3 of 12
)
Navigating Matches
| Action | Shortcut | Button |
|---|---|---|
| Next match | Enter | Down arrow |
| Previous match | Shift+Enter | Up arrow |
The editor scrolls to show each match in context.
Search Options
Toggle these options to refine your search:
Case Sensitive
- Shortcut: Alt+C
- When enabled,
The
won't matchthe
Whole Word
- Shortcut: Alt+W
- When enabled,
the
won't matchthere
orother
Regular Expression
- Shortcut: Alt+R
- Enables regex pattern matching
Regular Expressions
When regex mode is enabled, you can use patterns:
| Pattern | Matches |
|---|---|
\bword\b |
wordas a whole word |
[0-9]+ |
One or more digits |
| `(cat\ | dog)` |
^The |
Theat line start |
\.$ |
Period at line end |
.+ |
One or more characters |
Common Patterns
| Purpose | Pattern |
|---|---|
| Find double spaces | (two spaces) |
| Find em dashes | — or --- |
| Find quotation marks | [""] |
| Find numbers | \d+ |
Find & Replace
- Press Cmd/Ctrl+H to open Find & Replace
- Enter your search term in the first field
- Enter the replacement text in the second field
- Use buttons to replace:
| Action | Shortcut | Description |
|---|---|---|
| Replace | - | Replace current match |
| Replace All | Cmd/Ctrl+Enter | Replace all matches |
Replace Preview
Before replacing, review:
- Total match count
- Current match highlighted
- Navigate through matches to verify
Closing Find
Press Escape or click the X button to close the Find bar.
Search Scope
The Find feature searches within the current section only.
Note: To search across all sections in your book, use the Search panel in the inspector (click the magnifying glass icon in the inspector rail).
Tips
- Start broad, narrow down - Search for a common term first, then add options
- Use whole word for character names - Avoid matching partial words
- Preview before Replace All - Navigate through matches first
- Regex for patterns - Find inconsistent formatting like double spaces
- Case sensitive for proper nouns - Ensure correct capitalization
Common Use Cases
Fix Character Name Spelling
- Open Find & Replace
- Enable Case Sensitive
- Search:
Jhon - Replace:
John - Click Replace All
Standardize Punctuation
- Enable Regex
- Search:
\.{3}(three periods) - Replace:
…(ellipsis character) - Replace All
Find Dialogue Tags
- Search:
said - Navigate matches to review usage
- Optionally replace overused tags