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))
|
|
@ -66,6 +66,7 @@ symbols, which are converted to strings, and suffixed with \".el\"."
|
|||
git
|
||||
gpg
|
||||
man
|
||||
multiple-cursors
|
||||
org
|
||||
pass
|
||||
python
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
!/.emacs.d/config/git.el
|
||||
!/.emacs.d/config/gpg.el
|
||||
!/.emacs.d/config/man.el
|
||||
!/.emacs.d/config/multiple-cursors.el
|
||||
!/.emacs.d/config/org.el
|
||||
!/.emacs.d/config/pass.el
|
||||
!/.emacs.d/config/python.el
|
||||
|
|
Loading…
Reference in a new issue