summaryrefslogtreecommitdiffstats
path: root/tmux.h
AgeCommit message (Expand)Author
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
2020-05-16Add extension terminfo(5) capabilities for margins.nicm
2020-05-16Remove support for iTerm2's DSR 1337 extension and use the CSI > qnicm
2020-04-22Indicate the marked pane in choose mode in reverse and add key to setnicm
2020-04-22Change so main-pane-width and height can be given as a percentage.nicm
2020-04-20Apply terminal-overrides after terminal detection, it always takesnicm
2020-04-20Change how sync works to always send the end sequence after all outputnicm
2020-04-20Tidy up the terminal detection and feature code and add named sets ofnicm
2020-04-18The PANE_REDRAW flag bit might be needed by other panes so we can'tnicm
2020-04-18A resize can realloc so cannot cache the value of the list pointer.nicm
2020-04-18There is no point in keeping a bunch of different text buffers for eachnicm
2020-04-18Use size_t not u_int for the bytes counters and fix a const missing.nicm
2020-04-18Bring back previons fix to only redraw panes that need it after a redrawnicm
2020-04-18Add formats for pane written/skipped bytes for debugging.nicm
2020-04-18Add a flag to protect against nested syncs and add some extra logging tonicm
2020-04-18Revert previous, there is still a problem.nicm
2020-04-18When a redraw is deferred because the terminal hasn't finished readingnicm
2020-04-17Make sure the cursor position is still on screen after we have trimmednicm
2020-04-16Only start and stop sync for operations like clear and scroll wherenicm
2020-04-16Send secondary device attributes instead of primary which gives us a bitnicm
2020-04-16Move the UTF-8 flag to terminal flags.nicm
2020-04-16Add a helper function to get the terminal flags.nicm
2020-04-16Add support for the iTerm2 sychronized updates escape sequence whichnicm
2020-04-16Show signal name when process exits rather than number.nicm
2020-04-15Instead of fixing with the cursor position when the copied screen isnicm
2020-04-15Use mode-style for selected items, like choose modes. GitHub issue 2166.nicm
2020-04-15Use grid_empty_line rather than memset when adding new lines on resize.nicm
2020-04-14Provide an accessor for the running queue item and use it to not letnicm
2020-04-13Make client -c and -t handling common in cmd-queue.c and try to benicm
2020-04-13Add helpers for the simple case of parse string and add to command queue.nicm
2020-04-13When parsing strings, put all commands in one group even if there arenicm
2020-04-13When adding a list of commands to the queue, instead of automaticallynicm
2020-04-13Move cmdq_state into cmd-queue.c.nicm
2020-04-13Rename cmdq_shared to cmdq_state which will better reflect what it isnicm