Instant Terminal Sharing
Go to file
2013-02-20 09:34:21 +00:00
compat
examples
tools
www
.gitignore
.mailmap
arguments.c
array.h
attributes.c
autogen.sh Only set AUTO{MAKE,CONF}_VERSION on OpenBSD 2013-01-31 00:14:59 +00:00
cfg.c Don't try to print unterminated strings when loading configuration file. 2013-02-19 17:28:21 +00:00
CHANGES
client.c
clock.c
cmd-attach-session.c
cmd-bind-key.c
cmd-break-pane.c
cmd-capture-pane.c
cmd-choose-buffer.c
cmd-choose-client.c
cmd-choose-list.c
cmd-choose-tree.c
cmd-clear-history.c
cmd-clock-mode.c
cmd-command-prompt.c
cmd-confirm-before.c
cmd-copy-mode.c
cmd-delete-buffer.c
cmd-detach-client.c
cmd-display-message.c
cmd-display-panes.c
cmd-find-window.c
cmd-has-session.c
cmd-if-shell.c
cmd-join-pane.c
cmd-kill-pane.c
cmd-kill-server.c
cmd-kill-session.c Sync OpenBSD patchset 1151: 2012-07-11 19:37:32 +00:00
cmd-kill-window.c
cmd-link-window.c
cmd-list-buffers.c
cmd-list-clients.c
cmd-list-commands.c No more lint means no more ARGSUSED. 2013-02-17 23:15:38 +00:00
cmd-list-keys.c
cmd-list-panes.c
cmd-list-sessions.c
cmd-list-windows.c
cmd-list.c
cmd-load-buffer.c
cmd-lock-server.c
cmd-move-window.c
cmd-new-session.c
cmd-new-window.c
cmd-paste-buffer.c
cmd-pipe-pane.c
cmd-refresh-client.c
cmd-rename-session.c
cmd-rename-window.c
cmd-resize-pane.c
cmd-respawn-pane.c
cmd-respawn-window.c
cmd-rotate-window.c
cmd-run-shell.c Add functions to allocate and free command contexts rather than doing it all on 2013-02-18 23:20:21 +00:00
cmd-save-buffer.c
cmd-select-layout.c
cmd-select-pane.c
cmd-select-window.c
cmd-send-keys.c
cmd-send-prefix.c Sync OpenBSD patchset 1151: 2012-07-11 19:37:32 +00:00
cmd-server-info.c
cmd-set-buffer.c
cmd-set-environment.c
cmd-set-option.c
cmd-show-buffer.c
cmd-show-environment.c
cmd-show-messages.c Sync OpenBSD patchset 1151: 2012-07-11 19:37:32 +00:00
cmd-show-options.c
cmd-source-file.c
cmd-split-window.c
cmd-start-server.c
cmd-string.c
cmd-suspend-client.c
cmd-swap-pane.c
cmd-swap-window.c
cmd-switch-client.c
cmd-unbind-key.c
cmd-unlink-window.c
cmd.c
colour.c Sync OpenBSD patchset 1006: 2012-01-21 19:33:45 +00:00
compat.h
configure.ac
control-notify.c
control.c
environ.c
FAQ
format.c
grid-cell.c
grid-view.c
grid.c
input-keys.c
input.c
job.c
key-bindings.c
key-string.c
layout-custom.c
layout-set.c
layout.c Add resize-pane -x and -y for absolute pane size. 2013-02-18 17:00:35 +00:00
log.c
Makefile.am
mode-key.c
names.c
notify.c
options-table.c
options.c
osdep-aix.c
osdep-darwin.c
osdep-dragonfly.c
osdep-freebsd.c
osdep-hpux.c Use pgrp of pty fd not pid of immediate child when recovering current working 2012-09-24 14:05:38 +01:00
osdep-linux.c
osdep-netbsd.c
osdep-openbsd.c
osdep-sunos.c
osdep-unknown.c
paste.c
README
resize.c
screen-redraw.c
screen-write.c
screen.c
server-client.c
server-fn.c
server-window.c
server.c
session.c
signal.c
status.c
SYNCING
tmux.1
tmux.c
tmux.h
TODO
tty-acs.c Expand the Id keyword. 2011-07-09 09:42:33 +00:00
tty-keys.c
tty-term.c
tty.c
utf8.c
window-choose.c
window-clock.c
window-copy.c
window.c
xmalloc.c Sync OpenBSD patchset 1150: 2012-07-11 19:34:16 +00:00
xterm-keys.c

Welcome to tmux!

tmux is a "terminal multiplexer", it enables a number of terminals (or windows)
to be accessed and controlled from a single terminal. tmux is intended to be a
simple, modern, BSD-licensed alternative to programs such as GNU screen.

This release runs on OpenBSD, FreeBSD, NetBSD, Linux and OS X and may still
run on Solaris and AIX (although they haven't been tested in a while).

Since the 1.2 release tmux depends on libevent. Download it from:

	http://www.monkey.org/~provos/libevent/

To build tmux from a release tarball, do:

	$ ./configure && make
	$ sudo make install

To get and build the latest from version control:

	$ git clone git://git.code.sf.net/p/tmux/tmux-code tmux
	$ cd tmux
	$ sh autogen.sh
	$ ./configure && make

For more information see https://sourceforge.net/scm/?type=git&group_id=200378
and http://git-scm.com. Patches should be sent by email to the mailing list at
tmux-users@lists.sourceforge.net.

For documentation on using tmux, see the tmux.1 manpage. It can be viewed from
the source tree with:

	$ nroff -mdoc tmux.1|less

Some common questions are answered in the FAQ file and a more extensive (but
slightly out of date) guide is available in the OpenBSD FAQ at
http://www.openbsd.org/faq/faq7.html#tmux. A rough todo list is in the TODO
file and some example configurations and a Vim syntax file are in the examples
directory.

For debugging, running tmux with -v or -vv will generate server and client log
files in the current directory.

tmux mailing lists are available. The visit:

	https://sourceforge.net/mail/?group_id=200378

Bug reports, feature suggestions and especially code contributions are most
welcome. Please send by email to:

	tmux-users@lists.sourceforge.net

This file and the CHANGES, FAQ and TODO files are licensed under the ISC
license. Files under examples/ remain copyright their authors unless otherwise
stated in the file but permission has been received to distribute them with
tmux. All other files have a license and copyright notice at their start.

-- Nicholas Marriott <nicm@users.sf.net>

$Id$