Why is possible create a new session through the "status line" and not through a pane? #5062
Replies: 3 comments
|
You are not just creating a session but trying to attach it. Use |
0 replies
|
Correct, it did do the trick Therefore the following command works:
BTW The order of parameters is important, for example the following version is incorrect tmux new -s -d omicron
sessions should be nested with care, unset $TMUX to forceThanks for the support |
0 replies
|
This discussion has been automatically locked since there has not been any recent activity after it was closed. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello tmux team
It is mostly a kind of question about the following experience
If
tmux(3.4) is running consider the two following scenariosOne
If within any pane is executed the following command:
tmux new -s chaskiappears the following message:
And the session is not created - confirmed with
^b+sTwo
If is executed
^b+:(it "opens" the status line) and if is executed thenew -s chaskicommand the session is createdQuestion
Why this difference?. It is confuse because both the pane and status line are running tmux itself. right?
Note I know the most common approach to create a new session is with the
tmux new -s chaskicommand being it executed out of tmux (normal terminal/shell).Thanks for your understanding
All reactions