Fixed multicursor mapping to Ctrl-m so that it actually works

This commit is contained in:
Yan Pritzker 2013-12-15 17:10:54 -06:00
parent ad3b05c28f
commit 635047f710
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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