From 5fdf2b7e9eff2841512da60f188c2183a41173df Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Fri, 16 Sep 2016 18:35:20 +0200 Subject: [PATCH] Add multiple-cursors settings --- init.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init.el b/init.el index 7cb577f..ce766e0 100644 --- a/init.el +++ b/init.el @@ -346,3 +346,9 @@ Version 2016-02-16" (setq projectile-completion-system 'helm) (helm-projectile-on) (global-git-gutter-mode t) + +(require 'multiple-cursors) +(global-set-key (kbd "C-S-c C-S-c") 'mc/edit-lines) +(global-set-key (kbd "C->") 'mc/mark-next-like-this) +(global-set-key (kbd "C-<") 'mc/mark-previous-like-this) +(global-set-key (kbd "C-c C-<") 'mc/mark-all-like-this)