From 8de4c15dfa9d15d259d295b6f2e121c980082c79 Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 9 Feb 2017 14:49:00 +0000 Subject: Document refresh-client -C. --- tmux.1 | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'tmux.1') diff --git a/tmux.1 b/tmux.1 index 9104f218..a712519d 100644 --- a/tmux.1 +++ b/tmux.1 @@ -888,6 +888,7 @@ is used, the .Ic update-environment option will not be applied. .It Xo Ic refresh-client +.Op Fl C Ar width,height .Op Fl S .Op Fl t Ar target-client .Xc @@ -898,6 +899,9 @@ with If .Fl S is specified, only update the client's status bar. +.Pp +.Fl C +sets the width and height of a control client. .It Xo Ic rename-session .Op Fl t Ar target-session .Ar new-name @@ -4197,6 +4201,11 @@ For example: %end 1363006971 2 .Ed .Pp +The +.Ic refresh-client +.Fl C +command may be used to set the size of a client in control mode. +.Pp In control mode, .Nm outputs notifications. -- cgit From c6a3446398648fc2cc3682c351b57b9bfe5bc5f0 Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 9 Feb 2017 15:04:53 +0000 Subject: Instead of numbering session groups, give them a name which may be given to -t instead of a target session. Also allow them to contain only one session. --- tmux.1 | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) (limited to 'tmux.1') diff --git a/tmux.1 b/tmux.1 index a712519d..d4f5a891 100644 --- a/tmux.1 +++ b/tmux.1 @@ -812,7 +812,7 @@ Lock all clients attached to .Op Fl F Ar format .Op Fl n Ar window-name .Op Fl s Ar session-name -.Op Fl t Ar target-session +.Op Fl t Ar group-name .Op Fl x Ar width .Op Fl y Ar height .Op Ar shell-command @@ -857,16 +857,27 @@ to .Pp If .Fl t -is given, the new session is -.Em grouped -with -.Ar target-session . -This means they share the same set of windows - all windows from -.Ar target-session -are linked to the new session, any new windows are linked to both sessions and -any windows closed removed from both sessions. +is given, it specifies a +.Ic session group . +Sessions in the same group share the same set of windows - new windows are +linked to all sessions in the grouo and any windows closed removed from all +sessions. The current and previous window and any session options remain independent and -either session may be killed without affecting the other. +any session in a group may be killed without affecting the others. +The +.Ar group-name +argument may be: +.Bl -enum -width Ds +.It +the name of an existing group, in which case the new session is added to that +group; +.It +the name of an existing session - the new session is added to the same group +as that session, creating a new group if necessary; +.It +the name for a new group containing only the new session. +.El +.Pp .Fl n and .Ar shell-command @@ -3562,7 +3573,7 @@ The following variables are available, where appropriate: .It Li "session_activity" Ta "" Ta "Integer time of session last activity" .It Li "session_created" Ta "" Ta "Integer time session created" .It Li "session_last_attached" Ta "" Ta "Integer time session last attached" -.It Li "session_group" Ta "" Ta "Number of session group" +.It Li "session_group" Ta "" Ta "Name of session group" .It Li "session_grouped" Ta "" Ta "1 if session in a group" .It Li "session_height" Ta "" Ta "Height of session" .It Li "session_id" Ta "" Ta "Unique session ID" -- cgit From d22c15107ba3bd019cfbc3e83cd1b12acf258029 Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 10 Feb 2017 12:59:18 +0000 Subject: Don't use a bufferevent for the tty, so we can keep better track of what is being written and when. Also a manpage typo fix from jmc@. --- tmux.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmux.1') diff --git a/tmux.1 b/tmux.1 index d4f5a891..012219f3 100644 --- a/tmux.1 +++ b/tmux.1 @@ -860,7 +860,7 @@ If is given, it specifies a .Ic session group . Sessions in the same group share the same set of windows - new windows are -linked to all sessions in the grouo and any windows closed removed from all +linked to all sessions in the group and any windows closed removed from all sessions. The current and previous window and any session options remain independent and any session in a group may be killed without affecting the others. -- cgit