aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
Commit message (Collapse)AuthorAge
...
| * The resize event was never deciding to actually resize the pane if therenicm2019-08-28
| | | | | | | | | | | | | | was output in the pane faster than the timer would fire, so change how it works to only defer the timer again if the pane was actually resized within the last timer period. Reported by James Tai in GitHub issue 1880.
* | Merge branch 'obsd-master'Thomas Adam2019-08-16
|\|
| * Add a flag to reverse sort in the various choose modes, from Benjaminnicm2019-08-16
| | | | | | | | Poirier in GitHub issue 1875.
* | Merge branch 'obsd-master'Thomas Adam2019-08-15
|\|
| * Add -Z flag to rotate-window, select-pane, swap-pane, switch-client tonicm2019-08-14
| | | | | | | | preserve zoomed state. GitHub issue 1839.
* | Merge branch 'obsd-master'Thomas Adam2019-08-06
|\|
| * Add support for the SD (scroll down) escape sequence, GitHub issue 1861.nicm2019-08-05
| |
* | Merge branch 'obsd-master'Thomas Adam2019-07-15
|\|
| * Make layout_fix_offsets take a window like layout_fix_panes.nicm2019-07-15
| |
* | Merge branch 'obsd-master'Thomas Adam2019-07-10
|\|
| * Add -F to refresh-client to specify flags for control clients - one flagnicm2019-07-10
| | | | | | | | | | at the moment, no-output which turns off forwarding pane output. From Thomas Adam. GitHub issue 1834.
* | Merge branch 'obsd-master'Thomas Adam2019-07-09
|\|
| * Add a -H flag to send-keys to send literal keys given as hex numbersnicm2019-07-09
| | | | | | | | | | | | (needed for control clients to send mouse sequences). Also add some format flags for UTF-8 and SGR mouse mode. Requested by Bradley Smith in GitHub issues 1832 and 1833.
* | Merge branch 'obsd-master'Thomas Adam2019-07-06
|\|
| * Correctly clear underscore colour in grid_get_cell1, also fix structnicm2019-07-06
| | | | | | | | | | grid_cell to avoid padding. Fixes increased memory use reported by Suraj N Kurapati.
* | Merge branch 'obsd-master'Thomas Adam2019-07-01
|\|
| * Add a "fill" style attribute to clear the entire format drawing area innicm2019-07-01
| | | | | | | | a colour, GitHub issue 1815.
* | Merge branch 'obsd-master'Thomas Adam2019-06-30
|\|
| * Do not double free window if pane fails to start.nicm2019-06-30
| |
* | Merge branch 'obsd-master'Thomas Adam2019-06-27
|\|
| * Add support for underscore colours with Setulc capability, mostly fromnicm2019-06-27
| | | | | | | | Kai Moschcau.
* | Merge branch 'obsd-master'Thomas Adam2019-06-26
|\|
| * Add #define for the pane status line option position numbers.nicm2019-06-26
| |
* | Merge branch 'obsd-master'Thomas Adam2019-06-20
|\|
| * Add a per-pane option set. Pane options inherit from window options (sonicm2019-06-20
| | | | | | | | | | | | | | | | | | | | | | | | there should be no change to existing behaviour) and are set and shown with set-option -p and show-options -p. Change remain-on-exit and window-style/window-active-style to be pane options (some others will be changed later). This makes select-pane -P and -g unnecessary so no longer document them (they still work) and no longer document set-window-option and show-window-options in favour of set-option -w and show-options -w.
* | Merge branch 'obsd-master'Thomas Adam2019-06-20
|\|
| * Add a helper function to work out option table from name.nicm2019-06-20
| |
* | Merge branch 'obsd-master'Thomas Adam2019-06-18
|\|
| * Add a cmdq_continue function rather than twiddling the flag directly.nicm2019-06-18
| |
* | Merge branch 'obsd-master'Thomas Adam2019-06-14
|\|
| * Add regular expression support for the format search, match andnicm2019-06-13
| | | | | | | | substitute modifiers.
* | Merge branch 'obsd-master'Thomas Adam2019-06-07
|\|
| * Do not load the config file if the server is exiting because it failednicm2019-06-07
| | | | | | | | | | | | to start, otherwise commands like lsk which start the server again can end up looping infinitely. Also make the first client exit correctly. Problem reported by Wael M Nasreddine.
* | Merge branch 'obsd-master'Thomas Adam2019-06-05
|\|
| * Add a -v flag to source-file to show the commands and line numbers.nicm2019-06-05
| |
* | Merge branch 'obsd-master'Thomas Adam2019-06-03
|\|
| * Add new-session -X and attach-session -x to send SIGHUP to parent whennicm2019-06-03
| | | | | | | | | | detaching (like detach-client -P). From Colin Watson in GitHub issue 1773.
* | Merge branch 'obsd-master'Thomas Adam2019-05-28
|\|
| * Change display-menu from taking a single string to a set of arguments,nicm2019-05-28
| | | | | | | | which is much easier to work with. Based on a diff from Avi Halachmi.
* | Merge branch 'obsd-master'Thomas Adam2019-05-26
|\|
| * Add formats for word and line under the mouse and use them to add somenicm2019-05-26
| | | | | | | | items to the pane menu.
* | Merge branch 'obsd-master'Thomas Adam2019-05-25
|\|
| * Merge cmd_list_parse into cmd-parse.y so it can use the new aliasnicm2019-05-25
| | | | | | | | processing code.
| * Make cmd_log_argv take a printf-like format for the prefix.nicm2019-05-25
| |
* | Merge branch 'obsd-master'Thomas Adam2019-05-23
|\|
| * Break the argument escaping code into a separate function and use it tonicm2019-05-23
| | | | | | | | escape key bindings in list-keys. Also escape ~ and ; and $ properly.
* | Merge branch 'obsd-master'Thomas Adam2019-05-23
|\|
| * Replace the split parser code (cfg.c and cmd-string.c) with a singlenicm2019-05-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | parser using yacc(1). This is a major change but is clearer and simpler and allows some edge cases to be made more consistent, as well as tidying up how aliases are handled. It will also allow some further improvements later. Entirely the same parser is now used for parsing the configuration file and for string commands. This means that constructs previously only available in .tmux.conf, such as %if, can now be used in string commands (for example, those given to if-shell - not commands invoked from the shell, they are still parsed by the shell itself). The only syntax change I am aware of is that #{} outside quotes or a comment is now considered a format and not a comment, so #{ is now a syntax error (notably, if it is at the start of a line). This also adds two new sections to the man page documenting the syntax and outlining how parsing and command execution works. Thanks to everyone who sent me test configs (they still all parse without errors - but this doesn't mean they still work as intended!). Thanks to Avi Halachmi for testing and man page improvements, also to jmc@ for reviewing the man page changes.
* | Merge branch 'obsd-master'Thomas Adam2019-05-20
|\|
| * Fix ordering of source-file with multiple files and add flags to load_cfg.nicm2019-05-20
| |