#
669c539c |
| 31-Aug-2009 |
nicm <nicm@openbsd.org> |
Add a new display-panes command, with two options (display-panes-colour and display-panes-time), which displays a visual indication of the number of each pane.
|
#
bc7e6300 |
| 13-Aug-2009 |
nicm <nicm@openbsd.org> |
Add a base-index session option to specify the first index checked when looking for an index for a new window.
|
#
118f4a84 |
| 11-Aug-2009 |
nicm <nicm@openbsd.org> |
Add flags for 1+2 and 2 arguments to the generic target code, use it for cmd-set-environment/option/window-option and remove the generic options parsing.
|
#
6f7d62eb |
| 08-Aug-2009 |
nicm <nicm@openbsd.org> |
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 sesss
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.
show more ...
|
#
f192018a |
| 08-Aug-2009 |
nicm <nicm@openbsd.org> |
Options to set the colours and attributes for status-left/-right. From Thomas Adam, thanks.
|
#
4f5d8167 |
| 04-Aug-2009 |
nicm <nicm@openbsd.org> |
Add a -a flag to set-option and set-window-option to append to an existing string value, useful for terminal-overrides.
|
#
5e07382c |
| 03-Aug-2009 |
nicm <nicm@openbsd.org> |
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 co
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).
show more ...
|
#
454be688 |
| 26-Jul-2009 |
nicm <nicm@openbsd.org> |
Make all messages sent between the client and server fixed size.
This is the first of two changes to make the protocol more resilient and less sensitive to other changes in the code, particularly wi
Make all messages sent between the client and server fixed size.
This is the first of two changes to make the protocol more resilient and less sensitive to other changes in the code, particularly with commands. The client now packs argv into a buffer and sends it to the server for parsing, rather than doing it itself and sending the parsed command data.
As a side-effect this also removes a lot of now-unused command marshalling code.
Mixing a server without this change and a client with or vice versa will cause tmux to hang or crash, please ensure that tmux is entirely killed before upgrading.
show more ...
|
#
46fbc68e |
| 20-Jul-2009 |
nicm <nicm@openbsd.org> |
Add a status-justify option to allow the window list in the status line to be positioned at the left, centre, or right.
|
#
0903c7b9 |
| 18-Jul-2009 |
nicm <nicm@openbsd.org> |
Add three new session options: visual-activity, visual-bell, visual-content. If these are enabled (and the monitor-activity, bell-actio and monitor-content options are configurated appropriately), wh
Add three new session options: visual-activity, visual-bell, visual-content. If these are enabled (and the monitor-activity, bell-actio and monitor-content options are configurated appropriately), when activity, a bell, or content is detected, a message is shown.
Also tidy up the bell/activity/content code in server.c slightly and fix a couple of errors.
show more ...
|
#
066b5252 |
| 15-Jul-2009 |
nicm <nicm@openbsd.org> |
Having to update NSETOPTION/NSETWINDOWOPTION when adding new options is a bit annoying and it is only use for iterating, so use a sentinel to mark the end of each array instead. Different fix for a p
Having to update NSETOPTION/NSETWINDOWOPTION when adding new options is a bit annoying and it is only use for iterating, so use a sentinel to mark the end of each array instead. Different fix for a problem pointed out by Kalle Olavi Niemitalo.
show more ...
|
#
0b2ec5a7 |
| 13-Jul-2009 |
nicm <nicm@openbsd.org> |
Having fixed flags for single-character getopt options is a bit hard to maintain and is only going to get worse as more are used. So instead, add a new uint64_t member to cmd_entry which is a bitmask
Having fixed flags for single-character getopt options is a bit hard to maintain and is only going to get worse as more are used. So instead, add a new uint64_t member to cmd_entry which is a bitmask of upper and lowercase options accepted by the command.
This means new single character options can be used without the need to add it explicitly to the list.
show more ...
|
#
1c055715 |
| 10-Jul-2009 |
nicm <nicm@openbsd.org> |
Add a default-terminal option to set the starting value of $TERM in new windows.
This is "screen" by default and must be either that or something closely related. This does makes it easier to custom
Add a default-terminal option to set the starting value of $TERM in new windows.
This is "screen" by default and must be either that or something closely related. This does makes it easier to customise it if necessary.
show more ...
|
#
eaecedb2 |
| 07-Jul-2009 |
nicm <nicm@openbsd.org> |
Rename the global options variables to be shorter and to make session options clear. No functional change, getting this out of the way to make later options changes easier.
|
#
653bc467 |
| 03-Jun-2009 |
nicm <nicm@openbsd.org> |
New session option, status-utf8, to control the interpretation of top-bit-set characters in status-left and status-right (if on, they are treated as UTF-8; otherwise passed through).
|
#
311827fb |
| 01-Jun-2009 |
nicm <nicm@openbsd.org> |
Import tmux, a terminal multiplexor allowing (among other things) a single terminal to be switched between several different windows and programs displayed on one terminal be detached from one termin
Import tmux, a terminal multiplexor allowing (among other things) a single terminal to be switched between several different windows and programs displayed on one terminal be detached from one terminal and moved to another.
ok deraadt pirofti
show more ...
|