aboutsummaryrefslogtreecommitdiff
path: root/cmd-pipe-pane.c
Commit message (Collapse)AuthorAge
...
* Switch window pane pipe redirect fd over to a bufferevent.Nicholas Marriott2009-11-04
|
* Initial changes to move tmux to libevent.Nicholas Marriott2009-11-04
| | | | | | | | | This moves the client-side loops are pretty much fully over to event-based only (tmux.c and client.c) but server-side (server.c and friends) treats libevent as a sort of clever poll, waking up after every event to run various things. Moving the server stuff over to bufferevents and timers and so on will come later.
* Nuke dead store.Nicholas Marriott2009-10-21
|
* Add a pipe-pane command to allow a pane to be piped to a shell command, forNicholas Marriott2009-10-11
example: pipe-pane 'cat >~/out' No arguments stops outputing and closes the pipe; the -o flag toggles a pipe and on and off (useful for key bindings). Suggested by espie@.