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 @@ -98,6 +98,7 @@ when in buffer that's not visiting a file (e.g. a REPL buffer).
98
98
* The error buffer no longer pops up when there is no error to display.
99
99
* ` cider-find-resource ` now correctly throws an error when no path is provided.
100
100
* [ #946 ] ( https://github.com/clojure-emacs/cider/issues/946 ) : ` cider-stacktrace-mode ` is now enabled before the error buffer is displayed.
101
+ * [ #1077 ] ( https://github.com/clojure-emacs/cider/issues/1077 ) : Respect ` cider-repl-display-in-current-window ` in ` cider-switch-to-last-clojure-buffer ` .
101
102
102
103
## 0.8.2 / 2014-12-21
103
104
Original file line number Diff line number Diff line change @@ -487,7 +487,9 @@ Clojure buffer and the REPL buffer."
487
487
(interactive )
488
488
(if (and (derived-mode-p 'cider-repl-mode )
489
489
(buffer-live-p cider-last-clojure-buffer))
490
- (pop-to-buffer cider-last-clojure-buffer)
490
+ (if cider-repl-display-in-current-window
491
+ (switch-to-buffer cider-last-clojure-buffer nil t )
492
+ (pop-to-buffer cider-last-clojure-buffer))
491
493
(message " Don't know the original Clojure buffer " )))
492
494
493
495
(defun cider-find-and-clear-repl-buffer ()
You can’t perform that action at this time.
0 commit comments