diff --git a/CHANGELOG.md b/CHANGELOG.md index 260cb5b21..4792e29ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,8 @@ - Remove needless quotes from the choices of `cider-jack-in-auto-inject-clojure`. - [#2561](https://github.com/clojure-emacs/cider/issues/2561): Disable undo in `*cider-test-report*` buffers. - [#3251](https://github.com/clojure-emacs/cider/pull/3251): Disable undo in `*cider-stacktrace*` buffers. -- Consecutive overlays will not be spuriously deleted. +- Consecutive overlays will not be spuriously deleted. +- [#3260](https://github.com/clojure-emacs/cider/pull/3260): Scroll REPL buffer in other frame. ## 1.5.0 (2022-08-24) diff --git a/cider-mode.el b/cider-mode.el index 5888d7908..fc9a6ce89 100644 --- a/cider-mode.el +++ b/cider-mode.el @@ -229,7 +229,7 @@ If EVAL is non-nil the form will also be evaluated. Use (when cider-switch-to-repl-on-insert (cider-switch-to-repl-buffer)) (let ((repl (cider-current-repl))) - (with-selected-window (or (get-buffer-window repl) + (with-selected-window (or (get-buffer-window repl t) (selected-window)) (with-current-buffer repl (goto-char (point-max))