Remapped ,m to zm due to conflict with ShowMarks

This commit is contained in:
Yan Pritzker 2012-11-16 12:07:52 -06:00
parent 5ba606f60d
commit aa0ec75ee9
2 changed files with 4 additions and 7 deletions

View File

@ -35,7 +35,7 @@ from scouring other people's dotfile repos, blogs, and projects.
* More than just vim plugins - great shell aliases, osx, and irb/pry tweaks to make you more productive. * More than just vim plugins - great shell aliases, osx, and irb/pry tweaks to make you more productive.
## Screenshot ## Screenshot
![screenshot](http://i.imgur.com/afzuR.png) ![screenshot](http://i.imgur.com/3C1Ze.png)
# Installation # Installation
@ -266,8 +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 * `,t` - CtrlP fuzzy file selector
* `,b` - CtrlP buffer selector * `,b` - CtrlP buffer selector
* `,m` - jump to method - CtrlP tag search within current buffer * `zm` - jump to method - CtrlP tag search within current buffer
* `,M` - jump to any Method - CtrlP tag search within all buffers
* `,jm` jump (via CtrlP) to app/models * `,jm` jump (via CtrlP) to app/models
* `,jc` app/controllers * `,jc` app/controllers
* `,jv` app/views * `,jv` app/views

View File

@ -35,7 +35,5 @@ map ,jF :CloseSingleConque<CR>:CtrlP factories<CR>
map ,jT :CloseSingleConque<CR>:CtrlP test<CR> map ,jT :CloseSingleConque<CR>:CtrlP test<CR>
"Cmd-(m)ethod - jump to a method (tag in current file) "Cmd-(m)ethod - jump to a method (tag in current file)
map ,m :CloseSingleConque<CR>:CtrlPBufTag<CR> "Ctrl-m is not good - it overrides behavior of ENter
nnoremap <silent> zm :CloseSingleConque<CR>:CtrlPBufTag<CR>
"Ctrl-(M)ethod - jump to a method (tag in all files)
map ,M :CloseSingleConque<CR>:CtrlPBufTagAll<CR>