fix(tui): resolve crash by removing --non-interactive and adding defensive rendering

This commit is contained in:
2026-05-01 18:16:55 -04:00
parent 48520ec517
commit 9191aecab2
7 changed files with 494 additions and 106 deletions

View File

@@ -0,0 +1,9 @@
(load (merge-pathnames "quicklisp/setup.lisp" (user-homedir-pathname)))
(ql:quickload :croatoan :silent t)
(handler-case
(croatoan:with-screen (scr)
(format t "Screen height: ~s~%" (croatoan:height scr))
(format t "Screen width: ~s~%" (croatoan:width scr))
(finish-output))
(error (c) (format t "Croatoan Error: ~a~%" c)))
(uiop:quit 0)