From 02dbcc8ffbdfe73d7e1923d8be8e68cfe44aa1ed Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Wed, 2 Oct 2013 07:52:17 +0100 Subject: Emacs: Load multiple-cursors eagerly --- emacs/init.el | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'emacs/init.el') diff --git a/emacs/init.el b/emacs/init.el index 618e718b..546d494c 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-" . mc/mark-all-like-this-dwim) - ("C-" . 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-" #'mc/mark-all-like-this-dwim) + (bind-key "C-" #'mc/mark-more-like-this-extended) + (bind-key "C-S-L" #'mc/edit-lines))) (use-package eldoc :defer t -- cgit 1.4.1