summaryrefslogtreecommitdiffstats
path: root/tmux.h
AgeCommit message (Expand)Author
2016-10-16Use the notify name string instead of going via an enum and changenicm
2016-10-16Provide a way for hooks to tag formats onto the commands they fire sonicm
2016-10-16Notifys can go via the command queue instead of using their own queue.nicm
2016-10-16Mass rename struct cmd_q to struct cmdq_item and related.nicm
2016-10-16Rewrite command queue handling. Each client still has a command queue,nicm
2016-10-15Give window_create and window_create1 better names.nicm
2016-10-15Rename a function for consistency and some spacing nits.nicm
2016-10-15Fire hooks on the simple notifys (window-renamed and session-renamed),nicm
2016-10-15Drain notifys once at the end of the server loop instead of doing itnicm
2016-10-13Trying to do hooks generically is way too complicated and unreliable andnicm
2016-10-13Add support for BCE (background colour erase). This makes various escapenicm
2016-10-13Some improvements and bug fixes for hooks:nicm
2016-10-12bind-key -c has gone, remove from man page, and unused table declarations.nicm
2016-10-12Drop the edit mode key tables and just use fixed key bindings for thenicm
2016-10-12Redraw selection in tty_draw_line, so it appears when redrawing wholenicm
2016-10-12The repeat prompt in both emacs and vi (and the old one in tmux) doesn'tnicm
2016-10-11Some other stuff that can be local to one file.nicm
2016-10-11Add static in window-*.c and move some internal functions out of tmux.h.nicm
2016-10-11Support double and triple clicks (they are cumulative, so double isnicm
2016-10-11Fundamental change to how copy mode key bindings work:nicm
2016-10-11Support UTF-8 entry into the command prompt.nicm
2016-10-10Do not allow the opposite pane to resize when dragging with the mousenicm
2016-10-10Some more static.nicm
2016-10-09Make the CLIENT_STATUS flag imply that pane status lines are redrawn ifnicm
2016-10-05Keep buffer creation time and add accessors for it and the order number.nicm
2016-09-28Rate limit TIOCSWINSZ on a timer to avoid programs getting hammered withnicm
2016-09-16Swap watermarks from high (4096) to low (128) when we get full buffersnicm
2016-09-12Allow repeat count to be specified in mode key tables with bind-key -R,nicm
2016-09-04Add support for performing a full width split (with splitw -f), rathernicm
2016-09-02Remember the number of lines scrolled into the history (versus clearednicm
2016-08-03Fix minimum size when pane status line is enabled, reported by Y Petremann.nicm
2016-07-15Tweak output of environment logging.nicm
2016-07-15Log environment to new panes.nicm
2016-07-15Don't update cells in each block of data read from a pane immediately,nicm
2016-06-16Allow a command to be specified to display-panes, similar tonicm
2016-06-15Copy mode needs to keep the original grid intact so it can copy from itnicm
2016-06-06Cache selected state so that cells going from selected to unselected are notnicm
2016-06-06Insert new panes after the pane being split in the list rather thannicm
2016-05-30Cache the window styles and do not look up the window-style optionsnicm
2016-05-27Use getprogname() instead of __progname to make portability easier.nicm
2016-05-12- Rework load_cfg() error handling a little.tim
2016-05-01Use the same code for half page scrolling as full, from Michal Mazurek.nicm
2016-04-30tty_client_ready can not be internal to tty.c again.nicm
2016-04-29Add option to include status text in the pane borders. Ifnicm
2016-04-29The backoff timer is causing no end of trouble with disconnected clientsnicm
2016-04-29Make the grid_cell passed into screen_write_* const.nicm
2016-04-27Add next/previous paragraph, from J Raynor.nicm
2016-03-18Instead of reusing MouseUp at the finish of a drag, add a new keynicm
2016-03-02Handle wcwidth() and mbtowc() failures in better style and dropnicm
2016-03-01Use system wcwidth() instead of carrying around UTF-8 width tables.nicm