diff options
-rw-r--r-- | .emacs.d/lisp/init-clojure.el | 4 | ||||
-rw-r--r-- | .emacs.d/lisp/init-project.el | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.emacs.d/lisp/init-clojure.el b/.emacs.d/lisp/init-clojure.el index 2bfaf78..9775a52 100644 --- a/.emacs.d/lisp/init-clojure.el +++ b/.emacs.d/lisp/init-clojure.el @@ -215,11 +215,11 @@ (:map cider-repl-mode-map ("C-c M-b" . cider-interrupt)) (:map cider-start-map - ("C-c M-i" . cider-jack-in-and-run-main)) + ("C-c C-M-j" . cider-jack-in-and-run-main)) (:map clojure-mode-map ("C-c C-r C-m" . run-main) ("C-c C-r C-d" . load-debug-namespaces) - ("C-c M-i" . cider-jack-in-and-run-main) + ("C-c C-M-j" . cider-jack-in-and-run-main) ("C-x p q" . project-clojure-test-switch) ("C-c C-M-c" . (lambda () (interactive) (cider-clear-compilation-highlights t))) ("C-c C->" . cider-find-dwim) diff --git a/.emacs.d/lisp/init-project.el b/.emacs.d/lisp/init-project.el index 56c2ab1..6387f05 100644 --- a/.emacs.d/lisp/init-project.el +++ b/.emacs.d/lisp/init-project.el @@ -136,7 +136,7 @@ mode as the current buffer (or do nothing)." :bind ("C-x p p" . switch-project) - ("C-c C-M-j" . persp-switch-to-previous-buffer) + ("C-c C-M-b" . persp-switch-to-previous-buffer) ("C-x C-b" . persp-previous-buffer-same-mode) ("C-x 4 C-b" . persp-previous-buffer-same-mode-other-window) ("C-x C-S-b" . persp-switch-buffer-same-mode) |