Is it possible to have a split window within a single tab?

For example, If I want the Model and the Unit test files in a vertical split in Tab1 and the Controller and Functional Test in Tab2

How would one do that?

Following should work:

vim
:e model.rb
:vsp unit_test.rb
:tabe controller.rb
:vsp functional_test.rb
1 Like