v0.8.0: use exported text-input symbols (remove :: access)
Some checks failed
Deploy (Gitea) / deploy (push) Failing after 2m1s

This commit is contained in:
2026-05-18 15:59:02 -04:00
parent ab8ffb6a64
commit f783b45ac7

View File

@@ -346,10 +346,10 @@ Adds any missing keys with defaults to handle saved themes from older versions."
(cl-tty.input:text-input-value (st :text-input)))
(defun input-insert-char (ch)
(cl-tty.input::text-input-insert (st :text-input) ch))
(cl-tty.input:text-input-insert (st :text-input) ch))
(defun input-delete-char ()
(cl-tty.input::text-input-backspace (st :text-input)))
(cl-tty.input:text-input-backspace (st :text-input)))
(defun add-msg (role content &key gate-trace panel)
(vector-push-extend (list :role role :content content :time (now) :gate-trace gate-trace :panel panel) (st :messages))