turn buffers into tab page in vim

vim

Solution

You can type this command:

:tab ball

It will display all buffers in tabs.

Problem

I have a list of buffer in vim, how can I turn all of them into tab page like ones in, say Notepad++? I know I can use `:tabe` or something to open new file in tab view, but what if I have opened several buffers in single vim and I want to turn all of them into tab pages?

Original source

Related problems