Keybindings
General
| Action | Shortcut |
| Reload config | Ctrl+Shift+R |
| Open settings | Ctrl+, |
| Font larger | Ctrl+= |
| Font smaller | Ctrl+- |
| Font reset | Ctrl+0 |
| Toggle fullscreen | Alt+Enter |
| Select all | Ctrl+A |
Panes
| Action | Shortcut |
| Split right | Ctrl+Shift+O |
| Split down | Ctrl+Shift+E |
| Close pane | Ctrl+Shift+W |
| Focus left | Ctrl+Alt+Left |
| Focus right | Ctrl+Alt+Right |
| Focus up | Ctrl+Alt+Up |
| Focus down | Ctrl+Alt+Down |
| Resize pane | Ctrl+Alt+Shift+Arrow |
| Equalize panes | Ctrl+Shift+= |
| Zoom pane | Ctrl+Shift+Z |
| Toggle floating | Ctrl+Shift+P |
| Float / tile | Ctrl+Shift+G |
| Undo split | Ctrl+Shift+U |
| Redo split | Ctrl+Shift+Y |
Tabs
| Action | Shortcut |
| New tab | Ctrl+T |
| Close tab | Ctrl+W |
| Next tab | Ctrl+Tab |
| Previous tab | Ctrl+Shift+Tab |
Clipboard
| Action | Shortcut |
| Copy | Ctrl+Shift+C |
| Paste | Ctrl+Shift+V |
| Smart copy (copy or SIGINT) | Ctrl+C |
| Smart paste | Ctrl+V |
Search
| Action | Shortcut |
| Open search | Ctrl+Shift+F |
| Next match | Enter |
| Previous match | Shift+Enter |
| Close search | Esc |
| Action | Shortcut |
| Page up | Shift+PageUp |
| Page down | Shift+PageDown |
| Scroll to top | Shift+Home |
| Scroll to bottom | Shift+End |
| Previous prompt | Ctrl+Shift+Up |
| Next prompt | Ctrl+Shift+Down |
Mark Mode
| Action | Key |
| Enter / exit mark mode | Ctrl+Shift+M |
| Move cursor | Arrow keys |
| Word left / right | Ctrl+Left / Ctrl+Right |
| Line start / end | Home / End |
| Buffer start / end | Ctrl+Home / Ctrl+End |
| Page up / down | PageUp / PageDown |
| Extend selection | Shift + any movement |
| Select all | Ctrl+A |
| Copy and exit | Enter |
| Cancel and exit | Escape |
Customizing
All keybindings can be overridden in your config.toml. Define bindings in a [[keybind]] entry:
[[keybind]]
key = "o"
mods = "Ctrl|Shift"
action = "SplitRight"
[[keybind]]
key = "e"
mods = "Ctrl|Shift"
action = "SplitDown"
See Configuration for the full config format. On macOS, Cmd is used in place of Ctrl by default.