Add multiple-cursors config

This commit is contained in:
2026-03-12 13:08:07 +00:00
parent e154958555
commit 314dd4aad6

View File

@@ -399,6 +399,18 @@
(setq org-adapt-indentation t) (setq org-adapt-indentation t)
#+end_src #+end_src
* Multiple Cursors
I have been converted by Tsoding.
#+begin_src emacs-lisp
(use-package multiple-cursors
:config
(global-set-key (kbd "C-S-c C-S-c") 'mc/edit-lines)
(global-set-key (kbd "C->") 'mc/mark-next-like-this)
(global-set-key (kbd "C-<") 'mc/mark-previous-like-this)
(global-set-key (kbd "C-c C-<") 'mc/mark-all-like-this))
#+end_src
* Language Integrations * Language Integrations
** Generic ** Generic
Generally, 8-character-wide tabs are not my thing. Generally, 8-character-wide tabs are not my thing.