From 20fbe96f31a845019b83ca91bec2631fd6da0e73 Mon Sep 17 00:00:00 2001 From: 10sr <8.slashes@gmail.com> Date: Sun, 17 Mar 2019 21:41:05 +0900 Subject: [PATCH] Use C-^ for my-prefix-map --- emacs.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emacs.el b/emacs.el index 6e42f1d..368e9c1 100644 --- a/emacs.el +++ b/emacs.el @@ -238,7 +238,7 @@ found, otherwise returns nil." (defvar my-prefix-map nil "My prefix map.") (define-prefix-command 'my-prefix-map) -;; (define-key ctl-x-map (kbd "C-x") 'my-prefix-map) +(global-set-key (kbd "C-^") 'my-prefix-map) ;; (define-key my-prefix-map (kbd "C-q") 'quoted-insert) ;; (define-key my-prefix-map (kbd "C-z") 'suspend-frame) @@ -979,7 +979,7 @@ found, otherwise returns nil." (lambda () (setq imenu-generic-expression `(("Sections" ";;;\+\n;; \\(.*\\)\n" 1) - ,@imenu-generic-expression)))) + ,@imenu-generic-expression)))) (with-eval-after-load 'compile (defvar compilation-filter-start)