-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to use? #9
Comments
@jcguu95 To verify things are working you can use cl-ansi-text, which is what prove used to colorize its output if (ql:quickload "cl-ansi-text")
(cl-ansi-text:with-color (:green) (format t "hello world")) However I haven't used this package since I discovered that xterm-color covers the sly-mrepl (which is based in comint-mode) and more! I recommend you use that instead. This should be enough to get sly-mrepl to understand terminal colors: (require 'xterm-color)
(add-hook 'comint-preoutput-filter-functions 'xterm-color-filter t)
(setq comint-output-filter-functions
(remove 'ansi-color-process-output comint-output-filter-functions)) |
Thank you!
I will take a look at |
I'm not sure how to use it effectively. I think I set everything up, but the following still didn't work:
It emits the escape code to the standard output (repl).
The text was updated successfully, but these errors were encountered: