>
> Is there a way to make Vim use only one open file buffer per GUI tab?
>
> For example, my Vim has GUI tabs enabled, so...
> 1) I open Vim.
> 2) I open a file; say, my vimrc.
> 3) I go into normal mode (as opposed to INSERT mode), and pull up :help
> 4) That tab now displays both my vimrc and help.
>
> How can I make it so that :help would be opened in a new tab, leaving vimrc
> as the only open buffer in the original tab, so I have something like: TAB1:
> vimrc TAB2: help

try this:

instead of typing

:help

type

:tab help

the same can be done when opening files

instead of

:e afile.txt

type

:tabe afile.txt

hope this helps!
nicolas

--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to