-
-
Notifications
You must be signed in to change notification settings - Fork 8
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
Desactivating quit/exit at the REPL if desired #15
Comments
Hey @jf7t2gd1n , That feature has been implemented like a couple of months ago. See #12 for more details. What version of |
Thanks for your response. I am using version 0.5.0 . In /src/utils.lisp, it seems it checks for Sly or Slime. I am using the REPL and the command line (not through Sly or Slime). |
Yep, currently it only works for Slime or Sly, as that's usually the way people interact with the REPL :) Out of curiosity why do you use REPL from the command line instead of Sly/Slime? |
I use quite a lot the terminal, and sometimes I do not get to launch emacs. |
Currently the Thanks! |
Thanks for asking. I am not an expert to propose the best way to do it. For me, I think it would suffice something like a global variable that could be set to desactivate quit/exit when launching clingon:run . Or perhaps an optional or a key argument could be added to clingon:run to address that ?? |
Hi, you could probably cheat and add the (defun main ()
(let ((*features* (push :swank *features*)))
(clingon:run my-app))) or simply
|
Yes, thanks. |
Thanks for your interesting system.
When working at the REPL I would like sometimes to call clingon:run but desactivating exit (so I continue to be at the REPL) if desired. I did not find the way to do it experimenting with the features of clingon.
If that option is not present and you think it makes sense, could it be added?
Thanks. Best regards.
The text was updated successfully, but these errors were encountered: