From e7a530fe4c0f8e0f807daf6a1b80d86c67c93e1b Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 28 May 2019 15:48:31 +0100 Subject: Next will be 3.1. --- CHANGES | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'CHANGES') diff --git a/CHANGES b/CHANGES index 097d7228..56bf28b0 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +CHANGES FROM 3.0 to X.X + +XXX + CHANGES FROM 2.9 to 3.0 * Add an addition form of string syntax in the configuration file - {}. This -- cgit From e8814a7e9308dfd4617ce01bc0aa3dba15f177c0 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 11 Jun 2019 14:23:47 +0100 Subject: Add to CHANGES. --- CHANGES | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'CHANGES') diff --git a/CHANGES b/CHANGES index edd4751b..200e68c8 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,9 @@ CHANGES FROM 3.0 to X.X -XXX +* Add new-session -X and attach-session -x to send SIGHUP to parent when + detaching (like detach-client -P). + +* Support for octal escapes in strings (such as \007). CHANGES FROM 2.9 to 3.0 -- cgit From 7bb8ab1c0efefebcaeb25c5694bc8ac6506a7396 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 14 Jun 2019 12:40:35 +0100 Subject: Add a bit to {}. --- CHANGES | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'CHANGES') diff --git a/CHANGES b/CHANGES index abd91a80..1d033877 100644 --- a/CHANGES +++ b/CHANGES @@ -12,7 +12,9 @@ CHANGES FROM 2.9 to 3.0 take other commands as string arguments to be expressed more clearly and without additional escaping. - A literal { and } must now be escaped or quoted, for example '{' and '}'. + A literal { and } or a string containing { or } must now be escaped or + quoted, for example '{' and '}' instead of { or }, or 'X#{foo}' instead of + X#{foo}. * New <, >, <= and >= comparison operators for formats. -- cgit From ae83a5b0105942abdb154502745897cdc8a15d4d Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 14 Jun 2019 16:09:49 +0100 Subject: Add to CHANGES. --- CHANGES | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) (limited to 'CHANGES') diff --git a/CHANGES b/CHANGES index 1d033877..59c11157 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,24 @@ CHANGES FROM 3.0 to X.X +* Resize panes lazily - do not resize unless they are in an attached, active + window. + +* Add regular expression support for the format search, match and substitute + modifiers and make them able to ignore case. + +* Do not use $TMUX to find the session because for windows in multiple sessions + it is wrong as often as it is right, and for windows in one session it is + pointless. Instead use TMUX_PANE if it is present. + +* Do not always resize the window back to its original size after applying a + layout, keep it at the layout size until it must be resized (for example when + attached and window-size is not manual). + * Add new-session -X and attach-session -x to send SIGHUP to parent when detaching (like detach-client -P). -* Support for octal escapes in strings (such as \007). +* Support for octal escapes in strings (such as \007) and improve list-keys + output so it parses correctly if copied into a configuration file. CHANGES FROM 2.9 to 3.0 -- cgit From a0e2c1b4cae9269d04ee2e80e1d1cb8adc78cd8a Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 20 Jun 2019 13:08:13 +0100 Subject: Add to CHANGES. --- CHANGES | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'CHANGES') diff --git a/CHANGES b/CHANGES index 9129fa3b..95c8b619 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,17 @@ CHANGES FROM 3.0 to X.X +* Add pane options, set with set-option -p and displayed with show-options -p. + Pane options inherit from window options (so every pane option is also + a window option). The pane style is now configured by setting window-style + and window-active-style in the pane options; select-pane -P and -g now change + the option but are no longer documented. + +* Do not document set-window-option and show-window-options. set-option -w and + show-options -w should be used instead. + +* Add a -A flag to show-options to show parent options as well (they are marked + with a *). + * Resize panes lazily - do not resize unless they are in an attached, active window. -- cgit From e19622b8db143545f02b92da674de7f71f8a907a Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 26 Jul 2019 21:22:53 +0100 Subject: Add to CHANGES. --- CHANGES | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'CHANGES') diff --git a/CHANGES b/CHANGES index 95c8b619..952a95a6 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,23 @@ CHANGES FROM 3.0 to X.X +* Expand arguments to C and s format modifiers to match the m modifier. + +* Add support for underscore colours (Setulc capability must be added with + terminal-overrides as described in tmux(1)). + +* Add a "fill" style attribute for the fill colour of the drawing area (where + appropriate). + +* New -H flag to send-keys to send literal keys. + +* Format variables for pane mouse modes (mouse_utf8_flag and mouse_sgr_flag) + and for origin mode (origin_flag). + +* Add -F to refresh-client for flags for control mode clients, only one flag + (no-output) supported at the moment. + +* Add a few vi(1) keys for menus. + * Add pane options, set with set-option -p and displayed with show-options -p. Pane options inherit from window options (so every pane option is also a window option). The pane style is now configured by setting window-style @@ -16,7 +34,8 @@ CHANGES FROM 3.0 to X.X window. * Add regular expression support for the format search, match and substitute - modifiers and make them able to ignore case. + modifiers and make them able to ignore case. find-window now accepts -r to + use regular expressions. * Do not use $TMUX to find the session because for windows in multiple sessions it is wrong as often as it is right, and for windows in one session it is -- cgit