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:
parent
7f78d9a9a3
commit
78ee3d7747
3 changed files with 9 additions and 0 deletions
7
.emacs.d/config/multiple-cursors.el
Normal file
7
.emacs.d/config/multiple-cursors.el
Normal 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))
|
Loading…
Add table
Add a link
Reference in a new issue