diff options
author | 2018-12-23 17:53:45 -0500 | |
---|---|---|
committer | 2018-12-23 17:53:45 -0500 | |
commit | 64e429b5d6faf5ae87a832153347d261b8d03583 (patch) | |
tree | a11959e8b606ce50773838b4cf8c177202d318c7 /init.org | |
parent | 0884b63b028514ff55208af9020e0dce5700e802 (diff) | |
download | configs-64e429b5d6faf5ae87a832153347d261b8d03583.tar.gz configs-64e429b5d6faf5ae87a832153347d261b8d03583.tar.xz configs-64e429b5d6faf5ae87a832153347d261b8d03583.zip |
[emacs] Assimilate multiple-cursors 1.4.0-47-g6a7c3c0
Diffstat (limited to 'init.org')
-rw-r--r-- | init.org | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -1893,7 +1893,16 @@ Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]]. :bind ("C-=" . er/expand-region)) #+end_src -** TODO multiple-cursors +** multiple-cursors + +#+begin_src emacs-lisp +(use-package multiple-cursors + :bind (("C-c M c" . mc/edit-lines) + ("C-c M n" . mc/mark-next-like-this) + ("C-c M p" . mc/mark-previous-like-this) + ("C-c M a" . mc/mark-all-like-this) + ("C-S-<mouse-1>" . mc/add-cursor-on-click))) +#+end_src * Email :PROPERTIES: @@ -1916,7 +1925,6 @@ Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]]. (use-package gnus :bind (("C-c m" . gnus) - ("C-c M" . gnus-unplugged) ("s-m" . gnus) ("s-M" . gnus-unplugged)) :init |