开发者

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

开发者 https://www.devze.com 2022-12-24 08:31 出处:网络
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.

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 Ma开发者_开发技巧cVim tab?


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

0

精彩评论

暂无评论...
验证码 换一张
取 消