about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-05-31 09:31:41 +0100
committerDavid Morgan <djm_uk@protonmail.com>2022-05-31 09:31:41 +0100
commit442d1519e3bc27d962eb83305fb5b51f909322ed (patch)
treec6f95d1b25d31fb29ea64217af9673011778d7fe
parentbcff3e390f395ab7b03987af22cbe2d11eb3f1c5 (diff)
downloaddotfiles-442d1519e3bc27d962eb83305fb5b51f909322ed.tar.gz
Fix persp-switch-last/prev binding clash
-rw-r--r--.emacs.d/lisp/init-project.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-project.el b/.emacs.d/lisp/init-project.el
index 6877626..3738775 100644
--- a/.emacs.d/lisp/init-project.el
+++ b/.emacs.d/lisp/init-project.el
@@ -129,7 +129,7 @@ mode as the current buffer (or do nothing)."
   ("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)
-  ("C-c p p" . persp-switch-last)
+  ("C-c p x" . persp-switch-last)
   ("C-c p ." . persp-switch-quick))
 
 (provide 'init-project)