File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
### Bugs fixed
6
6
7
+ * [ #1153 ] ( https://github.com/clojure-emacs/cider/pull/1153 ) : Fix behavior of ` cider-switch-to-current-repl-buffer ` .
7
8
* [ #1139 ] ( https://github.com/clojure-emacs/cider/issues/1139 ) : Fix evaluation of ns forms and of forms with unevaluated namespaces.
8
9
* Replace ` assert ` with ` cl-assert ` (we don't use anything from ` cl ` now).
9
10
* [ #1135 ] ( https://github.com/clojure-emacs/cider/pull/1135 ) : Fix a corner case with locals display in the debugger.
Original file line number Diff line number Diff line change @@ -406,7 +406,9 @@ of the namespace in the Clojure source buffer."
406
406
(let ((buffer (current-buffer )))
407
407
(when (eq 4 arg)
408
408
(cider-repl-set-ns (cider-current-ns)))
409
- (pop-to-buffer (cider-get-repl-buffer))
409
+ (if cider-repl-display-in-current-window
410
+ (pop-to-buffer-same-window (cider-get-repl-buffer))
411
+ (pop-to-buffer (cider-get-repl-buffer)))
410
412
(cider-remember-clojure-buffer buffer)
411
413
(goto-char (point-max ))))
412
414
You can’t perform that action at this time.
0 commit comments