ctrlp.vim 454 B

123456789101112131415
  1. let g:ctrlp_map = '<Leader>p'
  2. "let g:ctrlp_working_path_mode = 'rw' let's try out ra
  3. let g:ctrlp_user_command = {
  4. \ 'types': {
  5. \ 1: ['.git', 'cd %s && git ls-files . --cached --exclude-standard --others'],
  6. \ 2: ['.hg', 'hg --cwd %s locate -I .'],
  7. \ },
  8. \ 'fallback': 'find %s -type f'
  9. \ }
  10. let g:ctrlp_extensions = ['funky']
  11. " Function definition jumping with CtrlP's Funky plugin
  12. nnoremap <silent> <Leader>f :CtrlPFunky<CR>