about summary refs log tree commit diff stats
path: root/.emacs.d
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2024-07-18 08:20:31 +0100
committerDavid Morgan <djm_uk@protonmail.com>2024-07-18 08:20:31 +0100
commitbdead0bb957c40d08b4894ea7c819364c72e4c3a (patch)
tree438096ecf51f957ba4fe5d805aa637f954655a4f /.emacs.d
parentc09daad766d6083f40443058b1e11a4606483e57 (diff)
downloaddotfiles-bdead0bb957c40d08b4894ea7c819364c72e4c3a.tar.gz
Change cider-jack-in-and-run-main binding
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/lisp/init-clojure.el4
-rw-r--r--.emacs.d/lisp/init-project.el2
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)