I know about running
vim -p file1 file2 file3
But is there away to do something similar from within vim?
What I’ve thought about wanting to do is
:tabe file1 file2 file3
or (IMO worse, but still an improvement):
:edit file1 file2 file3
…but neither of those are possible, by default at least.
try this:
this will only put newly opened file (
file1, file2, file3) in tabs, not all buffers.if you want to open all buffers in tabs, replace
salltosballbtw, is tab convenient to work with? personally I like working with buffer more…