From 4c44c94c0d36f5d0dbfe3cb04c31e350186249d2 Mon Sep 17 00:00:00 2001 From: cage Date: Tue, 27 Feb 2024 18:43:33 +0100 Subject: [PATCH] - [TUI] fixed name of backspace keycode when parsing 'command' events.. --- src/command-window.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command-window.lisp b/src/command-window.lisp index d33fd87..f70d4f8 100644 --- a/src/command-window.lisp +++ b/src/command-window.lisp @@ -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