I have a super simple entry for ctrlp_custom_ignore in my .vimrc:
ctrlp_custom_ignore
.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?
doc
Turns out I had a ctrlp_user_command which was taking precedence over ctrlp_custom_ignore. Rather than getting my ctrlp_custom_ignore to work, I just changed the command I had under ctrlp_user_command to exclude the directory I wanted excluded.
ctrlp_user_command
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.