I am working in a mammoth codebase. There are too many files and folders at the top-level. But, I work in a small corner of the codebase - no more than 10 directories hanging off of the top-level. How do I give ctrl-p the list of these 10 directories and have it search only inside them? Right now, even with let g:ctrlp_max_files=0
, ctrl-p is having trouble finding my files because I just have too many files.
Asked
Active
Viewed 122 times
1

The Vivandiere
- 3,059
- 3
- 28
- 50
-
You should check this with your plugin support (if that's a plugin) – sidyll Sep 24 '18 at 20:16
-
`g:ctrlp_custom_ignore` or `g:ctrlp_user_command`. The first is easier to use, the second more powerful. – Amadan Sep 25 '18 at 08:54