mirror of
https://github.com/magnars/multiple-cursors.el.git
synced 2025-10-14 05:13:05 +00:00
Updated README.
This commit is contained in:
parent
294d574862
commit
8bc7916841
10
README.md
10
README.md
@ -24,6 +24,10 @@ keywords in the buffer, use:
|
|||||||
|
|
||||||
First mark the word, then add more cursors.
|
First mark the word, then add more cursors.
|
||||||
|
|
||||||
|
To get out of multiple-cursors-mode, press `<return>` or `C-g`. The latter will
|
||||||
|
first disable multiple regions before disabling multiple cursors. If you want to
|
||||||
|
insert a newline in multiple-cursors-mode, use `C-j`.
|
||||||
|
|
||||||
|
|
||||||
## More commands to play around with
|
## More commands to play around with
|
||||||
|
|
||||||
@ -54,10 +58,6 @@ Okay, yes, I have a crazy norwegian keyboard. Regardless, these will look at
|
|||||||
whatever you've got selected at the moment, and mark more places like that in
|
whatever you've got selected at the moment, and mark more places like that in
|
||||||
the buffer.
|
the buffer.
|
||||||
|
|
||||||
To get out of multiple-cursors-mode, press `<return>` or `C-g`. The latter will
|
|
||||||
first disable multiple regions before disabling multiple cursors. If you want to
|
|
||||||
insert a newline in multiple-cursors-mode, use `C-j`.
|
|
||||||
|
|
||||||
BTW, I highly recommend adding `mc/mark-next-like-this` to a key binding that's
|
BTW, I highly recommend adding `mc/mark-next-like-this` to a key binding that's
|
||||||
right next to the key for `er/expand-region`.
|
right next to the key for `er/expand-region`.
|
||||||
|
|
||||||
@ -66,7 +66,7 @@ right next to the key for `er/expand-region`.
|
|||||||
|
|
||||||
Multiple-cursors uses two lists of commands to know what to do: the run-once list
|
Multiple-cursors uses two lists of commands to know what to do: the run-once list
|
||||||
and the run-for-all list. It comes with a set of defaults, but it would be beyond silly
|
and the run-for-all list. It comes with a set of defaults, but it would be beyond silly
|
||||||
to try and include them all.
|
to try and include all the known Emacs commands.
|
||||||
|
|
||||||
So that's why multiple-cursors occasionally asks what to do about a command. It will
|
So that's why multiple-cursors occasionally asks what to do about a command. It will
|
||||||
then remember your choice by saving it in `~/.emacs.d/.mc-lists.el`. You can change
|
then remember your choice by saving it in `~/.emacs.d/.mc-lists.el`. You can change
|
||||||
|
@ -44,6 +44,10 @@
|
|||||||
;;
|
;;
|
||||||
;; First mark the word, then add more cursors.
|
;; First mark the word, then add more cursors.
|
||||||
;;
|
;;
|
||||||
|
;; To get out of multiple-cursors-mode, press `<return>` or `C-g`. The latter will
|
||||||
|
;; first disable multiple regions before disabling multiple cursors. If you want to
|
||||||
|
;; insert a newline in multiple-cursors-mode, use `C-j`.
|
||||||
|
;;
|
||||||
;;
|
;;
|
||||||
;; ## More commands to play around with
|
;; ## More commands to play around with
|
||||||
;;
|
;;
|
||||||
@ -74,10 +78,6 @@
|
|||||||
;; whatever you've got selected at the moment, and mark more places like that in
|
;; whatever you've got selected at the moment, and mark more places like that in
|
||||||
;; the buffer.
|
;; the buffer.
|
||||||
;;
|
;;
|
||||||
;; To get out of multiple-cursors-mode, press `<return>` or `C-g`. The latter will
|
|
||||||
;; first disable multiple regions before disabling multiple cursors. If you want to
|
|
||||||
;; insert a newline in multiple-cursors-mode, use `C-j`.
|
|
||||||
;;
|
|
||||||
;; BTW, I highly recommend adding `mc/mark-next-like-this` to a key binding that's
|
;; BTW, I highly recommend adding `mc/mark-next-like-this` to a key binding that's
|
||||||
;; right next to the key for `er/expand-region`.
|
;; right next to the key for `er/expand-region`.
|
||||||
;;
|
;;
|
||||||
@ -86,7 +86,7 @@
|
|||||||
;;
|
;;
|
||||||
;; Multiple-cursors uses two lists of commands to know what to do: the run-once list
|
;; Multiple-cursors uses two lists of commands to know what to do: the run-once list
|
||||||
;; and the run-for-all list. It comes with a set of defaults, but it would be beyond silly
|
;; and the run-for-all list. It comes with a set of defaults, but it would be beyond silly
|
||||||
;; to try and include them all.
|
;; to try and include all the known Emacs commands.
|
||||||
;;
|
;;
|
||||||
;; So that's why multiple-cursors occasionally asks what to do about a command. It will
|
;; So that's why multiple-cursors occasionally asks what to do about a command. It will
|
||||||
;; then remember your choice by saving it in `~/.emacs.d/.mc-lists.el`. You can change
|
;; then remember your choice by saving it in `~/.emacs.d/.mc-lists.el`. You can change
|
||||||
@ -123,7 +123,6 @@
|
|||||||
;;
|
;;
|
||||||
;; $ ./util/ecukes/ecukes --graphical
|
;; $ ./util/ecukes/ecukes --graphical
|
||||||
;;
|
;;
|
||||||
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
(require 'multiple-cursors-core)
|
(require 'multiple-cursors-core)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user