Add Ctrl bindings for forward and backward word commands

This commit is contained in:
John Lorentzson 2025-07-31 11:50:52 +02:00
parent 84ddb747aa
commit 5af2ed3f2a

View file

@ -936,7 +936,9 @@ Additionally ensures correct line numbers on the way, as a bonus."
((:c . #\n) com-new-buffer)
((:c . #\l) com-refresh-screen)
((:m . #\f) com-forward-word)
((:m . #\b) com-backward-word)))
((:c . #\w) com-forward-word)
((:m . #\b) com-backward-word)
((:c . #\q) com-backward-word)))
(defun key-command-dispatch (key)
(when (numberp key)