diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2009-06-24 08:13:23 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2009-06-24 08:13:23 +0000 |
commit | 8a07ebc6542d709ab1a60153aedc0f03fc7763b3 (patch) | |
tree | e9d8df54327931251446f34cd14472830e1efaaf /usr.bin/tmux | |
parent | f0dcbf5188940326e08b0a6ff96ea309745b0a06 (diff) |
tweak previous;
Diffstat (limited to 'usr.bin/tmux')
-rw-r--r-- | usr.bin/tmux/tmux.1 | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/usr.bin/tmux/tmux.1 b/usr.bin/tmux/tmux.1 index d881a1cf9ed..a3c6a3c6239 100644 --- a/usr.bin/tmux/tmux.1 +++ b/usr.bin/tmux/tmux.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: tmux.1,v 1.14 2009/06/23 23:26:08 nicm Exp $ +.\" $OpenBSD: tmux.1,v 1.15 2009/06/24 08:13:22 jmc Exp $ .\" .\" Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> .\" @@ -14,7 +14,7 @@ .\" IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING .\" OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: June 23 2009 $ +.Dd $Mdocdate: June 24 2009 $ .Dt TMUX 1 .Os .Sh NAME @@ -196,39 +196,35 @@ to exit from it. Commands to be run when the .Nm server is started may be placed in the -.Pa ~/.tmux.conf +.Pa ~/.tmux.conf configuration file. Common examples include: -.Bl -ohang -width Ds -.It Changing the default prefix key: +.Pp +Changing the default prefix key: .Bd -literal -offset indent set-option -g prefix C-a unbind-key C-b bind-key C-a send-prefix .Ed .Pp -.It Xo Turning the status line off, or changing its colour: -.Xc .Bd -literal -offset indent set-option -g status off set-option -g status-bg blue .Ed .Pp -.It Xo -Setting other options, such as the default command, or locking after 30 minutes -of inactivity: -.Xc +Setting other options, such as the default command, +or locking after 30 minutes of inactivity: .Bd -literal -offset indent set-option -g default-command "exec /bin/ksh" set-option -g lock-after-time 1800 .Ed -.It Creating new key bindings: +.Pp +Creating new key bindings: .Bd -literal -offset indent bind-key b set-option status bind-key / command-prompt "split-window 'exec man %%'" .Ed -.El .Sh KEY BINDINGS .Nm may be controlled from an attached client by using a key combination of a |