From 0db6d1753e8fc43e2b3b7c7c49f328a733f4f539 Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Sun, 8 Sep 2024 11:58:49 +0200 Subject: [PATCH] ADD multipe-cursor keybindings --- config_new.org | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config_new.org b/config_new.org index c5dd757..d073aef 100644 --- a/config_new.org +++ b/config_new.org @@ -266,6 +266,12 @@ Workaround to enable eglot in all programming modes: #+BEGIN_SRC emacs-lisp (use-package multiple-cursors :ensure t + :bind + ("C-x r a" . mc/edit-beginnings-of-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