Daniel Silveira
Daniel Silveira

Reputation: 42543

How to make FuzzyFinder pluggin open files in a new graphical tab in MacVim?

When I use FuzzyFinder plugin to open a new file in MacVim, it opens the new file at the same tab in a new buffer.

How to tell FuzzyFinder to open thoses files in a new MacVim tab?

Upvotes: 3

Views: 2138

Answers (1)

Daniel Silveira
Daniel Silveira

Reputation: 42543

Just founded the answer at http://www.vim.org/scripts/script.php?script_id=1984

You can open a selected item in various ways:

    <CR>  (|g:fuf_keyOpen|)        - opens in a previous window. 
    <C-j> (|g:fuf_keyOpenSplit|)   - opens in a split window. 
    <C-k> (|g:fuf_keyOpenVsplit|)  - opens in a vertical-split window. 
    <C-l> (|g:fuf_keyOpenTabpage|) - opens in a new tab page.

...instead of hitting return, I should press <CTRL-L> to open in a new tab

Upvotes: 7

Related Questions