Search & Mark Mode
Search Bar
Press Ctrl+F to open the search overlay. Type your query and matches are highlighted across the viewport and scrollback in real time. The bar shows "N of M" indicating the current match position and total count.
Search Modes
- Plain text — Literal substring matching. Case sensitivity is toggleable.
- Regex — Full regular expression support with multiline matching.
Navigation
- Enter — Jump to next match
- Shift+Enter — Jump to previous match
- Esc — Close search bar
The viewport scrolls to center the current match.
Mark Mode
Mark mode gives you vi-style keyboard navigation and selection. Enter with Ctrl+Shift+M. The cursor becomes independently movable — navigate scrollback, select text, and yank without leaving the keyboard.
Motions
| Key | Motion |
|---|---|
| h j k l | Left, down, up, right |
| w b e | Word forward, back, end |
| W B E | WORD forward, back, end |
| 0 ^ $ | Line start, first non-blank, end |
| gg / G | Top / bottom of scrollback |
| H M L | Viewport top, middle, bottom |
| Ctrl+U / Ctrl+D | Half-page up / down |
| Ctrl+B / Ctrl+F | Full-page up / down |
| zz | Center view on cursor |
Selection
- v — Character-wise selection
- V — Line-wise selection
- Ctrl+V — Block (rectangular) selection
- y — Yank (copy) selected text to clipboard
Inline Search
- f{char} — Jump to next occurrence of char
- F{char} — Jump to previous occurrence
- t{char} — Jump to just before next occurrence
- T{char} — Jump to just after previous occurrence
- ; / , — Repeat / reverse last f/F/t/T
- % — Jump to matching bracket
- / / ? — Full search forward / backward