summaryrefslogtreecommitdiffstats
path: root/tmux.h
AgeCommit message (Expand)Author
2017-05-29Add a flag to stop the prompt input being expanded.nicm
2017-05-29Function to count clients.nicm
2017-05-29Add ||, && format operators and C: to search pane content.nicm
2017-05-17Tidy command prompt callbacks and pass in the client.nicm
2017-05-15Check the terminfo(5) U8 capability and disable using UTF-8 for ACS ifnicm
2017-05-12Scrolling needs to use background colour.nicm
2017-05-12ECH needs to use background colour.nicm
2017-05-11Make environ_log prefix take a format.nicm
2017-05-10Prevent control clients from affecting the session size until they havenicm
2017-05-10Insert copy mode bindings at the right place in the command queue.nicm
2017-05-09If the current screen was complex enough, it was possible to make redrawnicm
2017-05-07Add a format for the name of the pane's mode, lets it be used as anicm
2017-05-07Up to now, tmux sees \033\033[OA as M-Up and since we turned onnicm
2017-05-04Some new notifications, mainly for active pane and current window andnicm
2017-05-03Add a format for the last search string in copy mode and fix the promptnicm
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