Add editor CSI handler for VT220's 8-bit CSI character

This commit is contained in:
John Lorentzson 2025-07-15 18:40:03 +02:00
parent 17560c4b78
commit 7e0dbb791e

View file

@ -709,6 +709,8 @@ Additionally ensures correct line numbers on the way, as a bonus."
(ctrl first-byte)) (ctrl first-byte))
((= first-byte #x1B) ((= first-byte #x1B)
(esc (read-byte *eio*))) (esc (read-byte *eio*)))
((= first-byte #x9B)
(csi-handler))
(t first-byte)))) (t first-byte))))
(defun editor-take-command () (defun editor-take-command ()