1
0
Fork 0

- [TUI] fixed name of backspace keycode when parsing 'command' events..

This commit is contained in:
cage 2024-02-27 18:43:33 +01:00
parent c4fbc8f997
commit 4c44c94c0d
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ be either `:keybinding' or `:string'. the former for key command the latter for
(move-suggestion-page-left command-window))
((eq :control-right decoded-event) ; suggestion win pagination
(move-suggestion-page-right command-window))
((eq :backspace decoded-event) ; delete last command or char
((eq :key-backspace decoded-event) ; delete last command or char
(let ((command-before-last (safe-all-but-last-elt command-line)))
(setf command-line nil)
(cond