diff options
author | David Morgan <djm_uk@protonmail.com> | 2022-06-23 08:09:10 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2022-06-23 08:09:10 +0100 |
commit | 37e29ad37fe253cbe732b56088f8fe654deb6495 (patch) | |
tree | 2250ca921ac4f39d23af17433774157d08895ee4 /.emacs.d | |
parent | eef83be24ecbf2add0cecc7b1f7cda9e628bbbfb (diff) | |
download | dotfiles-37e29ad37fe253cbe732b56088f8fe654deb6495.tar.gz |
Change persp-mode-prefix-key to C-c x
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/lisp/init-project.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.emacs.d/lisp/init-project.el b/.emacs.d/lisp/init-project.el index 3738775..ac88eab 100644 --- a/.emacs.d/lisp/init-project.el +++ b/.emacs.d/lisp/init-project.el @@ -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 |