feat(tui,coding-agent): add ctrl+b/ctrl+f cursor navigation keybindings (#1053)

This commit is contained in:
Nathan Igo
2026-01-29 21:43:54 -03:00
committed by GitHub
parent af4cf5f4ef
commit 902473797d
2 changed files with 4 additions and 4 deletions

View File

@@ -68,8 +68,8 @@ export const DEFAULT_EDITOR_KEYBINDINGS: Required<EditorKeybindingsConfig> = {
// Cursor movement
cursorUp: "up",
cursorDown: "down",
cursorLeft: "left",
cursorRight: "right",
cursorLeft: ["left", "ctrl+b"],
cursorRight: ["right", "ctrl+f"],
cursorWordLeft: ["alt+left", "ctrl+left", "alt+b"],
cursorWordRight: ["alt+right", "ctrl+right", "alt+f"],
cursorLineStart: ["home", "ctrl+a"],