by Jason Stewart
CtrlP is a popular Vim plugin for jumping to files & buffers by typing a fragment of the path or filename. Its fuzzy-find is a little too fuzzy for my taste. We can fix that with a custom match function! Per CtrlP documentation: Example: let g:ctrlp_match_func = { 'match': 'Function_Name' } Structure of the function: […]