gh-119035: Add Ctrl+← and Ctrl+→ word-skipping keybindings to new repl (#119248)

add word-skipping ctrl keybindings to new repl
This commit is contained in:
Alastair Stanley 2024-05-21 12:17:41 -04:00 committed by GitHub
parent c4722cd057
commit 0398d93392
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 3 deletions

View file

@ -136,7 +136,9 @@ default_keymap: tuple[tuple[KeySpec, CommandName], ...] = tuple(
(r"\<up>", "up"),
(r"\<down>", "down"),
(r"\<left>", "left"),
(r"\C-\<left>", "backward-word"),
(r"\<right>", "right"),
(r"\C-\<right>", "forward-word"),
(r"\<delete>", "delete"),
(r"\<backspace>", "backspace"),
(r"\M-\<backspace>", "backward-kill-word"),