Ubuntu 14.04 64
vim version 7.4.52
issue:
When I use ctrlp find map.c file, I did not find the resulting files.But map.c file does exist in the working directory.
.vimrc configuration
let g:ctrlp_working_pathmode = 'ra'
set wildignore+=/tmp/,.so,_.swp,*.zip " MacOSX/Linux
let g:ctrlp_custom_ignore = '\v[\/].(git|hg|svn)$'
let g:ctrlp_custom_ignore = {
\ 'dir': '\v[\/].(git|hg|svn)$',
\ 'file': '\v.(exe|so|dll)$',
\ 'link': 'some_bad_symbolic_links',
\ }
let g:ctrlp_user_command = 'find %s -type f'
Ubuntu 14.04 64 vim version 7.4.52 issue: When I use ctrlp find map.c file, I did not find the resulting files.But map.c file does exist in the working directory.
.vimrc configuration let g:ctrlp_working_pathmode = 'ra' set wildignore+=/tmp/,.so,_.swp,*.zip " MacOSX/Linux let g:ctrlp_custom_ignore = '\v[\/].(git|hg|svn)$' let g:ctrlp_custom_ignore = { \ 'dir': '\v[\/].(git|hg|svn)$', \ 'file': '\v.(exe|so|dll)$', \ 'link': 'some_bad_symbolic_links', \ } let g:ctrlp_user_command = 'find %s -type f'