cloudhead/neovim-fuzzy

Open files in splits

bronzehedwick opened this issue · 7 comments

Is it possible to use FuzzyOpen to open files in a split or a tab?

Thanks!

The only way to do this at the moment is via let g:fuzzy_opencmd = 'edit'

Replace 'edit' with whatever command you want, like 'split'. This is a global setting though.

Ahh I see. I was hoping for something like FZF or ctrl-p has, where you can type C-X C-V or C-T to open in a split, vsplit, or tab.

That shouldn't be too difficult, will look into it.

Great, thanks!

Is this issue still active? Would be really great to have this

I was checking the basic vim commands for new tab, you can also change the parameter let g:fuzzy_opencmd as 'tabedit' or simply 'tabe'

Fixed in #39