| It probably technically does, in a horrifying Turing-tarpit way. I actually did try to get the behavior I wanted out of nested tmux invocations and a hairy mess of scripts. There was no 'next-session' command (though now it looks like 'switch-client -l/-n/-p' would work. Hmm.) I couldn't get it to work right, only a half-done approximation, and it involved way too many tmux interpositions. Screen: client -> per client view of P panes -> P of entire pool of T terminals in session. Tmux: client -> 1 of S sessions -> 1 of W windows -> P panes To get splitting at the top level I need one top-level tmux client and its associated top-level session managed by one server. It can actually be locked to one window for what I care about. In each of its panes, I need to run another tmux client so as to be able to actually change what final pty each pane will display. And each of these need to be separate sessions, so that I can display separate things in each of them. Each of these separate sessions will generally only have one window, with its implicit single pane. I should, of course, run all of these inner tmux sessions as a separate server from the top one. Now I just have to make restricted keybindings for both the top and inner clients, and make make sure that any binding for the inner clients are replicated as "self-insert" in the top-level client. And remember that there are multiple places I can direct the command-lines (so need two bindings). This results in the top level server having:
client -> session -> 1 window -> P Panes -> P clients And the bottom server having:
P clients -> T sessions -> T windows -> T panes And this doesn't yet let you have multiple top-level clients attached the way
screen does. I'm sure I could eventually sand off all the sharp edges where it doesn't do what I want and make this work. Or I could just use screen. |
if what matters is that different clients can look at different windows, then using multiple sessions with one window each will get you exactly that.
you may of course need to get used to tmux way of switching sessions (which is not different than tmux way of switching windows). however, i just checked, there is a command to switch to the next session, and you can bind that to a key. add another keybinding to create a new session, and that should get you to about 90% of your expected behaviour without nesting tmux.