multiple-cursors: Configure multiple cursors

To be able to have multiple cursors at once install the package and
configure it rudimentarily.
This commit is contained in:
finga 2024-09-04 08:41:12 +02:00
parent 7f78d9a9a3
commit 78ee3d7747
3 changed files with 9 additions and 0 deletions

View file

@ -0,0 +1,7 @@
(use-package multiple-cursors
:ensure t
:bind
("C-c m" . mc/mark-more-like-this-extended)
("C-c a" . mc/edit-lines)
("C->" . mc/mark-next-like-this)
("C-<" . mc/mark-previous-like-this))