Open sebasmonia opened 5 years ago
I lifted this code from somewhere to stop cmd.exe using M-x shell from echoing commands back to me:
(defun hoagie-comint-init () (setq comint-process-echoes t)) (add-hook 'comint-mode-hook #'hoagie-comint-init)
It worked! but then Sly's REPL didn't respond after my input until I pressed C-g. Using toggle-debug-on-quit it seems that the code is waiting for output. But I suspected this has more to do with Slynk not getting my input.
C-g
toggle-debug-on-quit
ACK. You probably should have set that variable just for shell-mode, but SLY could/should also override for sly-mrepl.el
shell-mode
I lifted this code from somewhere to stop cmd.exe using M-x shell from echoing commands back to me:
It worked! but then Sly's REPL didn't respond after my input until I pressed
C-g
. Usingtoggle-debug-on-quit
it seems that the code is waiting for output. But I suspected this has more to do with Slynk not getting my input.