File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 11
11
* [ #1459 ] ( https://github.com/clojure-emacs/cider/issues/1459 ) : Add support for dynamic dispatch in scratch buffers.
12
12
* [ #1466 ] ( https://github.com/clojure-emacs/cider/issues/1466 ) : Correctly font-lock pretty-printed results in the REPL.
13
13
* [ #1475 ] ( https://github.com/clojure-emacs/cider/pull/1475 ) : Fix ` args-out-of-range ` error in ` cider--get-symbol-indent ` .
14
+ * [ #1479 ] ( https://github.com/clojure-emacs/cider/pull/1479 ) : Make paredit and ` cider-repl-mode ` play nice.
14
15
15
16
## 0.10.0 / 2015-12-03
16
17
Original file line number Diff line number Diff line change @@ -1231,7 +1231,7 @@ constructs."
1231
1231
(cider-repl-history-load cider-repl-history-file)
1232
1232
(add-hook 'kill-buffer-hook #'cider-repl-history-just-save t t )
1233
1233
(add-hook 'kill-emacs-hook #'cider-repl-history-just-save ))
1234
- (add-hook 'paredit-mode-hook # ' clojure-paredit-setup ))
1234
+ (add-hook 'paredit-mode-hook ( lambda () ( clojure-paredit-setup cider-repl-mode-map)) ))
1235
1235
1236
1236
(provide 'cider-repl )
1237
1237
You can’t perform that action at this time.
0 commit comments