finga
78ee3d7747
To be able to have multiple cursors at once install the package and configure it rudimentarily.
7 lines
199 B
EmacsLisp
7 lines
199 B
EmacsLisp
(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))
|