Skip to content

Commit

Permalink
Allow to send input to the repl via RET in normal mode
Browse files Browse the repository at this point in the history
  • Loading branch information
kommen authored and d12frosted committed Oct 23, 2018
1 parent a0db651 commit 8f30ba8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion layers/+lang/clojure/packages.el
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@

(evil-define-key 'normal cider-repl-mode-map
(kbd "C-j") 'cider-repl-next-input
(kbd "C-k") 'cider-repl-previous-input)
(kbd "C-k") 'cider-repl-previous-input
(kbd "RET") 'cider-repl-return)

(evil-define-key 'insert cider-repl-mode-map
(kbd "C-j") 'cider-repl-next-input
Expand Down

0 comments on commit 8f30ba8

Please sign in to comment.