[BACK]Return to tmux.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/tmux.1 between version 1.344 and 1.345

version 1.344, 2013/03/25 10:11:45 version 1.345, 2013/03/25 11:37:56
Line 23 
Line 23 
 .Sh SYNOPSIS  .Sh SYNOPSIS
 .Nm tmux  .Nm tmux
 .Bk -words  .Bk -words
 .Op Fl 28lquv  .Op Fl 28lCquv
 .Op Fl c Ar shell-command  .Op Fl c Ar shell-command
 .Op Fl f Ar file  .Op Fl f Ar file
 .Op Fl L Ar socket-name  .Op Fl L Ar socket-name
Line 102 
Line 102 
 Like  Like
 .Fl 2 ,  .Fl 2 ,
 but indicates that the terminal supports 88 colours.  but indicates that the terminal supports 88 colours.
   .It Fl C
   Start in control mode.
   Given twice
   .Xo ( Fl CC ) Xc
   disables echo.
 .It Fl c Ar shell-command  .It Fl c Ar shell-command
 Execute  Execute
 .Ar shell-command  .Ar shell-command
Line 3605 
Line 3610 
 option above and the  option above and the
 .Xr xterm 1  .Xr xterm 1
 man page.  man page.
   .El
   .Sh CONTROL MODE
   .Nm
   offers a textual interface called
   .Em control mode .
   This allows applications to communicate with
   .Nm
   using a simple text-only protocol.
   .Pp
   In control mode, a client sends
   .Nm
   commands or command sequences terminated by newlines on standard input.
   Each command will produce one block of output on standard output.
   An output block consists of a
   .Em %begin
   line followed by the output (which may be empty).
   The output block ends with a
   .Em %end
   or
   .Em %error .
   .Em %begin
   and matching
   .Em %end
   or
   .Em %error
   have two arguments: an integer time (as seconds from epoch) and command number.
   For example:
   .Bd -literal -offset indent
   %begin 1363006971 2
   0: ksh* (1 panes) [80x24] [layout b25f,80x24,0,0,2] @2 (active)
   %end 1363006971 2
   .Ed
   .Pp
   In control mode,
   .Nm
   outputs notifications.
   A notification will never occur inside an output block.
   .Pp
   The following notifications are defined:
   .Pp
   .Bl -tag -width Ds
   .It Ic %exit Op Ar reason
   The
   .Nm
   client is exiting immediately, either because it is not attached to any session
   or an error occurred.
   If present,
   .Ar reason
   describes why the client exited.
   .It Ic %layout-change Ar window-id Ar window-layout
   The layout of a window with ID
   .Ar window-id
   changed.
   The new layout is
   .Ar window-layout .
   .It Ic %output Ar source-pane Ar value
   A window pane,
   .Ar source-pane ,
   produced output.
   .Ar value
   contains that output with each byte encoded as two hex digits.
   .It Ic %session-changed Ar session-id Ar name
   The client is now attached to the session with ID
   .Ar session-id ,
   which is named
   .Ar name .
   .It Ic %session-renamed Ar name
   The current session was renamed to
   .Ar name .
   .It Ic %sessions-changed
   A session was created or destroyed.
   .It Ic %unlinked-window-add Ar window-id
   The window with ID
   .Ar window-id
   was created but is not linked to the current session.
   .It Ic %window-add Ar window-id
   The window with ID
   .Ar window-id
   was linked to the current session.
   .It Ic %window-close Ar window-id
   The window with ID
   .Ar window-id
   closed.
   .It Ic %window-renamed Ar window-id Ar name
   The window with ID
   .Ar window-id
   was renamed to
   .Ar name .
 .El  .El
 .Sh FILES  .Sh FILES
 .Bl -tag -width "/etc/tmux.confXXX" -compact  .Bl -tag -width "/etc/tmux.confXXX" -compact

Legend:
Removed from v.1.344  
changed lines
  Added in v.1.345