mirror of
https://github.com/tmux/tmux.git
synced 2025-01-12 03:08:46 +00:00
Merge tag '3.1b'
3.1b
This commit is contained in:
commit
3d33a19102
6
CHANGES
6
CHANGES
@ -1,4 +1,4 @@
|
|||||||
CHANGES FROM 3.1 TO 3.2
|
CHANGES FROM 3.1b TO 3.2
|
||||||
|
|
||||||
* Improve search match marking in copy mode. Two new options
|
* Improve search match marking in copy mode. Two new options
|
||||||
copy-mode-match-style and copy-mode-current-match-style to set the style for
|
copy-mode-match-style and copy-mode-current-match-style to set the style for
|
||||||
@ -153,6 +153,10 @@ CHANGES FROM 3.1 TO 3.2
|
|||||||
|
|
||||||
* Add number operators for formats (+, -, *, / and m),
|
* Add number operators for formats (+, -, *, / and m),
|
||||||
|
|
||||||
|
CHANGES FROM 3.1a TO 3.1b
|
||||||
|
|
||||||
|
* Fix crash when allow-rename is on and an empty name is set.
|
||||||
|
|
||||||
CHANGES FROM 3.1 TO 3.1a
|
CHANGES FROM 3.1 TO 3.1a
|
||||||
|
|
||||||
* Do not close stdout prematurely in control mode since it is needed to print
|
* Do not close stdout prematurely in control mode since it is needed to print
|
||||||
|
2
input.c
2
input.c
@ -2354,7 +2354,7 @@ input_exit_rename(struct input_ctx *ictx)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (ictx->input_len == 0) {
|
if (ictx->input_len == 0) {
|
||||||
oe = options_get(wp->window->options, "automatic-rename");
|
oe = options_get_only(wp->window->options, "automatic-rename");
|
||||||
if (oe != NULL)
|
if (oe != NULL)
|
||||||
options_remove(oe);
|
options_remove(oe);
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user