summaryrefslogtreecommitdiffstats
path: root/tmux.h
AgeCommit message (Expand)Author
2020-08-25Allow colour to be spelt as color, from Boris Verkhovsky. GitHub issuenicm
2020-07-27Add a -d option to display-message to set delay, from theonekeyg atnicm
2020-07-21Fix show-buffer when run from inside tmux, GitHub issue 2314.nicm
2020-07-06Add a way for control mode clients to subscribe to a format and benicm
2020-07-04kill-window -a cannot just walk the list of windows because ifnicm
2020-06-18Add a flag to make a client wait for an empty line before exiting innicm
2020-06-16d and D keys to reset to default in customize mode.nicm
2020-06-13Add -b flags to insert a window before (like the existing -a for after)nicm
2020-06-11Add some formats for search in copy mode (search_present, search_match).nicm
2020-06-11Add a -A option to pause a pane manually.nicm
2020-06-10Instead of a buffer size limit on each pane, set a limit of 300 secondsnicm
2020-06-05Change how panes are resized so that the code is clearer and if the panenicm
2020-06-05Fix various confusion about am vs xenl.nicm
2020-06-05Add support for pausing a pane when the output buffered for a controlnicm
2020-06-02Move the code to set up a padding cell into grid.c.nicm
2020-06-02Allow UTF-8 characters of width 0 to be stored, it is useful to be ablenicm
2020-06-02Use CLOCK_MONOTONIC for timer measurement and add a timestamp to controlnicm
2020-06-01Change format callback to return value rather than storing it in the entry.nicm
2020-06-01Instead of sending all data to control mode clients as fast as possible,nicm
2020-05-26Pass the stdout file descriptor from the client as well as stdin and usenicm
2020-05-25Use the internal representation for UTF-8 keys instead of wchar_t andnicm
2020-05-25Tidy up new UTF-8 code and make it more generic.nicm
2020-05-25Make some data types consistent.nicm
2020-05-25Instead of storing all UTF-8 characters in the extended cell which meansnicm
2020-05-24Give control code its own state struct.nicm
2020-05-24Now the tty has a pointer back to the client there is no point (and anicm
2020-05-22Move client offset stuff into control.c since only control clients willnicm
2020-05-21Support code for control mode flow control: allow clients to havenicm
2020-05-16Move lazy resize from the pane to the window, there is no point innicm
2020-05-16Add an option to set the pane border lines style from a choice of singlenicm
2020-05-16Add screen write flags instead of individual bits and fix line lengthnicm
2020-05-16Add a client flag 'active-pane' which stores the active pane in thenicm
2020-05-16Expand target from client and use it to expand the prompt.nicm
2020-05-16Move editor stuff to common code in popup.c.nicm
2020-05-16Add a -D flag to ask tmux not to daemonize, useful both for running anicm
2020-05-16Add a customize mode where keys and options may be browsed and changed,nicm
2020-05-16Support embedded styles in the display-message message, GitHub issuenicm
2020-05-16Store and restore cursor position when copy mode is resized, fromnicm
2020-05-16Change message log to be per server rather than per client and includenicm
2020-05-16Change the existing client flags for control mode to apply for anynicm
2020-05-16Add formats for after hook command arguments.nicm
2020-05-16Do not hoke into struct window_pane from the tty code and instead setnicm
2020-05-16Rename and tidy some stuff in struct tty_ctx.nicm
2020-05-16Add 'e' key in buffer mode to open the buffer in an editor.nicm
2020-05-16Add -W and -T flags to command-prompt to only complete a window and anicm
2020-05-16Copy mode search improvements:nicm
2020-05-16Improve command prompt completion:nicm
2020-05-16Drop having a separate type for style options and make them all strings,nicm
2020-05-16Use a grid cell not a style for the pane style.nicm
2020-05-16Build list of paths and weed out duplicates before loading configs, andnicm