summaryrefslogtreecommitdiff
path: root/lisp/init-keymaps.el
blob: eb1db41cf2fc5a372f595a953e8b1c4b30bf3971 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(define-prefix-command 'replace-map)
(global-set-key (kbd "C-c r") 'replace-map)

(define-prefix-command 'kill-map)
(global-set-key (kbd "C-c k") 'kill-map)

(define-prefix-command 'insert-map)
(global-set-key (kbd "C-c i") 'insert-map)

;; multiple cursors
;; Put under insert prefix.
(define-prefix-command 'multiple-cursors-map)
(define-key insert-map "m" 'multiple-cursors-map)

(define-prefix-command 'external-map)
(global-set-key (kbd "C-c x") 'external-map)

(provide 'init-keymaps)