I want to open all the files from the current directory matching *.c.
I do it using
:args *.c
:tab all
However my vim opens the first nine files in new tabs and the last six in the last tab and splits them horizontally.
I've tried to use commands like :tabnew instead of :tab but they require a single file - I don't know how to solve my problem using those.
My questions are:
- How can I quickly open many files the way every file has its own tab? Maybe it is possible to disable splitting?
- Why does
:tabbehaves this way?
