From 314dd4aad6cc303c3256d24e7489f6a82c9daf71 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Thu, 12 Mar 2026 13:08:07 +0000 Subject: [PATCH] Add multiple-cursors config --- config.org | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/config.org b/config.org index 1fa4513..98e66b8 100644 --- a/config.org +++ b/config.org @@ -399,6 +399,18 @@ (setq org-adapt-indentation t) #+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 ** Generic Generally, 8-character-wide tabs are not my thing.