I use Nerdtree, it is convenient. But when there is too many files in directories, it is little inconvenient to locate files and open it.
Is there some efficient way to locate, open files in Vim?
I use Nerdtree, it is convenient. But when there is too many files in directories, it is little inconvenient to locate files and open it.
Is there some efficient way to locate, open files in Vim?
This other answer of mine covers a few of the methods available to you without installing anything. Vim's built-in **
and tab-completion are your best friends:
:e **/foo*/bar<tab>
The above mentioned CtrlP is a great tool that does a lot more than file navigation. You should try it, as well as the other plugins in my answer.
Also, NERDTree is close to useless because you already have a file explorer in Vim: :help netrw
.