Links
- Ctrl-P: Fuzzy file, buffer, mru and tag finder
- FelikZ/ctrlp-py-matcher
- Speed up matching by using as a custom matcher
- Docs
let g:ctrlp_match_func = { 'match': 'pymatcher#PyMatch' }
Snippets
let g:ctrlp_user_command = 'ag %s -i --nocolor --nogroup --hidden \ --ignore .git \ --ignore .svn \ --ignore .hg \ --ignore .DS_Store \ --ignore "**/*.pyc" \ --ignore review \ -g ""' let g:ctrlp_user_command = { \ 'types': { \ 1: ['.git', 'cd %s && git ls-files'], \ }, \ 'fallback': 'ag %s -i --nocolor --nogroup --hidden \ --ignore .git \ --ignore .svn \ --ignore .hg \ --ignore .DS_Store \ --ignore "**/*.pyc" \ --ignore review \ -g ""' \ }