Undo zm mapping which conflicts with folding. Jump to method now Cmd-Shift-M

This commit is contained in:
Yan Pritzker 2012-11-16 12:19:30 -06:00
parent aa0ec75ee9
commit 522c250204
2 changed files with 4 additions and 4 deletions

View File

@ -266,7 +266,7 @@ If you omit the key combo, you'll get a list of all the maps. You can do the sam
* `,t` - CtrlP fuzzy file selector
* `,b` - CtrlP buffer selector
* `zm` - jump to method - CtrlP tag search within current buffer
* `Cmd-Shift-M` - jump to method - CtrlP tag search within current buffer
* `,jm` jump (via CtrlP) to app/models
* `,jc` app/controllers
* `,jv` app/views

View File

@ -34,6 +34,6 @@ map ,jV :CloseSingleConque<CR>:CtrlP vendor<CR>
map ,jF :CloseSingleConque<CR>:CtrlP factories<CR>
map ,jT :CloseSingleConque<CR>:CtrlP test<CR>
"Cmd-(m)ethod - jump to a method (tag in current file)
"Ctrl-m is not good - it overrides behavior of ENter
nnoremap <silent> zm :CloseSingleConque<CR>:CtrlPBufTag<CR>
"Cmd-Shift-(M)ethod - jump to a method (tag in current file)
"Ctrl-m is not good - it overrides behavior of Enter
nnoremap <silent> <D-M> :CloseSingleConque<CR>:CtrlPBufTag<CR>