Created
November 20, 2014 17:13
-
-
Save keslerm/c69c58835ba70ad06257 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defvar multiple-cursors-packages | |
'( | |
multiple-cursors | |
) | |
"List of all packages to install and/or initialize. Built-in packages | |
which require an initialization must be listed explicitly in the list.") | |
(defvar multiple-cursors/init-multiple-cursors () | |
(use-package multiple-cursors | |
:config | |
(define-key mc/edit-lines (kbd "C-S-c C-S-c") nil) | |
(define-key mc/mark-next-like-this (kbd "C->") nil) | |
(define-key mc/mark-previous-like-this (kbd "C-<") nil) | |
(define-key mc/mark-all-like-this (kbd "C-c C-<") nil) | |
)) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment