---
title: Keybindings
description: Default hotkeys and the config keys that rebind them.
status: verified
editUrl: https://github.com/tilework-tech/nori-docs/blob/main/scripts/regen-cli-reference.mjs
sidebar:
  order: 4
---

<!-- GENERATED — do not edit. source: cli@3fce4093 command: scripts/regen-cli-reference.sh -->

Rebind any action under `[tui.hotkeys]` in config.toml using
`[modifier+]key` strings; `"none"` unbinds.

| Action | Default | Config key |
|---|---|---|
| Open Transcript | `ctrl+t` | `open_transcript` |
| Open Editor | `ctrl+g` | `open_editor` |
| Move Backward Char | `ctrl+b` | `move_backward_char` |
| Move Forward Char | `ctrl+f` | `move_forward_char` |
| Move to Line Start | `ctrl+a` | `move_beginning_of_line` |
| Move to Line End | `ctrl+e` | `move_end_of_line` |
| Move Backward Word | `alt+b` | `move_backward_word` |
| Move Forward Word | `alt+f` | `move_forward_word` |
| Delete Backward Char | `ctrl+h` | `delete_backward_char` |
| Delete Forward Char | `ctrl+d` | `delete_forward_char` |
| Delete Backward Word | `ctrl+w` | `delete_backward_word` |
| Kill to Line End | `ctrl+k` | `kill_to_end_of_line` |
| Kill to Line Start | `ctrl+u` | `kill_to_beginning_of_line` |
| Yank | `ctrl+y` | `yank` |
| History Search | `ctrl+r` | `history_search` |
| Toggle Plan Drawer | `ctrl+o` | `toggle_plan_drawer` |
