I have a screen session running on my local machine:
~/[email protected]$screen -S pair
Then, turn on multiuser:
ctrl-a:multiuser on
Finally, allow the user pair to connect to the session:
ctrl-a:acladd pair
So far so good. A remote user can log into the machine as pair and connect to the session:
~/$ssh [email protected]
pair@example~/$screen -x test/pair
But, if I open a split:
ctrl-a:|
The user pair cannot see the split.
Is it possible to have multiple splits open in a shared session?