Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Sync OpenBSD patchset 181: | Tiago Cunha | 2009-07-28 |
| | | | | | | | | | | | | | | | | | 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. | ||
* | Sync OpenBSD patchset 145: | Tiago Cunha | 2009-07-20 |
| | | | | | Kill some dead stores and fix a null pointer deref, found by clang. | ||
* | Memory could be leaked if a second prompt or message appeared while another was | Nicholas Marriott | 2009-07-17 |
| | | | | | | still present, so add a separate prompt free callback and make the _clear function responsible for calling it if necessary (rather than the individual | ||
* | Make status_message_set a variadic printf-like function. No functional change - | Nicholas Marriott | 2009-07-15 |
| | | | | | helpful for a couple of things coming soon. | ||
* | Having fixed flags for single-character getopt options is a bit hard to | Nicholas Marriott | 2009-07-14 |
| | | | | | | | | | | 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. | ||
* | And another memory leak. | Nicholas Marriott | 2009-02-16 |
| | |||
* | Memory leak. | Nicholas Marriott | 2009-02-16 |
| | |||
* | Move status prompt/message init and teardown into status.c. | Nicholas Marriott | 2009-02-13 |
| | |||
* | move-window bound to ., from joshe. | Nicholas Marriott | 2009-01-30 |
| | |||
* | Pass return code from _exec; allow command sequences to work from the ↵ | Nicholas Marriott | 2009-01-19 |
| | | | | command line. | ||
* | find-window command. | Nicholas Marriott | 2009-01-18 |
| | |||
* | Support command sequences separated by " ; ". Also clean up command printing. | Nicholas Marriott | 2009-01-18 |
| | |||
* | Rename some flags I'm not happy about. | Nicholas Marriott | 2009-01-14 |
| | |||
* | command-prompt now accepts a single argument, a template string. Any ↵ | Nicholas Marriott | 2009-01-13 |
| | | | | | | | | | | | occurrences of %% in this string are replaced by whatever is entered at the prompt and the result is executed as a command. This allows things like (now bound by default): bind , command-prompt "rename-window %%" Or my favourite: bind x command-prompt "split-window 'man %%'" | ||
* | Server locking. set-password and lock-server commands, plus automatic locking. | Nicholas Marriott | 2009-01-11 |
| | |||
* | Trim. | Nicholas Marriott | 2008-09-26 |
| | |||
* | Environment variables in configuration file. | Nicholas Marriott | 2008-07-25 |
| | |||
* | Oops, forgot to commit move-window. Also add select-prompt to allow index to ↵ | Nicholas Marriott | 2008-06-25 |
| | | | | be typed. | ||
* | Lose unnecessary flags on context. | Nicholas Marriott | 2008-06-21 |
| | |||
* | Handle commented lines. | Nicholas Marriott | 2008-06-19 |
| | |||
* | Command prompt for interactive commands. | Nicholas Marriott | 2008-06-19 |