I have a super simple entry for ctrlp_custom_ignore in my .vimrc:
let g:ctrlp_custom_ignore = 'doc'
However, it's not working. Files inside doc still show up in my searches. How can I fix this?
I have a super simple entry for ctrlp_custom_ignore in my .vimrc:
let g:ctrlp_custom_ignore = 'doc'
However, it's not working. Files inside doc still show up in my searches. How can I fix this?
Copyright © 2021 Jogjafile Inc.
Turns out I had a
ctrlp_user_commandwhich was taking precedence overctrlp_custom_ignore. Rather than getting myctrlp_custom_ignoreto work, I just changed the command I had underctrlp_user_commandto exclude the directory I wanted excluded.