Fixed multicursor mapping to Ctrl-m so that it actually works
This commit is contained in:
parent
ad3b05c28f
commit
635047f710
@ -189,6 +189,7 @@ of plugins above to learn more.
|
||||
* `,T` - Tag list (list of methods in a class)
|
||||
* `Ctrl-s` - Open related spec in a split. Similar to :A and :AV from rails.vim but is also aware of the fast_spec dir and faster to type
|
||||
* `,,w` (alias `,<esc>`) or `,,b` (alias `,<shift-esc>`) - EasyMotion, a vimperator style tool that highlights jump-points on the screen and lets you type to get there.
|
||||
* `Ctrl-m` - mark this word for MultiCursor (like sublime). Use `Ctrl-n` (next), `Ctrl-p` (prev), `Ctrl-x`(skip) to add more cursors, then do normal vim things like edit the word.
|
||||
|
||||
#### File Navigation
|
||||
* `,t` - CtrlP fuzzy file selector
|
||||
|
@ -2,7 +2,7 @@
|
||||
let g:multi_cursor_use_default_mapping=0
|
||||
|
||||
" Switch to multicursor mode with Apple-*
|
||||
let g:multi_cursor_start_key='<D-*>'
|
||||
let g:multi_cursor_start_key='<C-m>'
|
||||
|
||||
" Ctrl-n, Ctrl-p, Ctrl-x, and <Esc> are mapped in the special multicursor
|
||||
" mode once you've added at least one virtual cursor to the buffer
|
||||
|
Loading…
Reference in New Issue
Block a user