all repos — nixfiles @ 02dbcc8ffbdfe73d7e1923d8be8e68cfe44aa1ed

System and user configuration, managed by nix and home-manager

Emacs: Load multiple-cursors eagerly
Alan Pearce alan@alanpearce.co.uk
Wed, 02 Oct 2013 07:52:17 +0100
commit

02dbcc8ffbdfe73d7e1923d8be8e68cfe44aa1ed

parent

6a418f791a153951437596103c7695edae2474e9

1 files changed, 6 insertions(+), 5 deletions(-)

jump to
M emacs/init.elemacs/init.el
@@ -910,11 +910,12 @@ :bind ("C-x SPC" . goto-last-change)) 
 (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