diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-16 17:35:40 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-16 17:35:40 +0000 |
commit | 55d5b83408de27485e6b2ecc311d9ff8eaae822b (patch) | |
tree | 58f63de5001cca24ae29fc488ee2a5ef4a9ab67b /tmux.1 | |
parent | 1726bf0ffcda9f8911d0e6905c6dadd69d915525 (diff) | |
download | rtmux-55d5b83408de27485e6b2ecc311d9ff8eaae822b.tar.gz rtmux-55d5b83408de27485e6b2ecc311d9ff8eaae822b.tar.bz2 rtmux-55d5b83408de27485e6b2ecc311d9ff8eaae822b.zip |
Informational messages on window option changes.
Diffstat (limited to 'tmux.1')
-rw-r--r-- | tmux.1 | 44 |
1 files changed, 29 insertions, 15 deletions
@@ -1,4 +1,4 @@ -.\" $Id: tmux.1,v 1.34 2008-06-16 06:33:50 nicm Exp $ +.\" $Id: tmux.1,v 1.35 2008-06-16 17:35:40 nicm Exp $ .\" .\" Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> .\" @@ -23,7 +23,7 @@ .Sh SYNOPSIS .Nm tmux .Bk -words -.Op Fl vV +.Op Fl vVq .Op Fl f Ar file .Op Fl S Ar socket-path .Op Ar command Op Ar flags @@ -50,23 +50,18 @@ Communication takes place through a socket, by default placed in .Pp The options are as follows: .Bl -tag -width "XXXXXXXXXXXX" -.It Fl v -Request verbose logging. -This option may be specified multiple times for increasing verbosity. -Log messages will be saved into -.Pa tmux-client-PID.log -and -.Pa tmux-server-PID.log -files in the current directory, where -.Em PID -is the pid of the server or client process. -.It Fl V -Print program version. .It Fl f Ar file Specify an alternative configuration file. By default, .Nm -will look for a config file at ~/.tmux.conf. +will look for a config file at +.Pa ~/.tmux.conf . +The configuration file is a set of +.Nm +commands which are executed in sequence when the server is first started. +.It Fl q +Suppress various information messages, for example when window flags are +altered. .It Fl S Ar socket-path Specify an alternative path to the server socket. The default is @@ -75,6 +70,18 @@ where .Em UID is the uid of the user who invoked .Nm . +.It Fl v +Request verbose logging. +This option may be specified multiple times for increasing verbosity. +Log messages will be saved into +.Pa tmux-client-PID.log +and +.Pa tmux-server-PID.log +files in the current directory, where +.Em PID +is the pid of the server or client process. +.It Fl V +Print program version. .It Ar command Op Ar flags This specifies one of a set of commands used to control .Nm , @@ -574,6 +581,13 @@ Unlink A window may be unlinked only if it is linked to multiple sessions - windows may not be linked to no sessions. .El +.Sh FILES +.Bl -tag -width Ds -compact +.It Pa ~/.tmux.conf +default +.Nm +configuration file +.El .Sh SEE ALSO .Xr pty 4 .Sh AUTHORS |