summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2013-10-02 07:52:17 +0100
committerAlan Pearce2013-10-02 07:52:17 +0100
commit02dbcc8ffbdfe73d7e1923d8be8e68cfe44aa1ed (patch)
treeb45f3fc9f509cce207b46128d227a662add02fa5 /emacs
parent6a418f791a153951437596103c7695edae2474e9 (diff)
downloaddotfiles-02dbcc8ffbdfe73d7e1923d8be8e68cfe44aa1ed.tar.lz
dotfiles-02dbcc8ffbdfe73d7e1923d8be8e68cfe44aa1ed.tar.zst
dotfiles-02dbcc8ffbdfe73d7e1923d8be8e68cfe44aa1ed.zip
Emacs: Load multiple-cursors eagerly
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el11
1 files changed, 6 insertions, 5 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 618e718..546d494 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -910,11 +910,12 @@ Also returns nil if pid is nil."
 
 (use-package multiple-cursors
   :ensure t
-  :bind (("C-." . mc/mark-next-like-this)
-         ("C-," . mc/mark-previous-like-this)
-         ("M-<f3>" . mc/mark-all-like-this-dwim)
-         ("C-<f3>" . mc/mark-more-like-this-extended)
-         ("C-S-L" . mc/edit-lines)))
+  :config (progn
+            (bind-key "C-." #'mc/mark-next-like-this)
+            (bind-key "C-," #'mc/mark-previous-like-this)
+            (bind-key "M-<f3>" #'mc/mark-all-like-this-dwim)
+            (bind-key "C-<f3>" #'mc/mark-more-like-this-extended)
+            (bind-key "C-S-L" #'mc/edit-lines)))
 
 (use-package eldoc
   :defer t