tmux window list - what is the text in âquotesâ
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;
up vote
2
down vote
favorite
If I do a Ctrl- b, w I see a list of tmux
windows:
(0) 0: NAME_HERE "âÂÂâÂÂ`âÂÂ"
(1) 1: NAME_HERE "abcdef123456"
If I give a tmux
window a name with Ctrl-b, ,, it appears in the NAME_HERE part.
What is the text in quotes? I presume some kind of description?
I curl'd a binary file to the console by accident, and ended up with that junk above, so I'm fairly sure there's some control character sequence that allows this to be edited, I just don't know what it's called and haven't found anything obvious like "tmux window description" searches turning up anything useful/likely.
tmux
add a comment |Â
up vote
2
down vote
favorite
If I do a Ctrl- b, w I see a list of tmux
windows:
(0) 0: NAME_HERE "âÂÂâÂÂ`âÂÂ"
(1) 1: NAME_HERE "abcdef123456"
If I give a tmux
window a name with Ctrl-b, ,, it appears in the NAME_HERE part.
What is the text in quotes? I presume some kind of description?
I curl'd a binary file to the console by accident, and ended up with that junk above, so I'm fairly sure there's some control character sequence that allows this to be edited, I just don't know what it's called and haven't found anything obvious like "tmux window description" searches turning up anything useful/likely.
tmux
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
If I do a Ctrl- b, w I see a list of tmux
windows:
(0) 0: NAME_HERE "âÂÂâÂÂ`âÂÂ"
(1) 1: NAME_HERE "abcdef123456"
If I give a tmux
window a name with Ctrl-b, ,, it appears in the NAME_HERE part.
What is the text in quotes? I presume some kind of description?
I curl'd a binary file to the console by accident, and ended up with that junk above, so I'm fairly sure there's some control character sequence that allows this to be edited, I just don't know what it's called and haven't found anything obvious like "tmux window description" searches turning up anything useful/likely.
tmux
If I do a Ctrl- b, w I see a list of tmux
windows:
(0) 0: NAME_HERE "âÂÂâÂÂ`âÂÂ"
(1) 1: NAME_HERE "abcdef123456"
If I give a tmux
window a name with Ctrl-b, ,, it appears in the NAME_HERE part.
What is the text in quotes? I presume some kind of description?
I curl'd a binary file to the console by accident, and ended up with that junk above, so I'm fairly sure there's some control character sequence that allows this to be edited, I just don't know what it's called and haven't found anything obvious like "tmux window description" searches turning up anything useful/likely.
tmux
edited Jul 18 at 13:26
slmâ¦
232k65479649
232k65479649
asked Jul 18 at 12:03
Caius Jard
1133
1133
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
That information is the pane status text. It is dinamically generated based on many parameters(last command executed, directory change...). What is important here is that, after Tmux 2.3 you can set up that name manually by using the following command:
printf '33]2;%s33\' 'pane title'
This could be a workaround to your issue.
Source: GitHub - Add support for tmux 2.3's pane status text #384
Now, about the garbage you are seeing at the pane status it could be an issue similar the below, where some escape gabage is causing this to create problemas at your pane status.
Source 2: GitHub - send-keys -R causes garbage unicode output #43
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
That information is the pane status text. It is dinamically generated based on many parameters(last command executed, directory change...). What is important here is that, after Tmux 2.3 you can set up that name manually by using the following command:
printf '33]2;%s33\' 'pane title'
This could be a workaround to your issue.
Source: GitHub - Add support for tmux 2.3's pane status text #384
Now, about the garbage you are seeing at the pane status it could be an issue similar the below, where some escape gabage is causing this to create problemas at your pane status.
Source 2: GitHub - send-keys -R causes garbage unicode output #43
add a comment |Â
up vote
2
down vote
accepted
That information is the pane status text. It is dinamically generated based on many parameters(last command executed, directory change...). What is important here is that, after Tmux 2.3 you can set up that name manually by using the following command:
printf '33]2;%s33\' 'pane title'
This could be a workaround to your issue.
Source: GitHub - Add support for tmux 2.3's pane status text #384
Now, about the garbage you are seeing at the pane status it could be an issue similar the below, where some escape gabage is causing this to create problemas at your pane status.
Source 2: GitHub - send-keys -R causes garbage unicode output #43
add a comment |Â
up vote
2
down vote
accepted
up vote
2
down vote
accepted
That information is the pane status text. It is dinamically generated based on many parameters(last command executed, directory change...). What is important here is that, after Tmux 2.3 you can set up that name manually by using the following command:
printf '33]2;%s33\' 'pane title'
This could be a workaround to your issue.
Source: GitHub - Add support for tmux 2.3's pane status text #384
Now, about the garbage you are seeing at the pane status it could be an issue similar the below, where some escape gabage is causing this to create problemas at your pane status.
Source 2: GitHub - send-keys -R causes garbage unicode output #43
That information is the pane status text. It is dinamically generated based on many parameters(last command executed, directory change...). What is important here is that, after Tmux 2.3 you can set up that name manually by using the following command:
printf '33]2;%s33\' 'pane title'
This could be a workaround to your issue.
Source: GitHub - Add support for tmux 2.3's pane status text #384
Now, about the garbage you are seeing at the pane status it could be an issue similar the below, where some escape gabage is causing this to create problemas at your pane status.
Source 2: GitHub - send-keys -R causes garbage unicode output #43
answered Jul 18 at 14:20
nwildner
13.1k13971
13.1k13971
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f456975%2ftmux-window-list-what-is-the-text-in-quotes%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password