summaryrefslogtreecommitdiffstats
path: root/tmux.h
AgeCommit message (Expand)Author
2017-05-01In order that people can use formats like #D in #() in the status linenicm
2017-04-28Log what is happening with window and session reference counts much morenicm
2017-04-25Make full width panes try to play more nicely with terminal copy andnicm
2017-04-25When we write out the grid including escape sequences, an SGR 0 needs tonicm
2017-04-25Do not update TERM into config file parsing has finished.nicm
2017-04-22Get rid of the extra layer of flags and cmd_prepare() and just store thenicm
2017-04-21Make the cmd_find_* functions more obvious when looking for a client,nicm
2017-04-21Style nits and an unused struct.nicm
2017-04-21Add cmd_find_from_winlink_pane and use it in a couple of places, andnicm
2017-04-21It is annoying that the copy mode key table (or any other key table)nicm
2017-04-21More unnecessary arguments now winlink points back to session.nicm
2017-04-21Store state shared between multiple commands in the queue in a sharednicm
2017-04-20Use fdforkpty() instead of our own unwrapped versions.nicm
2017-04-20Now that struct winlink has a session pointer, can remove some arguments.nicm
2017-04-20There is no real need for window_printable_flags to allocate, make itnicm
2017-04-20If a #() command doesn't exit, use its most recent line of output (itnicm
2017-04-19Add a suspend helper function, and do not allow detaching or suspendingnicm
2017-04-19When the data we have buffered to write to a terminal grows beyond anicm
2017-04-18Revert use of DECSLRM on iTerm2, it doesn't help as much as we throught,nicm
2017-04-18Detect iTerm2 and use DECSLRM for it as well.nicm
2017-04-18Add a format for number of bytes writtent to client, useful for debugging.nicm
2017-04-17Remove a couple of redraw flags that no longer have any effect.nicm
2017-04-05Give each client a name. This defaults to the tty name as before butnicm
2017-03-22Add support for the strikethrough attribute (SGR 9), using the new smxxnicm
2017-03-09Move the client identify (display-panes) code into server-client.c.nicm
2017-03-09Move server_fill_environ into environ.c and move some other common codenicm
2017-03-08Add a helper function for the most common format_create/defaults/expandnicm
2017-02-27If splitw -b is used, insert the new pane before the current one in thenicm
2017-02-21Don't need is1,is2,is3 so remove them.nicm
2017-02-14Make source-file look for files relative to the client working directorynicm
2017-02-10Don't use a bufferevent for the tty, so we can keep better track of whatnicm
2017-02-09Instead of numbering session groups, give them a name which may be givennicm
2017-02-09Break the message storage function into its own function, useful fornicm
2017-02-08Another helper function to write to terminal and log.nicm
2017-02-08Add support for scroll up escape sequence (CSI S) and use it whennicm
2017-02-08Collect sequences of printable ASCII characters and process themnicm
2017-02-08Trying to avoid the occasional newline by saving the last cell on screennicm
2017-02-08Remove event watermarks, don't work well enough to be worth it.nicm
2017-02-06Use DECFRA on VT420 compatible terminals (so, xterm) and ED on allnicm
2017-02-06Do not go through the whole attributes setting process if the new cellnicm
2017-02-06Add BCE for clear to start of screen, which was somehow missed.nicm
2017-02-06Cancel key table when switching session, unless the key is going tonicm
2017-02-06Only redraw the modified character when adding combining characters, notnicm
2017-02-03Cache status line position to reduce option lookups during output.nicm
2017-02-03Add a window or pane id "tag" to each format tree and use it to separatenicm
2017-02-01Implement "all event" (1003) mouse mode but in a way that works. Thenicm
2017-01-30When a flag option is used in a format, it should use the number formnicm
2017-01-25Revert previous for now, it will break TERM=screen.nicm
2017-01-25If xterm-keys is on, use xterm(1) style keys for Home and End as well asnicm
2017-01-24Make update-environment an array as well.nicm