From 2c93f5313bbbf7396556381988e4bd21d665b51f Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Wed, 1 Aug 2018 16:20:25 +0200 Subject: [PATCH] [Init] New keybindings for multiple-cursors --- init.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.el b/init.el index 0a00714..32d3b67 100644 --- a/init.el +++ b/init.el @@ -170,6 +170,8 @@ (bind-key "C-;" #'iedit-mode) (bind-key "C-<" #'mc/mark-previous-like-this) (bind-key "C->" #'mc/mark-next-like-this) + (bind-key "C-." #'mc/skip-to-next-like-this) + (bind-key "C-," #'mc/skip-to-previous-like-this) (bind-key "C-@" #'er/expand-region) (bind-key "C-M-\\" #'crux-cleanup-buffer-or-region) (bind-key "C-S-c C-S-c" #'mc/edit-lines)