From 1ab8dbb818ed9d87afcee22423d628be2c13a33a Mon Sep 17 00:00:00 2001 From: John Lorentzson Date: Tue, 29 Jul 2025 20:24:45 +0200 Subject: [PATCH] Add TODO in editor about terminal commands in need of replacing --- editor/editor.lisp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/editor/editor.lisp b/editor/editor.lisp index be805ff..6671ea7 100644 --- a/editor/editor.lisp +++ b/editor/editor.lisp @@ -158,6 +158,9 @@ serial connection the editor normally runs under.") (write-byte #x1B *eio*) (format *eio* "[1;24r")))) +;; OOPS! The scrolling commands just don't exist on the VT220! +;; TODO: Replace them! + (defun scroll-screen-down (&optional (amount 1)) (write-byte #x1B *eio*) (write-char #\[ *eio*)