From a505eae88f495fb69674807d970f52865ac4fc03 Mon Sep 17 00:00:00 2001 From: Michael Chen Date: Sat, 19 Mar 2022 08:12:30 -0700 Subject: [PATCH] fix(multiple-cursors): keybinds for {next,last}-cursor --- modules/editor/multiple-cursors/config.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/editor/multiple-cursors/config.el b/modules/editor/multiple-cursors/config.el index fd411041f..105bdfc8b 100644 --- a/modules/editor/multiple-cursors/config.el +++ b/modules/editor/multiple-cursors/config.el @@ -155,9 +155,9 @@ (map! :map evil-mc-key-map :nv "g." nil :nv "C-n" #'evil-mc-make-and-goto-next-cursor - :nv "C-N" #'evil-mc-make-and-goto-last-cursor + :nv "C-S-n" #'evil-mc-make-and-goto-last-cursor :nv "C-p" #'evil-mc-make-and-goto-prev-cursor - :nv "C-P" #'evil-mc-make-and-goto-first-cursor)) + :nv "C-S-p" #'evil-mc-make-and-goto-first-cursor)) (after! multiple-cursors-core