aboutsummaryrefslogtreecommitdiff
path: root/cmd-list.c
Commit message (Collapse)AuthorAge
* Sync OpenBSD patchset 1138:Tiago Cunha2012-06-18
| | | | | | | | | Add a skeleton mode to tmux (called "control mode") that let's tmux commands be sent and output received on stdout. This can be used to integrate with other terminal emulators and should allow some other things to be made simpler later. More to come so doesn't do much yet and deliberately not documented.
* Expand the Id keyword. Tiago Cunha2011-07-09
|
* |---------------------Nicholas Marriott2010-12-06
| | | | | | | | | | | | | | | | | | |PatchSet 781 |Date: 2010/10/29 21:11:57 |Author: nicm |Branch: HEAD |Tag: (none) |Log: |We now send argv to the server after parsing it in the client to get the |command, so the client should not modify it. Instead, take a copy. Fixes |parsing command lists, reported by mcbride@. | |Members: | cmd-list.c:1.5->1.6 | cmd.c:1.45->1.46 | tmux.h:1.244->1.245
* Sync OpenBSD patchset 727:Tiago Cunha2010-07-02
| | | | | | | | | | | | | Setting the cmdlist pointer in the bind-key to NULL to prevent it being freed after the command is executing is bogus because it may still be needed if the same command is going to be executed again (for example if you "bind-key a bind-key b ..."). Making a copy is hard, so instead add a reference count to the cmd_list. While here, also print bind-key -n and the rest of the flags properly. Fixes problem reported by mcbride@.
* Reset output functions too when changing client after attaching.Nicholas Marriott2010-03-18
|
* Sync OpenBSD patchset 626:Tiago Cunha2010-02-02
| | | | | | Don't stop parsing command sequences when a command requests the client to stick around (attach-session/new-session).
* Sync OpenBSD patchset 181:Tiago Cunha2009-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.
* Space trimmage mega-diff.Nicholas Marriott2009-05-04
|
* Support "neww; neww" as well "neww ; neww".Nicholas Marriott2009-04-30
|
* Memory leak.Nicholas Marriott2009-02-16
|
* Pass return code from _exec; allow command sequences to work from the ↵Nicholas Marriott2009-01-19
| | | | command line.
* Support command sequences separated by " ; ". Also clean up command printing.Nicholas Marriott2009-01-18