2015-11-30 151 views

回答

4

我同意@ romainl的回答,但回答問題的緣故:

:help CtrlP

              *'g:ctrlp_map'* 
Use this option to change the mapping to invoke CtrlP in |Normal| mode: > 
let g:ctrlp_map = '<c-p>' 
                  *'g:ctrlp_cmd'* 
Set the default opening command to use when pressing the above mapping: > 
let g:ctrlp_cmd = 'CtrlP' 

放在你的vimrc:

let g:ctrlp_map='<c-p>' 
let g:ctrlp_cmd = 'CtrlPMRU' 
1
  1. 不要在您的$HOME中啓動Vim,也不要使用模糊發現器。首先,這是一個非常愚蠢的想法,基於ag的定製化不會讓它變得更好。

    啓動Vim只有一種有用的方法:導航到你的項目並在那裏運行Vim。使用:CtrlPMRU命令而不是:CtrlP

相關問題