Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-22 | Fix some spacing nits. | Nicholas Marriott | |
2014-10-02 | Update status when pane selected with mouse, from Balazs Kezes. | Nicholas Marriott | |
2014-09-01 | Various minor style and spacing nits. | Nicholas Marriott | |
2014-08-09 | Remove support for the continuous reporting "any" mouse mode which never | Nicholas Marriott | |
really worked properly and is rarely used. | |||
2014-07-13 | An EOF is a good reason to close a connection. | Kenneth R Westerback | |
ok nicm@ | |||
2014-07-13 | If a client is killed while suspended with ^Z so has gone through the | Nicholas Marriott | |
MSG_EXITED dance, don't try to resume it since a) it's pointless and b) the tty structures have been cleaned up and tmux will crash. | |||
2014-04-16 | Because we pass the file descriptor from client to server, tmux can't | Nicholas Marriott | |
usefully work if stdin is /dev/tty. Complain about it more clearly. | |||
2014-02-23 | Change terminal-overrides to a server option (now that we have them), it | Nicholas Marriott | |
doesn't make much sense as a session option. | |||
2014-02-17 | Be consistent and allow only mouse down and mouse wheel for any pane | Nicholas Marriott | |
with mouse-select-pane rather than just in copy mode, reported by Balazs Kezes. | |||
2014-02-14 | Make status-interval of zero work as indented. | Nicholas Marriott | |
2014-02-14 | Style nit - no space between function name and bracket. | Nicholas Marriott | |
2014-01-31 | Break up and simplify screen_redraw_screen. | Nicholas Marriott | |
2013-11-13 | from nicm: : handle msgbuf_write() returning EAGAIN | Sebastian Benoit | |
2013-10-20 | Do not run any command line command from the client which starts the | Nicholas Marriott | |
server until after the configuration file completes. This prevents it racing against run-shell or if-shell in .tmux.conf that run in the background. | |||
2013-10-11 | Don't leak file descriptors in the rare MSG_VERSION case. From Chris | Nicholas Marriott | |
Johnsen. | |||
2013-10-10 | We accidentally haven't been using $TMUX to work out the session for a | Nicholas Marriott | |
while and in fact it is less useful that using the client ttyname. So don't bother and don't pass it from the client. If we need it in future it is in c->environ. | |||
2013-10-10 | Don't look at string[length - 1] if length == 0. | Nicholas Marriott | |
2013-10-10 | Alter how tmux handles the working directory to internally use file | Nicholas Marriott | |
descriptors rather than strings. - Each session still has a current working directory. - New sessions still get their working directory from the client that created them or its attached session if any. - New windows are created by default in the session working directory. - The -c flag to new, neww, splitw allows the working directory to be overridden. - The -c flag to attach let's the session working directory be changed. - The default-path option has been removed. To get the equivalent to default-path '.', do: bind c neww -c $PWD To get the equivalent of default-path '~', do: bind c neww -c ~ This also changes the client identify protocol to be a set of messages rather than one as well as some other changes that should make it easier to make backwards-compatible protocol changes in future. | |||
2013-10-10 | Similarly for MSG_COMMAND - allow full imsg limit not arbitrary 2048. | Nicholas Marriott | |
2013-10-10 | Instead of fixed size buffers for some messages, send only the string | Nicholas Marriott | |
length. | |||
2013-10-10 | retcode -> retval for exit message. | Nicholas Marriott | |
2013-10-10 | Merge IDENTIFY_* flags with CLIENT_* flags. | Nicholas Marriott | |
2013-10-10 | Allow the file descriptor received from the client to be -1. | Nicholas Marriott | |
2013-06-23 | Focus events can cause trouble if left on and they can't be turned off | Nicholas Marriott | |
during idle periods (like the other states are) because we'd miss events. So add a server option to control them. Defaults to off. | |||
2013-06-23 | Always push a focus event when the application turns it on, prompted by | Nicholas Marriott | |
discussion with Hayaki Saito a while ago. | |||
2013-04-21 | Don't let server_client_check_focus use a dead bufferevent, from Romain | Nicholas Marriott | |
Francoise. | |||
2013-04-10 | Remove some code not needed on OpenBSD. | Nicholas Marriott | |
2013-03-27 | Remove tmux's (already minimal) 88 colour support. Such terminals are | Nicholas Marriott | |
few and unnecessary. | |||
2013-03-25 | Sort includes and fix spaces. | Nicholas Marriott | |
2013-03-25 | Use single stdout and stderr for control clients. | Nicholas Marriott | |
2013-03-25 | Send DSC 1000p at the beginning of a -CC client's lifetime and ST and | Nicholas Marriott | |
the end, from George Nachman. | |||
2013-03-24 | Add resize-pane -Z to temporary zoom the active pane to occupy the full | Nicholas Marriott | |
window or unzoom (restored to the normal layout) if it already zoomed, bound to C-b z by default. The pane is unzoomed on pretty much any excuse whatsoever. We considered making this a new layout but the requirements are quite different from layouts so decided it is better as a special case. Each current layout cell is saved, a temporary one-cell layout generated and all except the active pane set to NULL. Prompted by suggestions and scripts from several. Thanks to Aaron Jensen and Thiago Padilha for testing an earlier version. | |||
2013-03-24 | Add a command queue to standardize and simplify commands that call other | Nicholas Marriott | |
commands and allow a command to block execution of subsequent commands. This allows run-shell and if-shell to be synchronous which has been much requested. Each client has a default command queue and commands are consumed one at a time from it. A command may suspend execution from the queue by returning CMD_RETURN_WAIT and then resume it by calling cmd_continue() - for example run-shell does this from the callback that is fired after the job is freed. When the command queue becomes empty, command clients are automatically exited (unless attaching). A callback is also fired - this is used for nested commands in, for example, if-shell which can block execution of the client's cmdq until a new cmdq becomes empty. Also merge all the old error/info/print functions together and lose the old curclient/cmdclient distinction - a cmdq is bound to one client (or none if in the configuration file), this is a command client if c->session is NULL otherwise an attached client. | |||
2013-03-24 | Handle focus events from the terminal, from Aaron Jensen. | Nicholas Marriott | |
2013-03-24 | Do pane resize ioctls once at the end of the server loop rather than | Nicholas Marriott | |
immediately. | |||
2013-03-24 | Add support for focus notifications when tmux pane changes, based on | Nicholas Marriott | |
work by Aaron Jensen. | |||
2013-03-22 | Need to set clients in context before changing their reference count. | Nicholas Marriott | |
2013-03-22 | Remove unnecessary initializers of cmd_ctx. | Nicholas Marriott | |
2013-03-22 | Add functions to allocate and free command contexts rather than doing it | Nicholas Marriott | |
all on the stack. | |||
2013-03-22 | No more lint means no more ARGSUSED. | Nicholas Marriott | |
2013-03-21 | Add various checks to turn off bits that can't work in control mode | Nicholas Marriott | |
(such as lock). | |||
2013-03-21 | Add a format client_prefix which is 1 if prefix key has been | Nicholas Marriott | |
pressed, used for example #{?client_prefix,X,Y}. Also a few extra server_client_status needed. | |||
2013-01-30 | Unused variable/type nit from Thomas Adam. | Nicholas Marriott | |
2013-01-18 | Style nits - return (x) not return x. | Nicholas Marriott | |
2013-01-15 | If timing between keys is less than (by default) 1 millisecond, assume | Nicholas Marriott | |
the text is being pasted. assume-paste-time option changes the value (0 disables). Based on a diff from Marcin Kulik. | |||
2012-10-26 | Make mouse event structure clearer by defining events (up, click, drag) | Nicholas Marriott | |
and simplifying how buttons and wheels are represented, from Ailin Nemui. Should be no functional changes. | |||
2012-09-27 | Do not leak file descriptor if not a tty, reported by Sebastien Marie. | Nicholas Marriott | |
2012-09-03 | Send notifications to control clients. Also don't redraw client when | Nicholas Marriott | |
suspended. | |||
2012-07-11 | Make command exec functions return an enum rather than -1/0/1 values and | Nicholas Marriott | |
add a new value to mean "leave client running but don't attach" to fix problems with using some commands in a command sequence. Most of the work by Thomas Adam, problem reported by "jspenguin" on SF bug 3535531. | |||
2012-07-10 | xfree is not particularly helpful, remove it. From Thomas Adam. | Nicholas Marriott | |