57381aa560
Move the key bindings section to near the start, mention attach/detach in the
...
first section, and another couple of tweaks. Based on a diff from Theo.
2009-08-09 14:35:15 +00:00
75b6736cf4
Sync OpenBSD patchset 210:
...
Fix checking of setupterm(3) error codes. While there include the
name of the terminal type causing the error where relevant. ok nicm@.
2009-08-09 12:06:25 +00:00
b3107d26df
Don't leak in the (rare) case of an invalid command at the end of a file not
...
terminated by a \n.
2009-08-09 08:34:17 +00:00
05f1680efa
Use a temporary variable for strdup of const char *.
2009-08-08 21:54:26 +00:00
6491274f60
Infrastructure and commands to manage the environment for processes started
...
within tmux.
There is a global environment, copied from the external environment when the
server is started and each sesssion has an (initially empty) session
environment which overrides it.
New commands set-environment and show-environment manipulate or display the
environments.
A new session option, update-environment, is a space-separated list of
variables which are updated from the external environment into the session
environment every time a new session is created - the default is DISPLAY.
2009-08-08 21:52:43 +00:00
e985629440
Tidy function a little by using a temporary variable.
2009-08-08 21:18:23 +00:00
80196c9abc
Fix typo and add ref to infocmp.
2009-08-08 20:46:26 +00:00
becdf220fd
Clarify 256 colours entries from Chris Jones, tweaked by me.
2009-08-08 20:42:42 +00:00
90f8151ffd
Options to set the colours and attributes for status-left/-right. From Thomas
...
Adam, thanks.
2009-08-08 20:36:42 +00:00
92cc3a6914
Handle ttyname(3) failure better.
2009-08-08 16:05:01 +00:00
dcde77cd09
Update.
2009-08-08 16:03:09 +00:00
06ddd3dcf8
Add a flags member to the grid_line struct and use it to differentiate lines
...
wrapped at the screen edge from those terminated by a newline. Then use this
when copying to combine wrapped lines together into one.
2009-08-08 15:57:49 +00:00
5e01b6d663
Change the way the grid is stored, previously it was:
...
- a two-dimensional array of cells;
- a two-dimensional array of utf8 data;
- an array of line lengths.
Now it is a single array of a new struct grid_line each of which represents a
line and containts the length and an array of cells and an array of utf8 data.
This will make it easier to add additional per-line members, such as flags.
2009-08-08 13:29:27 +00:00
e89e70e715
If there is an error in the configuration file, don't just exit(1) as this can
...
cause the client to hang. Instead, send the error message, then mark the client
as bad and start a normal shutdown so the server exits once the error is
written.
This also allows some code duplicating daemon(3) to be trimmed and logging to
begin earlier.
Prompted by Theo noticing the behaviour on error wasn't documented.
2009-08-07 15:39:10 +00:00
ccaf8724e4
Move introduction section up into description. From jmc.
2009-08-07 12:24:16 +00:00
f03dd8d216
This file is not kept up to date and too many people are using it as-is then
...
finding tmux key bindings missing. Trim it down and make it clear this is an
example only.
2009-08-07 12:09:50 +00:00
04e97e8aef
Using the alternative screen (smcup/rmcup) should also preserve the current
...
colours and attributes. Found thanks to a report from Taylor Venable.
While here also nuke a couple of extra blank lines.
2009-08-07 00:12:13 +00:00
746fe5832a
tweak INTRODUCTION; from nicm and myself
2009-08-06 21:06:35 +00:00
a5d55ba16d
Sync up tmux.1 from OpenBSD.
2009-08-06 19:25:44 +00:00
2936f4f32c
tmux no longers sends init strings so this is no longer relevant.
2009-08-06 12:22:50 +00:00
4027335fa9
Clear the codes array earlier as tty_term_free could be called on error.
2009-08-05 19:05:02 +00:00
e2686d8819
+IRC channel.
2009-08-05 16:39:28 +00:00
b2606c0421
Correct usage of termcap.
2009-08-05 16:29:50 +00:00
bcddddf98d
If colours are not supported by the terminal, try to emulate a coloured
...
background by setting or clearing the reverse attribute.
This makes a few applications which don't use the reverse attribute themselves
a little happier, and allows the status, message and mode options to have
default attributes and fg/bg options that work as expected when set as reverse.
2009-08-05 16:26:38 +00:00
e3e0d70c0e
+PuTTY ACS from Mike Putnam.
2009-08-05 14:56:58 +00:00
f42a0475e4
Tweak FAQ to mention default-terminal.
2009-08-05 14:42:08 +00:00
12ef3ceda1
Add a -a flag to set-option and set-window-option to append to an existing
...
string value, useful for terminal-overrides.
2009-08-04 18:45:57 +00:00
a0647f1616
restructure the layout of this page, moving the commands into various
...
subsections; lots of tweaks to come on the text
from nicm and myself
2009-08-04 18:41:28 +00:00
9e3bb986d5
Show the bell/activity/current status and the window title in the choice list.
2009-08-04 14:28:23 +00:00
93bf2a1d72
Check for "UTF8" as well as "UTF-8" in LANG etc as it seems this may also
...
appear.
2009-08-04 10:31:28 +00:00
6b69b93b53
clean up some macro abuse in the commands section;
2009-08-04 07:56:38 +00:00
189fb08e13
Split the comparison into a function to make this code smaller and more
...
understandable.
2009-08-03 17:12:07 +00:00
ac54dee9bb
Don't try to free old string values (and crash) when they are overridden unless
...
they were actually found in the source terminal description. Reported by jmc.
2009-08-03 15:30:16 +00:00
9a391b3320
tweak previous;
2009-08-03 14:34:47 +00:00
1673735f02
Add a terminal-overrides session option allowing individual terminfo(5) entries
...
to be overridden. The 88col/256col checks are now moved into the default
setting and out of the code.
Also remove a couple of old workarounds for xterm and rxvt which are no longer
necessary (tmux can emulate them if missing).
2009-08-03 14:10:54 +00:00
e4bb08e1f5
Fix checking of setupterm(3) error codes. While there include the
...
name of the terminal type causing the error where relevant. ok nicm@.
2009-08-02 20:47:35 +00:00
a834d037bc
Sync OpenBSD patchset 209:
...
Pass the ACS border characters through tty_get_acs so they appear correctly on
terminals which don't use the standard set.
2009-07-31 20:35:21 +00:00
cccd072ed1
Sync OpenBSD patchset 208:
...
Don't leak when rollling buffers off when the paste buffer limit is reached.
2009-07-31 20:33:49 +00:00
5f0e688b50
Add some lines.
2009-07-31 10:58:51 +00:00
ec8930c144
Part of last commit, remove -lcurses.
2009-07-31 10:45:22 +00:00
3e46bcec93
On SUSE Linux compatibility is something that only happens to other people, so
...
on Linux use -lncurses instead of -lcurses.
Also use -lncurses on NetBSD because they are only now realising that
supporting the 20-year-old terminfo API in their libcurses might be nice, and
so far none of the releases do.
2009-07-31 10:44:03 +00:00
5d13704e04
Some Linuxes/gcc versions hide LLONG_MAX/MIN unless the compiler is told to use
...
C99, so use -std=c99 on Linux.
2009-07-31 10:30:40 +00:00
5db47ed53a
Pass the ACS border characters through tty_get_acs so they appear correctly on
...
terminals which don't use the standard set.
2009-07-31 10:12:49 +00:00
52f8578984
Some stuff that is done.
2009-07-30 21:55:16 +00:00
09c6432854
Sync OpenBSD patchset 207:
...
Plug some memory leaks.
2009-07-30 21:14:04 +00:00
796bfbd7af
Update.
2009-07-30 21:11:10 +00:00
56dd5dfff4
Sync OpenBSD patchset 206:
...
Don't babysit people and let them try to load /dev/zero or (more useful)
/dev/null if they want.
2009-07-30 21:07:23 +00:00
3eb77bf53f
Sync OpenBSD patchset 205:
...
Remove some dead code found by clang.
2009-07-30 21:04:40 +00:00
89826983eb
Sync OpenBSD patchset 204:
...
tweak previous;
2009-07-30 21:02:35 +00:00
697051d1fd
Sync OpenBSD patchset 203:
...
Similar changes for server_msg_dispatch: use a switch instead of a lookup
table and merge smaller functions inline.
2009-07-30 21:01:01 +00:00