From adf8818558ebe95826d6c0f559c8fc9dedb12ed4 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 11 Mar 2014 00:21:54 +0000 Subject: [PATCH] Improve multiple-cursors keybindings --- keybindings.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/keybindings.el b/keybindings.el index d0ec82c..ca46dfd 100644 --- a/keybindings.el +++ b/keybindings.el @@ -122,11 +122,13 @@ ;; multiple-cursors (when (require 'multiple-cursors nil 'noerror) - (global-set-key (kbd "C-S-c C-S-c") 'mc/edit-lines) + (global-set-key (kbd "C-x C-@") 'mc/edit-lines) ;; Terminal + (global-set-key (kbd "C-x C-SPC") 'mc/edit-lines) ;; GUI (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) - (global-set-key (kbd "M-") 'set-rectangular-region-anchor)) + (global-set-key (kbd "M-") 'set-rectangular-region-anchor) +) ;; projectile related keybindings (when (require 'projectile nil 'noerror)