Skip to content

Commit e3dea09

Browse files
bbatsovcap10morgan
authored andcommitted
[Fix #1479] Make paredit and cider-repl-mode play nice
1 parent 723c335 commit e3dea09

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
* [#1459](https://github.com/clojure-emacs/cider/issues/1459): Add support for dynamic dispatch in scratch buffers.
1212
* [#1466](https://github.com/clojure-emacs/cider/issues/1466): Correctly font-lock pretty-printed results in the REPL.
1313
* [#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.
1415

1516
## 0.10.0 / 2015-12-03
1617

cider-repl.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1231,7 +1231,7 @@ constructs."
12311231
(cider-repl-history-load cider-repl-history-file)
12321232
(add-hook 'kill-buffer-hook #'cider-repl-history-just-save t t)
12331233
(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))))
12351235

12361236
(provide 'cider-repl)
12371237

0 commit comments

Comments
 (0)