fix(multiple-cursors): keybinds for {next,last}-cursor

This commit is contained in:
Michael Chen 2022-03-19 08:12:30 -07:00 committed by GitHub
parent 8e08c651a6
commit a505eae88f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -155,9 +155,9 @@
(map! :map evil-mc-key-map (map! :map evil-mc-key-map
:nv "g." nil :nv "g." nil
:nv "C-n" #'evil-mc-make-and-goto-next-cursor :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-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 (after! multiple-cursors-core