Thomas Adam
410abb5afb
Merge branch 'obsd-master'
2025-10-28 14:01:08 +00:00
Thomas Adam
482aa937b1
Merge branch 'obsd-master'
2025-10-28 12:01:07 +00:00
nicm
b4ba6e49af
Do not realpath() everything since it is pointless and breaks symlinks.
...
GitHub issue 4427.
2025-10-28 10:51:30 +00:00
Thomas Adam
010394ab63
Merge branch 'obsd-master'
2025-10-28 10:01:07 +00:00
nicm
7cbb96528c
Do not try to reflow if line is NULL.
2025-10-28 09:01:12 +00:00
nicm
aa420cd54a
Tweak error messages so that file name isn't modified when we capitalize
...
the first letter, from Pavel Roskin in GitHub issue 4666.
2025-10-28 07:32:26 +00:00
Thomas Adam
d5302ec327
Merge branch 'obsd-master'
2025-10-27 22:01:08 +00:00
nicm
f31a2d229c
Do not play games with lines for view mode output since it stops them
...
wrapping, GitHub issue 4462.
2025-10-27 20:31:40 +00:00
Thomas Adam
35ad72e56f
Merge branch 'obsd-master'
2025-10-20 10:01:07 +01:00
nicm
f501817154
Fix the logic of the no-detached case for detach-on-destroy option - a
...
previous change made it so that even in the no-detached case, tmux would
always re-attach to a session, even if there weren't any detached ones.
From Martin Louazel in GitHub issue 4649.
2025-10-20 07:28:38 +00:00
Thomas Adam
449f255f3e
Merge branch 'obsd-master'
2025-10-13 10:01:08 +01:00
nicm
21d890e6df
Add buffer_full format variable, from Mohammad AlSaleh in GitHub issue
...
4630.
2025-10-13 07:29:53 +00:00
nicm
feb3b90596
Check allow-set-title for APC as well.
2025-10-13 07:19:08 +00:00
Nicholas Marriott
0ff2676a25
Implement getdtablecount(3) for Darwin, from Chip Davis in GitHub issue 4636.
2025-10-06 11:13:53 +01:00
Thomas Adam
3e28777ecb
Merge branch 'obsd-master'
2025-09-12 12:01:09 +01:00
nicm
7516f8e94f
Check the right flags member, reported by someone in GitHub issue 4634.
2025-09-12 08:46:29 +00:00
Thomas Adam
ac574b6782
Merge branch 'obsd-master'
2025-09-09 12:01:09 +01:00
nicm
50dafd6187
Remove some unnecessary assignments.
2025-09-09 08:49:22 +00:00
Thomas Adam
d4f129b513
Merge branch 'obsd-master'
2025-09-08 14:01:08 +01:00
Nicholas Marriott
9a72317c4f
Check for vlock earlier to neaten output.
2025-09-08 12:27:26 +01:00
nicm
b21b1ee9af
Don't try to change directory if it is NULL.
2025-09-08 11:21:56 +00:00
nicm
c62fe6dac8
The client can be NULL, fixes -v in config file.
2025-09-08 11:21:29 +00:00
Thomas Adam
9dc136f445
Merge branch 'obsd-master'
2025-09-08 12:01:10 +01:00
Thomas Adam
418bf148e0
Merge branch 'obsd-master'
2025-09-08 10:01:08 +01:00
jsg
408721ae37
correct indentation, no functional change
...
found with smatch, ok nicm@
2025-09-08 08:23:19 +00:00
Nicholas Marriott
b1b6850fa9
Add test for control mode, from Sergei Nizovtsev.
2025-09-08 08:31:23 +01:00
nicm
d73196750f
Change so that source-file errors are reported correctly in control
...
mode, from Sergei Nizovtsev in GitHub issue 4626.
2025-09-08 07:30:15 +00:00
Thomas Adam
093754db3f
Merge branch 'obsd-master'
2025-09-07 18:01:08 +01:00
nicm
7cc15969ff
Quote cwd for glob in a way that actually works, from Pavel Roskin in
...
GitHub issue 4623.
2025-09-07 14:17:25 +00:00
nicm
b53cf70262
Introduce a new window option: tiled-layout-max-columns. It configures
...
the maximum number of columns in the tiled layout. The default value is
0 which means no limit and makes the change backward-compatible. From
vkadlcik at redhat dot com.
2025-09-07 14:03:18 +00:00
Nicholas Marriott
1dadd6c9ae
Do not force SIXEL images to a multiple of 6 lines. From nincsnevem662 at gmail
...
dot com in GitHub issue 4622.
2025-09-07 14:55:18 +01:00
Nicholas Marriott
a7a94cb86f
Fix OOB access in sixel_print by ensuring that the number of chunks actually
...
matches the highest color used on the image, even if not defined as a color
register. From nincsnevem662 at gmail dot com in GitHub issue 4621.
2025-09-07 14:53:08 +01:00
Thomas Adam
3d6954f0f0
Merge branch 'obsd-master'
2025-09-05 10:01:08 +01:00
nicm
267efefdfa
Restore default blinking state when restoring default cursor style, from
...
Andrea Alberti.
2025-09-05 06:15:48 +00:00
Thomas Adam
6a3170386e
Merge branch 'obsd-master'
2025-09-02 18:36:44 +01:00
nicm
4d83eef756
Add support for DECRQSS SP q (report cursor style), DECRQM ?12 (report
...
cursor blink state) and DECRQM ?2004, ?1004, ?1006 (report mouse state).
From Andrea Alberti in GitHub issue 4618.
2025-09-02 15:15:12 +00:00
Thomas Adam
44b7a2d1f9
Merge branch 'obsd-master'
2025-09-02 16:01:08 +01:00
nicm
c32570c602
Set PWD for jobs as well as panes.
2025-09-02 13:39:14 +00:00
Thomas Adam
9702ef3f91
Merge branch 'obsd-master'
2025-09-02 02:01:07 +01:00
Thomas Adam
b2194ac549
Merge branch 'obsd-master'
2025-09-02 00:01:08 +01:00
nicm
b5413dacc7
Delete timer before adding it again.
2025-09-01 22:11:23 +00:00
nicm
aa33757e45
Fix missing argument from OSC 4 reply, from someone in GitHub issue 4596.
2025-09-01 21:44:37 +00:00
Thomas Adam
a0065bea04
Merge branch 'obsd-master'
2025-09-01 12:01:08 +01:00
nicm
5c89d835a6
Add -k flag to display-popup which allows any key to dismiss the popup
...
once the command has exited. From Meriel Luna Mittelbach in GitHub issue
4612.
2025-09-01 08:03:07 +00:00
nicm
cfb906a0ce
Increase the escape delay when waiting for an RGB response no matter
...
when it is triggered (they can also be sent on resize). GitHub issue
4569.
2025-09-01 07:58:09 +00:00
nicm
af36d7c430
Ensure break-pane -P prints when only one pane is left. From Chaoyi Yin
...
in GitHub issue 4615.
2025-09-01 07:53:49 +00:00
Nicholas Marriott
0c9165fc71
Give another bit to the first component of SIXEL colours to fix the HLS color
...
space which uses 360 degrees in its first component. From nincsnevem662 at
gmail dot com in GitHub issue 4616.
2025-09-01 08:31:57 +01:00
Thomas Adam
fa63088dce
Merge branch 'obsd-master'
2025-08-26 10:01:07 +01:00
nicm
0b7235c5f0
Correctly calculate lines to clear for deletions, from Pavel Roskin.
2025-08-26 07:17:51 +00:00
nicm
ca0f0419e6
input_stop_utf8 can move the cursor, so it is now wrong to store the
...
cursor position before calling it. Problem found by Jayakrishna
Vadayath.
2025-08-26 07:15:00 +00:00