Show the list of the files inside the folder of the current file
vim
Solution
Did you even read FuzzyFinder's documentation (`:help fuzzyfinder`)? Quickly opening nearby files is one of that plugin's main features.
Without installing anything, you can do:
:Ex[plore]
to open the `netrw` file tree. See `:help netrw`.
You can also do:
:e <Tab>
Add these lines to your `~/.vimrc` to make command line completion even better:
set wildmenu
set wildmode=list:full
and read `:help wildmenu` and `:help commandline-completion`.
`set autochdir` is a useful option to add to your `~/.vimrc`, by the way.
Problem
Imagine I'm editing file, and I want to show the list of the files inside the folder who belongs the file I'm editing, to edit one of them. How can I do that? Is there any way using `FuzzyFinder`?