exvim / main

This is the main repository for exVim!
exvim.github.io
MIT License
739 stars 169 forks source link

file filter should accept hidden file or explicit file input. #90

Open yunfeizu opened 9 years ago

yunfeizu commented 9 years ago

I‘m trying to use exvim to edit exvim files. But the .vimrc .vimrc.local .vimrc.plugins files are missing in ex_project and can't be found by Ctrl-P. How can I include these files in a project?

jwu commented 9 years ago

hmmm......... That is a very good question. I think i should add a file_filter named HIDDEN to help user on this.

Another idea is allow user have explicit file_filter, so user can type: file_filter=.vimrc,.gitignore

Right now, my solution is use vim's e command: :e .you.hidden.file. Because we seldom edit hidden file, and if we did, we know its name. And usually they are under root directory.

But you are right, I should make user comfortable if they need them.

yunfeizu commented 9 years ago

Thanks a lot