File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 19
19
* Fix value and safe property for ` cider-allow-jack-in-without-project ` variable.
20
20
* ` cider-ns-save-files-on-refresh ` will now save any modified buffers visiting files on the classpath, rather than just in the current project.
21
21
* ` cider-expected-ns ` no longer requires an absolute path as its argument, and now internally handles paths canonically and consistently.
22
+ * Fixed a bug causing REPL output to be inserted after the prompt.
22
23
23
24
## 0.20.0 (2019-01-14)
24
25
Original file line number Diff line number Diff line change @@ -681,7 +681,8 @@ If BOL is non-nil insert at the beginning of line. Run
681
681
" Using BUFFER, emit STRING font-locked with FACE.
682
682
If BOL is non-nil, emit at the beginning of the line."
683
683
(with-current-buffer buffer
684
- (cider-repl--emit-output-at-pos buffer string face cider-repl-input-start-mark bol)))
684
+ (let ((pos (cider-repl--end-of-output)))
685
+ (cider-repl--emit-output-at-pos buffer string face pos bol))))
685
686
686
687
(defun cider-repl-emit-stdout (buffer string )
687
688
" Using BUFFER, emit STRING as standard output."
You can’t perform that action at this time.
0 commit comments