aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
Commit message (Collapse)AuthorAge
...
| * Replace the various identical error callbacks with a single one in cmd-queue.c.nicm2019-05-20
| |
* | Merge branch 'obsd-master'Thomas Adam2019-05-18
|\|
| * Move the single command flag (CMD_CONTROL) into the shared flags.nicm2019-05-18
| |
* | Merge branch 'obsd-master'Thomas Adam2019-05-13
|\|
| * Add support for overline (SGR 53), from Ricardo Banffy.nicm2019-05-13
| |
* | Merge branch 'obsd-master'Thomas Adam2019-05-12
|\|
| * Add simple menus to tree, client, buffer modes.nicm2019-05-12
| |
* | Merge branch 'obsd-master'Thomas Adam2019-05-12
|\|
| * Remove menu_create_from_items, I thought I would use it for some laternicm2019-05-12
| | | | | | | | work but I don't need it.
* | Merge branch 'obsd-master'Thomas Adam2019-05-10
|\|
| * Add support for simple menus usable with mouse or keyboard. New commandnicm2019-05-10
| | | | | | | | | | display-menu shows a menu (bound to the mouse on status line by default) and a couple of extra formats for the default menus.
* | Merge branch 'obsd-master'Thomas Adam2019-05-10
|\|
| * Add a function to draw a simple menu onto a screen.nicm2019-05-10
| |
* | Merge branch 'obsd-master'Thomas Adam2019-05-09
|\|
| * Save mouse buttons as well as position.nicm2019-05-09
| |
* | Merge branch 'obsd-master'Thomas Adam2019-05-09
|\|
| * send-keys also needs to insert key commands in the right order.nicm2019-05-09
| |
* | Merge branch 'obsd-master'Thomas Adam2019-05-08
|\|
| * Add a flag to redraw only the overlay, and remove the overlay on resize.nicm2019-05-08
| |
* | Merge branch 'obsd-master'Thomas Adam2019-05-07
|\|
| * Move around the display-panes identify code to make it a bit morenicm2019-05-07
| | | | | | | | | | generic and hide the display-panes specific bits into cmd-display-panes.c.
* | Merge branch 'obsd-master'Thomas Adam2019-05-07
|\|
| * Treat keys in identify mode (display-panes) specially and handle themnicm2019-05-07
| | | | | | | | | | | | immediately rather than queuing them (the command can block the queue which means they were not being seen until it finished which was too late). Reported by denis@ and solene@, ok solene@.
| * Do not use evbuffer_add_buffer because it is destructive and doesn'tnicm2019-05-07
| | | | | | | | work in newer libevent.
* | Merge branch 'obsd-master'Thomas Adam2019-05-03
|\|
| * Allow panes to be empty (no command), output can be piped to them withnicm2019-05-03
| | | | | | | | split-window or display-message -I.
* | Merge branch 'obsd-master'Thomas Adam2019-05-03
|\|
| * Correct ordering when adding after an existing item.nicm2019-05-03
| |
| * Instead of processing keys all together, put them up on the clientnicm2019-05-03
| | | | | | | | | | command queue so they are ordered correctly with the commands that they execute.
* | Merge branch 'obsd-master'Thomas Adam2019-04-28
|\|
| * Support multiple occurances of the same argument. Use this for a newnicm2019-04-28
| | | | | | | | | | | | flag -e to new-window, split-window, respawn-window, respawn-pane to pass environment variables into the newly created process. From Steffen Christgau in GitHub issue 1697.
* | Merge branch 'obsd-master'Thomas Adam2019-04-27
|\|
| * Merge hooks into options and make each one an array option. This allowsnicm2019-04-26
| | | | | | | | | | | | | | multiple commands to be easily bound to one hook. set-hook and show-hooks remain but they are now variants of set-option and show-options. show-options now has a -H flag to show hooks (by default they are not shown).
* | Merge branch 'obsd-master'Thomas Adam2019-04-25
|\|
| * Make options_tostring allocate its result instead of using a stacknicm2019-04-25
| | | | | | | | buffer (needed for something in the future).
* | Merge branch 'obsd-master'Thomas Adam2019-04-23
|\|
| * Indicate an array option with a flag rather than a special type so thatnicm2019-04-23
| | | | | | | | in future will not have to be strings.
| * Break new window and pane creation common code from various commands andnicm2019-04-17
| | | | | | | | window.c into a separate file spawn.c.
* | Break new window and pane creation common code from various commands andNicholas Marriott2019-04-07
| | | | | | | | window.c into a separate file spawn.c.
* | Merge branch 'obsd-master'Thomas Adam2019-04-02
|\|
| * Add an argument to copy commands to set the prefix for the buffer name,nicm2019-04-02
| | | | | | | | allows buffers for different sessions to be named separately.
| * Store and restore cursor across reflow by working out a position basednicm2019-04-02
| | | | | | | | | | on unwrapped lines, rather than a grid offset. Fixes problems reported by Thomas Sattler and Paul de Weerd.
* | Merge branch 'obsd-master'Thomas Adam2019-03-25
|\|
| * Add StatusDefault binding for the mouse on any otherwise unassignednicm2019-03-25
| | | | | | | | parts of the status line, from Avi Halachmi.
* | Merge branch 'obsd-master'Thomas Adam2019-03-20
|\|
| * Improve cursor positioning after reflow by storing the position as annicm2019-03-20
| | | | | | | | offset into the entire history before reflow and restoring it aftewards.
* | Merge branch 'obsd-master'Thomas Adam2019-03-19
|\|
| * The individual -fg, -bg and -attr options have been deprecated (innicm2019-03-18
| | | | | | | | | | favour of -style), undocumented and hidden from show-options since 2014. Remove them, except for status-fg and status-bg.
* | Merge branch 'obsd-master'Thomas Adam2019-03-18
|\|
| * Extend the #[] style syntax and use that together with previous formatnicm2019-03-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | changes to allow the status line to be entirely configured with a single option. Now that it is possible to configure their content, enable the existing code that lets the status line be multiple lines in height. The status option can now take a value of 2, 3, 4 or 5 (as well as the previous on or off) to configure more than one line. The new status-format array option configures the format of each line, the default just references the existing status-* options, although some of the more obscure status options may be eliminated in time. Additions to the #[] syntax are: "align" to specify alignment (left, centre, right), "list" for the window list and "range" to configure ranges of text for the mouse bindings. The "align" keyword can also be used to specify alignment of entries in tree mode and the pane status lines.