From 64de7f64e5629db2628ad8928299b0b8b83ebab7 Mon Sep 17 00:00:00 2001 From: John Lorentzson Date: Thu, 31 Jul 2025 22:14:26 +0200 Subject: [PATCH] Bind delete key to forward delete --- editor/editor.lisp | 1 + 1 file changed, 1 insertion(+) diff --git a/editor/editor.lisp b/editor/editor.lisp index 3a47eb8..51a581a 100644 --- a/editor/editor.lisp +++ b/editor/editor.lisp @@ -1066,6 +1066,7 @@ Additionally ensures correct line numbers on the way, as a bonus." ((:c . #\i) com-indent-line) ((:c . #\u) com-unindent-line) ((:c . #\d) com-forward-delete) + (:delete com-forward-delete) ((:c . #\k) com-kill-line) ((:c . #\j) com-newline) ((:c . #\n) com-new-buffer)