cloudhead / neovim-fuzzy

Minimalistic fuzzy file finding for neovim
BSD 3-Clause "New" or "Revised" License
111 stars 17 forks source link

How to open a file in a few tab? #7

Closed gfairchild closed 8 years ago

gfairchild commented 8 years ago

How can I open a file in a new tab instead of replacing the currently open file tab?

cloudhead commented 8 years ago

You can change the default behaviour by setting g:fuzzy_opencmd, but there's currently no way to do it on a per-file basis.

.vimrc:

let g:fuzzy_opencmd = 'tabedit'
gfairchild commented 8 years ago

Perfect! Thanks!