You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is due to the following piece of configuration in init.el, which does not account for C-c M-J (only C-c M-j):
;;; Don't focus the cursor in the CIDER REPL once it starts. Since the
;;; REPL takes so long to start up, especially for large projects, you
;;; either have to wait for a minute without doing anything or be
;;; prepared for your cursur to suddenly shift buffers without warning
;;; sometime in the near future. This is annoying, so turn off the
;;; behavior.
(setq cider-repl-pop-to-buffer-on-connect nil)
;;; However, turning off the pop-to-buffer setting also prevents the
;;; REPL buffer from *opening*. To fix this problem, we add an advice
;;; to open the REPL buffer after the REPL has started.
(defadvice cider-repl-init (after display-repl-buffer)
(display-buffer buffer))
It should be adjusted to additionally show the CLJS REPL buffer, if one exists.
The text was updated successfully, but these errors were encountered:
This is due to the following piece of configuration in
init.el
, which does not account forC-c M-J
(onlyC-c M-j
):It should be adjusted to additionally show the CLJS REPL buffer, if one exists.
The text was updated successfully, but these errors were encountered: