projects
/
~bandali
/
configs
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
64e429b
)
[emacs] use the C-c m prefix for multiple-cursors
author
Amin Bandali
<bandali@gnu.org>
Sun, 23 Dec 2018 23:52:15 +0000
(18:52 -0500)
committer
Amin Bandali
<bandali@gnu.org>
Mon, 24 Dec 2018 00:08:23 +0000
(19:08 -0500)
init.org
patch
|
blob
|
blame
|
history
diff --git
a/init.org
b/init.org
index
536e25d
..
4c6b9cb
100644
(file)
--- a/
init.org
+++ b/
init.org
@@
-1897,11
+1897,14
@@
Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]].
#+begin_src emacs-lisp
(use-package 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)))
+ :bind
+ (("C-S-<mouse-1>" . mc/add-cursor-on-click)
+ (:prefix-map a/mc-prefix-map
+ :prefix "C-c m"
+ ("c" . mc/edit-lines)
+ ("n" . mc/mark-next-like-this)
+ ("p" . mc/mark-previous-like-this)
+ ("a" . mc/mark-all-like-this))))
#+end_src
* Email
#+end_src
* Email
@@
-1924,8
+1927,7
@@
Also see [[https://www.emacswiki.org/emacs/rebox2][rebox2]].
read-mail-command 'gnus)
(use-package gnus
read-mail-command 'gnus)
(use-package gnus
- :bind (("C-c m" . gnus)
- ("s-m" . gnus)
+ :bind (("s-m" . gnus)
("s-M" . gnus-unplugged))
:init
(setq
("s-M" . gnus-unplugged))
:init
(setq