赞
踩
命令行 CtrlP 查找路径
不然默认缓存路径
2 3 4 | ctrl + j/k # 进行上下选择 ctrl + x # 在当前窗口水平分屏打开文件 ctrl + v # 同上, 垂直分屏 ctrl + t # 在tab中打开 2 3 F5 # 刷新可搜索文件 <c-d> # 只能搜索全路径文件 <c-r> # 可以使用正则搜索文件 |
2 3 4 5 6 7 8 9 10 11 12 13 | let g:ctrlp_map = '<leader>p' let g:ctrlp_cmd = 'CtrlP' map <leader>f :CtrlPMRU<CR> let g:ctrlp_custom_ignore = { \ 'dir': '\v[\/]\.(git|hg|svn|rvm)$', \ 'file': '\v\.(exe|so|dll|zip|tar|tar.gz|pyc)$', \ } let g:ctrlp_working_path_mode=0 let g:ctrlp_match_window_bottom=1 let g:ctrlp_max_height=15 let g:ctrlp_match_window_reversed=0 let g:ctrlp_mruf_max=500 let g:ctrlp_follow_symlinks=1 |
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。