summaryrefslogtreecommitdiffstats
path: root/tmux.h
AgeCommit message (Collapse)Author
2019-08-26Add support for the SD (scroll down) escape sequence, GitHub issue 1861.nicm
2019-07-15Merge branch 'obsd-master'Thomas Adam
2019-07-15Make layout_fix_offsets take a window like layout_fix_panes.nicm
2019-07-10Merge branch 'obsd-master'Thomas Adam
2019-07-10Add -F to refresh-client to specify flags for control clients - one flagnicm
at the moment, no-output which turns off forwarding pane output. From Thomas Adam. GitHub issue 1834.
2019-07-09Merge branch 'obsd-master'Thomas Adam
2019-07-09Add a -H flag to send-keys to send literal keys given as hex numbersnicm
(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.
2019-07-06Merge branch 'obsd-master'Thomas Adam
2019-07-06Correctly clear underscore colour in grid_get_cell1, also fix structnicm
grid_cell to avoid padding. Fixes increased memory use reported by Suraj N Kurapati.
2019-07-01Merge branch 'obsd-master'Thomas Adam
2019-07-01Add a "fill" style attribute to clear the entire format drawing area innicm
a colour, GitHub issue 1815.
2019-06-30Merge branch 'obsd-master'Thomas Adam
2019-06-30Do not double free window if pane fails to start.nicm
2019-06-27Merge branch 'obsd-master'Thomas Adam
2019-06-27Add support for underscore colours with Setulc capability, mostly fromnicm
Kai Moschcau.
2019-06-26Merge branch 'obsd-master'Thomas Adam
2019-06-26Add #define for the pane status line option position numbers.nicm
2019-06-20Merge branch 'obsd-master'Thomas Adam
2019-06-20Add a per-pane option set. Pane options inherit from window options (sonicm
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.
2019-06-20Merge branch 'obsd-master'Thomas Adam
2019-06-20Add a helper function to work out option table from name.nicm
2019-06-18Merge branch 'obsd-master'Thomas Adam
2019-06-18Add a cmdq_continue function rather than twiddling the flag directly.nicm
2019-06-14Merge branch 'obsd-master'Thomas Adam
2019-06-13Add regular expression support for the format search, match andnicm
substitute modifiers.
2019-06-07Merge branch 'obsd-master'Thomas Adam
2019-06-07Do not load the config file if the server is exiting because it failednicm
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.
2019-06-05Merge branch 'obsd-master'Thomas Adam
2019-06-05Add a -v flag to source-file to show the commands and line numbers.nicm
2019-06-03Merge branch 'obsd-master'Thomas Adam
2019-06-03Add new-session -X and attach-session -x to send SIGHUP to parent whennicm
detaching (like detach-client -P). From Colin Watson in GitHub issue 1773.
2019-05-28Merge branch 'obsd-master'Thomas Adam
2019-05-28Change display-menu from taking a single string to a set of arguments,nicm
which is much easier to work with. Based on a diff from Avi Halachmi.
2019-05-26Merge branch 'obsd-master'Thomas Adam
2019-05-26Add formats for word and line under the mouse and use them to add somenicm
items to the pane menu.
2019-05-25Merge branch 'obsd-master'Thomas Adam
2019-05-25Merge cmd_list_parse into cmd-parse.y so it can use the new aliasnicm
processing code.
2019-05-25Make cmd_log_argv take a printf-like format for the prefix.nicm
2019-05-23Merge branch 'obsd-master'Thomas Adam
2019-05-23Break the argument escaping code into a separate function and use it tonicm
escape key bindings in list-keys. Also escape ~ and ; and $ properly.
2019-05-23Merge branch 'obsd-master'Thomas Adam
2019-05-23Replace the split parser code (cfg.c and cmd-string.c) with a singlenicm
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.
2019-05-20Merge branch 'obsd-master'Thomas Adam
2019-05-20Fix ordering of source-file with multiple files and add flags to load_cfg.nicm
2019-05-20Replace the various identical error callbacks with a single one in cmd-queue.c.nicm
2019-05-18Merge branch 'obsd-master'Thomas Adam
2019-05-18Move the single command flag (CMD_CONTROL) into the shared flags.nicm
2019-05-13Merge branch 'obsd-master'Thomas Adam
2019-05-13Add support for overline (SGR 53), from Ricardo Banffy.nicm
2019-05-12Merge branch 'obsd-master'Thomas Adam