summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.h
AgeCommit message (Expand)Author
2009-11-05Now all timers are events, there is no longer any need to wake up every 50 ms -Nicholas Marriott
2009-11-05Switch tty key input over to happen on a read event. This is a bit moreNicholas Marriott
2009-11-05Convert the key repeat timer to an event.Nicholas Marriott
2009-11-04Change window name change to use a timer event rather than a gettimeofday()Nicholas Marriott
2009-11-04Move status timer check into the global once-per-second timer, this could maybeNicholas Marriott
2009-11-04Use timeout events for the identify and message timers.Nicholas Marriott
2009-11-04Don't reenlist the client imsg event every loop, instead have a small functionNicholas Marriott
2009-11-04Bye-bye buffer*.c.Nicholas Marriott
2009-11-04Convert the window pane (pty master side) fd over to use a bufferevent.Nicholas Marriott
2009-11-04Switch window pane pipe redirect fd over to a bufferevent.Nicholas Marriott
2009-11-04Switch tty fds over to a bufferevent.Nicholas Marriott
2009-11-04Switch jobs over to use a bufferevent.Nicholas Marriott
2009-11-04Initial changes to move tmux to libevent.Nicholas Marriott
2009-11-03Add an activity time for clients, like for sessions, and change session andNicholas Marriott
2009-11-03If it isn't available explicitly, work out the current client in a similar wayNicholas Marriott
2009-11-03Change session and client activity and creation time members to have moreNicholas Marriott
2009-11-03tv member of struct paste_buffer is updated but not otherwise used, so removeNicholas Marriott
2009-11-02Double the escape timer (the time after a \033 is received before tmux gives upNicholas Marriott
2009-11-01Add a flag for jobs that shouldn't be freed after they've died and use it forNicholas Marriott
2009-10-28If any client currently displaying a window pane has more than 1 KB of outputNicholas Marriott
2009-10-27Move the poll registration functions into the server-*.c files.Nicholas Marriott
2009-10-26Rewrite xterm-keys code (both input and output) so that works (doesn't alwaysNicholas Marriott
2009-10-26Support the (mostly new) function key+modifier caps (kIC-kIC7). Most of theseNicholas Marriott
2009-10-26Rename keypad keys to something more useful.Nicholas Marriott
2009-10-25Remove the -d flag to tmux and just use op/AX to detect default colours.Nicholas Marriott
2009-10-22Split the server code handling clients, jobs and windows off into separateNicholas Marriott
2009-10-21Client tidying: get rid of client_ctx struct in favour of two variables inNicholas Marriott
2009-10-21Remove unused function.Nicholas Marriott
2009-10-20Try to reduce the UTF-8 mess.Nicholas Marriott
2009-10-20UTF-8 combined character fixes.Nicholas Marriott
2009-10-20Nuke stray blank line.Nicholas Marriott
2009-10-17Instead of having a complicated check to see if the cursor is in the lastNicholas Marriott
2009-10-13Move lines into the history when scrolling even if the scroll region is notNicholas Marriott
2009-10-13Add mode keys to move the cursor to the top, middle and bottom of the screen.Nicholas Marriott
2009-10-12When drawing lines that have wrapped naturally, don't force a newline butNicholas Marriott
2009-10-12When backspace is received at the beginning of a line and the previous line wasNicholas Marriott
2009-10-12Use relative cursor movement instead of absolute when possible and whenNicholas Marriott
2009-10-12Similarly add a tty_cursor_pane function to tidy up most of the calls.Nicholas Marriott
2009-10-12_absolute is redundant, just use tty_region.Nicholas Marriott
2009-10-12Cleanup: use two functions for region setting, one for absolute and one insideNicholas Marriott
2009-10-11Add a pipe-pane command to allow a pane to be piped to a shell command, forNicholas Marriott
2009-10-11Collect status from dead jobs and don't invoke the callback until bothNicholas Marriott
2009-10-11Clean up by introducing a wrapper struct for mouse clicks rather than passingNicholas Marriott
2009-10-10Put all jobs on a global all_jobs list and use that in server.c instead ofNicholas Marriott
2009-10-10Split list-panes off from list-windows.Nicholas Marriott
2009-10-10Rather than running status-left, status-right and window title #() with popenNicholas Marriott
2009-10-10New option, mouse-select-pane. If on, the mouse may be used to select theNicholas Marriott
2009-10-10Add "grouped sessions" which have independent name, options, current window andNicholas Marriott
2009-10-10Support for individual session idle time locking. May be enabled by turning offNicholas Marriott
2009-10-09The UTF-8 detection idea doesn't work and I am reasonably happy with theNicholas Marriott