kien / ctrlp.vim

Fuzzy file, buffer, mru, tag, etc finder.
kien.github.com/ctrlp.vim
7.26k stars 676 forks source link

regexp looks broken (or am I missing someting here?) #753

Closed Notaduck closed 5 years ago

Notaduck commented 6 years ago

I've added the line let g:ctrlp_regexp = 1 to my init.vim (neovim) config, but for some odd reason I'm not able to search for anything while using a regular expression.

Example:

As you can see I've the file ~/fail.md screenshot 8 If i search for *.md then I will receive the message "no entries found" , am I missing something here or is it broken? screenshot 9

spidey commented 5 years ago

*.md is a not a regular expression, is a file glob pattern. You would search for .*\.md using regexp.

Notaduck commented 5 years ago

Ofc it isn't. Thanks