Change persp-mode-prefix-key to C-c x

This commit is contained in:
David Morgan 2022-06-23 08:09:10 +01:00
parent eef83be24e
commit 37e29ad37f
1 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@
(use-package perspective
;; Don't restart persp-mode when re-evaluating, as it clears the current persp list
:init (or persp-mode (persp-mode))
:custom (persp-mode-prefix-key (kbd "C-c p"))
:custom (persp-mode-prefix-key (kbd "C-c x"))
:config
;; Based on jao-buffer-same-mode (https://jao.io/blog/2021-09-08-high-signal-to-noise-emacs-command.html)
(defun persp-switch-buffer-same-mode ()
@ -129,8 +129,8 @@ 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 x" . persp-switch-last)
("C-c p ." . persp-switch-quick))
("C-c x x" . persp-switch-last)
("C-c x ." . persp-switch-quick))
(provide 'init-project)
;;; init-project.el ends here