- :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))))