diff options
author | David Morgan <djm_uk@protonmail.com> | 2022-06-15 12:30:01 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2022-06-15 12:30:01 +0100 |
commit | 46fddc3108f0f2acd8304d69b1235ac7564ba53e (patch) | |
tree | b10b1b7c1b9fcb28944f7aef9aac9bd998b9adff /.emacs.d/lisp | |
parent | 0be50890ef39d3d654fe57016b68bd7b0e9dcdd8 (diff) | |
download | dotfiles-46fddc3108f0f2acd8304d69b1235ac7564ba53e.tar.gz |
Add binding for cider-find-dwim-other-window
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r-- | .emacs.d/lisp/init-clojure.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-clojure.el b/.emacs.d/lisp/init-clojure.el index aa61dad..6162709 100644 --- a/.emacs.d/lisp/init-clojure.el +++ b/.emacs.d/lisp/init-clojure.el @@ -54,7 +54,9 @@ (unbind-key "C-c C-l" cider-mode-map) :bind (:map cider-mode-map ("C-c M-l" . cider-load-file)) - (:map clojure-mode-map ("C-x p q" . project-clojure-test-switch)) + (:map clojure-mode-map + ("C-x p q" . project-clojure-test-switch) + ("C->" . cider-find-dwim-other-window)) :hook (cider-repl-mode . cider-repl-mode-hook-fn) (cider-mode . eldoc-mode)) |