ctrlp-py-matcher icon indicating copy to clipboard operation
ctrlp-py-matcher copied to clipboard

Fast vim CtrlP matcher based on python

Results 11 ctrlp-py-matcher issues
Sort by recently updated
recently updated
newest added

It seems like the order gets messed up in MRU mode when enabling ctrlp-py-matcher. Looks like list gets sorted by name instead of in MRU order

@FelikZ , thanks for creating this plugin.. it really sped up the file/MRU search. However, when I tried to search tags, it didn't really show any tags. I added the...

Plugin works correctly with gvim80 but not with gvim82 It doesn't recognize even a single character, immediately get '== NO ENTRIES ==' gvim82 is 64 bit compiled with python support...

The old way causes issues with plugins that only support python3 Just calling `has('python')` will make vim load python2 (if it hasn't already loaded a python version). So if the...

Use multiprocessing to improve fuzzy find performance and reduce memory usage to support very large ctags files.

copy ctrlp hightlight function make g:ctrlp_by_filename show right

Because the filename strip is done with the slash "/" as separator, it does not work under windows using backslash "\\". Possible solution for pymatcher.py ~~~python def filename_score(line): # get...

The plugin found at https://github.com/gikmx/vim-ctrlposession lists all sessions. The content of the entries are names of directories. If you've read a file (current buffer is a file) the last entry...

Explanation of `g:ctrlp_by_filename`: ``` *'g:ctrlp_by_filename'* Set this to 1 to set searching by filename (as opposed to full path) as the default: > let g:ctrlp_by_filename = 0 ``` To match...

This changes does the following: * Use the proper path separator on Windows for `filename` type matches. * Add error reporting so we can tell what's going when something fails.