fweep / vim-tabber

A Vim plugin for labeling tabs, styled after Powerline, with additional tab management utilities.
MIT License
49 stars 11 forks source link

tab names are not stored in Session.vim #7

Open ecerulm opened 9 years ago

ecerulm commented 9 years ago

It would be nice if the tab labels set with :TabberLabel were stored in Session.vim for those of us that use :mksession.

ecerulm commented 9 years ago

My current workaround is to use Sessionx.vim (the eXtra session file) to add some commands to restore the tab names. I guess that tabber could use the same mechanism.

For reference the contents of my Sessionx.vim are

:tabfirst
:TabberLabel FirstTab
:tabnext
:TabberLabel SecondTab
:tabnext
:TabberLabel ThirdTab

and so on.

If you think that vim-tabber can benefit from this. I could try to contribute to vim-tabber the code necessary to inject those commands on the Sessionx.vim automatically.