[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.418 and 1.419

version 1.418, 2015/04/19 21:05:27 version 1.419, 2015/04/19 21:34:21
Line 1019 
Line 1019 
 command is:  command is:
 .Bl -tag -width Ds  .Bl -tag -width Ds
 .It Xo Ic copy-mode  .It Xo Ic copy-mode
 .Op Fl u  .Op Fl Mu
 .Op Fl t Ar target-pane  .Op Fl t Ar target-pane
 .Xc  .Xc
 Enter copy mode.  Enter copy mode.
 The  The
 .Fl u  .Fl u
 option scrolls one page up.  option scrolls one page up.
   .Fl M
   begins a mouse drag (only valid if bound to a mouse key binding, see
   .Sx MOUSE SUPPORT Ns ).
 .El  .El
 .Pp  .Pp
 Each window displayed by  Each window displayed by
Line 1643 
Line 1646 
 if specified, to  if specified, to
 .Ar new-name .  .Ar new-name .
 .It Xo Ic resize-pane  .It Xo Ic resize-pane
 .Op Fl DLRUZ  .Op Fl DLMRUZ
 .Op Fl t Ar target-pane  .Op Fl t Ar target-pane
 .Op Fl x Ar width  .Op Fl x Ar width
 .Op Fl y Ar height  .Op Fl y Ar height
Line 1672 
Line 1675 
 .Fl Z ,  .Fl Z ,
 the active pane is toggled between zoomed (occupying the whole of the window)  the active pane is toggled between zoomed (occupying the whole of the window)
 and unzoomed (its normal position in the layout).  and unzoomed (its normal position in the layout).
   .Pp
   .Fl M
   begins mouse resizing (only valid if bound to a mouse key binding, see
   .Sx MOUSE SUPPORT Ns ).
 .It Xo Ic respawn-pane  .It Xo Ic respawn-pane
 .Op Fl k  .Op Fl k
 .Op Fl t Ar target-pane  .Op Fl t Ar target-pane
Line 1980 
Line 1987 
 or  or
 .Em emacs-copy .  .Em emacs-copy .
 .It Xo Ic send-keys  .It Xo Ic send-keys
 .Op Fl lR  .Op Fl lMR
 .Op Fl t Ar target-pane  .Op Fl t Ar target-pane
 .Ar key Ar ...  .Ar key Ar ...
 .Xc  .Xc
Line 2001 
Line 2008 
 The  The
 .Fl R  .Fl R
 flag causes the terminal state to be reset.  flag causes the terminal state to be reset.
   .Pp
   .Fl M
   passes through a mouse event (only valid if bound to a mouse key binding, see
   .Sx MOUSE SUPPORT Ns ).
 .It Xo Ic send-prefix  .It Xo Ic send-prefix
 .Op Fl 2  .Op Fl 2
 .Op Fl t Ar target-pane  .Op Fl t Ar target-pane
Line 2449 
Line 2460 
 see the  see the
 .Ic message-command-style  .Ic message-command-style
 option.  option.
 .It Xo Ic mouse-resize-pane  .It Xo Ic mouse
 .Op Ic on | off  .Op Ic on | off
 .Xc  .Xc
 If on,  If on,
 .Nm  .Nm
 captures the mouse and allows panes to be resized by dragging on their borders.  captures the mouse and allows mouse events to be bound as key bindings.
 .It Xo Ic mouse-select-pane  See the
 .Op Ic on | off  .Sx MOUSE SUPPORT
 .Xc  section for details.
 If on,  
 .Nm  
 captures the mouse and when a window is split into multiple panes the mouse may  
 be used to select the current pane.  
 The mouse click is also passed through to the application as normal.  
 .It Xo Ic mouse-select-window  
 .Op Ic on | off  
 .Xc  
 If on, clicking the mouse on a window name in the status line will select that  
 window.  
 .It Xo Ic mouse-utf8  .It Xo Ic mouse-utf8
 .Op Ic on | off  .Op Ic on | off
 .Xc  .Xc
Line 2855 
Line 2856 
 contains  contains
 .Ql vi .  .Ql vi .
 .Pp  .Pp
 .It Xo Ic mode-mouse  
 .Op Ic on | off | copy-mode  
 .Xc  
 Mouse state in modes.  
 If on, the mouse may be used to enter copy mode and copy a selection by  
 dragging, to enter copy mode and scroll with the mouse wheel, or to select an  
 option in choice mode.  
 If set to  
 .Em copy-mode ,  
 the mouse behaves as set to on, but cannot be used to enter copy  
 mode.  
 .Pp  
 .It Ic mode-style Ar style  .It Ic mode-style Ar style
 Set window modes style.  Set window modes style.
 For how to specify  For how to specify
Line 3083 
Line 3072 
 .Fl v  .Fl v
 shows only the option value, not the name.  shows only the option value, not the name.
 .El  .El
   .Sh MOUSE SUPPORT
   If the
   .Ic mouse
   option is on (the default is off),
   .Nm
   allows mouse events to be bound as keys.
   The name of each key is made up of a mouse event (such as
   .Ql MouseUp1 )
   and a location suffix (one of
   .Ql Pane
   for the contents of a pane,
   .Ql Border
   for a pane border or
   .Ql Status
   for the status line).
   The following mouse events are available:
   .Bl -column "MouseDown1" "MouseDrag1" "WheelDown" -offset indent
   .It Li "MouseDown1" Ta "MouseUp1" Ta "MouseDrag1"
   .It Li "MouseDown2" Ta "MouseUp2" Ta "MouseDrag2"
   .It Li "MouseDown3" Ta "MouseUp3" Ta "MouseDrag3"
   .It Li "WheelUp" Ta "WheelDown"
   .El
   .Pp
   Each should be suffixed with a location, for example
   .Ql MouseDown1Status .
   .Pp
   The special character
   .Ql =
   may be used as
   .Ar target-window
   or
   .Ar target-pane
   in commands bound to mouse key bindings.
   It resolves to the window or pane over which the mouse event took place
   (for example, the window in the status line over which button 1 was released for a
   .Ql MouseUp1Status
   binding, or the pane over which the wheel was scrolled for a
   .Ql WheelDownPane
   binding).
   .Pp
   The
   .Ic send-keys
   .Fl M
   flag may be used to forward a mouse event to a pane.
   .Pp
   The default key bindings allow the mouse to be used to select and resize panes,
   to copy text and to change window using the status line.
   These take effect if the
   .Ic mouse
   option is turned on.
 .Sh FORMATS  .Sh FORMATS
 Certain commands accept the  Certain commands accept the
 .Fl F  .Fl F

Legend:
Removed from v.1.418  
changed lines
  Added in v.1.419