We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*.so
Is a bad idea, It breaks fugitive plugin. A much better is to simply
let g:ctrlp_user_command = "find %s -type f | egrep -v '/\.(git|hg|svn)/' | egrep -v '\.(swp|swo|log|gitkep|keepme|so|o)$'"
This is very fast and it will filter all directories and files, that you really don't want to find without breaking fugitive.
Perhaps some info about this in help and/or from page should be added
Otherwise this is great plugin.
The text was updated successfully, but these errors were encountered:
Thank you! I'll add a note to the doc about this.
Sorry, something went wrong.
BRW, I've been tuning my g:ctrlp_user_command setting
and here's what I came up with
let g:ctrlp_max_depth = 20 let g:ctrlp_user_command = "find %s '(' -type f -or -type l ')' -maxdepth " . g:ctrlp_max_depth . " -not -path '*/\.*/*' | egrep -v '\.(swp|swo|log|gitkeep|keepme|so|o)$'"
This one won't search hidden directories at all, however it will search for files and links
Merge pull request kien#19 from ctrlpvim/drop-migemo
2e959df
Drop migemo
No branches or pull requests
Is a bad idea, It breaks fugitive plugin.
A much better is to simply
This is very fast and it will filter all directories and files, that you really don't want to find without breaking fugitive.
Perhaps some info about this in help and/or from page should be added
Otherwise this is great plugin.
The text was updated successfully, but these errors were encountered: