Add multiple cursors section

This commit is contained in:
laurensmiers 2018-06-12 22:15:57 +02:00
parent 6325892938
commit 98b1dfc7ca
2 changed files with 16 additions and 10 deletions

View file

@ -551,6 +551,22 @@ To be fair, I didn't test this in a while...
)
#+END_SRC
* Mutliple cursors
https://github.com/magnars/multiple-cursors.el
#+BEGIN_SRC emacs-lisp
(use-package multiple-cursors
:ensure t
:bind
("C-x r a" . mc/edit-lines)
("C-x r e" . mc/edit-ends-of-lines)
("C->" . mc/mark-next-like-this)
("C-<" . mc/mark-previous-like-this)
("C-c C->" . mc/mark-all-like-this)
)
#+END_SRC
* Old stuff, maybe usefull for lookup later
** Diff mode stuff