Results 221 comments of Eric Wong

![2015-12-18 20-34-38](https://cloud.githubusercontent.com/assets/13142418/11897027/cba84c78-a5c6-11e5-9cef-7789230005ec.png) it seem works well for me ,if i type into InvoiceDetail my cursor is located on InvoiceDetailView,java

also works well ,you could see my cursor on InvoiceDetailView.py ![2015-12-18 20-37-09](https://cloud.githubusercontent.com/assets/13142418/11897085/6a527448-a5c7-11e5-95df-45b206d36f1a.png)

how do you set g:ctrlp_custom_ignore and your match

can you show me you vimrc ,if possible,

``` NeoBundle 'FelikZ/ctrlp-py-matcher' let g:ctrlp_match_func = { 'match': 'pymatcher#PyMatch' } ``` can you try to use this matcher? i just use your setting but can not reproduce,the diff is my...

here is my ctrlp setting ``` vim NeoBundle 'ctrlpvim/ctrlp.vim' NeoBundle 'FelikZ/ctrlp-py-matcher' let g:ctrlp_map = '' let g:ctrlp_cmd = 'CtrlP' let g:ctrlp_working_path_mode = 'ra' let g:ctrlp_root_markers = 'pom.xml' let g:ctrlp_match_window =...

vim variable should not be defind in diff type ,you can comment you setting for g:ctrlp_user_command it is due to i am using a list as it's value

``` vim set nocompatible syntax on filetype off set rtp+=~/.vim/bundle/Vundle.vim/ call vundle#begin() Plugin 'VundleVim/Vundle.vim' Plugin 'ctrlpvim/ctrlp.vim' Plugin 'FelikZ/ctrlp-py-matcher' let g:ctrlp_map = '' let g:ctrlp_cmd = 'CtrlP' let g:ctrlp_working_path_mode = 'ra'...