jimeh / tmuxifier

Tmuxify your Tmux. Powerful session, window & pane management for Tmux.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

split_v splits horizontally?

IanVaughan opened this issue Β· comments

I have split_v 80 and a horizontal split. πŸ˜•

+------------------+
|                  |
|                  |
+------------------+
|                  |
|                  |
|                  |
|                  |
|                  |
|                  |
+------------------+

(Cheers http://asciiflow.com/)

Depends, some would call that a vertical split, as the new window is placed vertically in relation to the original window.

Either way, split_v and split_h helpers map to Tmux's split-window command. And as you'd assume, split_v calls split-window -v and split_h calls split-window -h. So the V vs H argument is out of my hands :)

Oohhh, ok, cheers.