summaryrefslogtreecommitdiff
path: root/usr.bin/tmux
AgeCommit message (Collapse)Author
19 hoursConvert sbin and usr.bin to check for imsgbuf_init failure and addClaudio Jeker
imsgbuf_allow_fdpass where needed. OK tb@
19 hoursConvert the common imsgbuf_read calls to the post EAGAIN world.Claudio Jeker
OK tb@
19 hoursUse imsgbuf_queuelen() instead of accessing the w.queue member.Claudio Jeker
OK tb@
19 hoursRename imsg_init, imsg_clear, imsg_read, imsg_write and imsg_flush toClaudio Jeker
imsgbuf_init, imsgbuf_clear, imsgbuf_read, imsgbuf_write and imsgbuf_flush. This separates the imsgbuf API from the per-imsg API. OK tb@
19 hoursConvert imsg_write() callers to the new simplified return logic.Claudio Jeker
OK tb@
19 hoursIntroduce imsg_write() and use it instead of msgbuf_write().Claudio Jeker
imsg_write() is just a thin wrapper around msgbuf_write(). So this is mostly search and replace. OK tb@
25 hoursFix save-buffer documentation - it writes to stdout. From Ilya Grigoriev.Nicholas Marriott
25 hoursWhen the mouse clicked on the border between two horizontal panes, theNicholas Marriott
location was not being set properly. Pulled the checking of this into separate function for clarity. Fixes dragging on horizontal pane border. From Michael Grant.
36 hoursFix word navigation on lines with tabs, from Alexander Arch.Nicholas Marriott
4 daysCheck all %if in the list when deciding whether to process anNicholas Marriott
assignment, not just the most recent.
6 daysDo not call layout_fix_panes if wp is NULL (that is, a popup).Nicholas Marriott
7 daysAdd no-detach-on-destroy client option (useful for control modeNicholas Marriott
clients). From laur dot aliste at gmail dot com, GitHub issue 4242.
7 daysAdd two new style parameters, width and pad, which apply to scrollbars.Nicholas Marriott
From Michael Grant, GitHub issue 4241.
7 daysTurn off scrollbar when pane is in alternate screen, from Michael Grant,Nicholas Marriott
GitHub issue 4231.
10 daysTidy up loop, from Alexander Arch.Nicholas Marriott
10 daysMouse support on the scrollbars, from Michael Grant.Nicholas Marriott
11 daysAdd an option to control the input buffer size, from Ken Lau.Nicholas Marriott
14 daysSome fixes for searching for tabs, from Alexander Arch.Nicholas Marriott
2024-11-05Xr to Ic, from jmc.Nicholas Marriott
2024-11-05Add support for a scrollbar at the side of each pane. New optionsNicholas Marriott
pane-scrollbars turn them on or off, pane-scrollbars-position sets the position (left or right), and pane-scrollbars-style to set the colours. Mouse support will come later. From Michael Grant in GitHub issue 4221.
2024-11-04Do not make padding cells extended (there can be a lot of them), fromNicholas Marriott
Alexander Arch .
2024-10-28Match tab cells when searching, from Alexander Arch in GitHub issueNicholas Marriott
4201.
2024-10-28Treat tabs as a word separator, from Alexander Arch in GitHub issueNicholas Marriott
4201.
2024-10-28Fix issues in the command prompt: set PROMPT_QUOTENEXT after quotingNicholas Marriott
than before, meaning that accidentally scrolling the mouse wheel doesn't break quoting; and move the cursor correctly over wide characters. From Alexander Arch in GitHub issue 4212.
2024-10-25Allow tabs even on terminals without UTF-8, reported by jmc.Nicholas Marriott
2024-10-25Allow control characters to be entered at the command prompt prefixedNicholas Marriott
with with C-v, from Alexander Arch in GitHub issue 4206.
2024-10-25Do not attempt to search for zero length strings, from Alexander Arch inNicholas Marriott
GitHub issue 4209.
2024-10-25Do not stop stop at first padding in format_grid_line and handle tabs.Nicholas Marriott
2024-10-25Flag tabs if possible in the grid cell so they can be preserved onNicholas Marriott
copying and capture-pane. From Alexander Arch in GitHub issue 4201.
2024-10-25Add a helper function for cell data comparison, from Alexander Arch.Nicholas Marriott
2024-10-21Bump up the maximum for repeat-time (some people want it to beNicholas Marriott
effectively infinite).
2024-10-21Add function to get current offset from copy mode, from Michael Grant.Nicholas Marriott
2024-10-21Adjust how Ctrl and Meta keys are sent to use standard representation ifNicholas Marriott
available in mode 1, from Stanislav Kljuhhin, GitHub issue 4188.
2024-10-17Switch pane-colors and cursor-style options to be in alphabetical order,Nicholas Marriott
from Teubel Gyorgy, GitHub issue 4191.
2024-10-17Allow attributes in menu style, from Japin Li in GitHub issue 4194.Nicholas Marriott
2024-10-14Set ACS flag for REP. Reported by Romain Francoise, GitHub issue 4182.Nicholas Marriott
2024-10-12Call realpath on the source file to match -f on the command line, GitHubNicholas Marriott
issue 4180.
2024-10-12Do not rename a buffer to itself, GitHub issue 4181.Nicholas Marriott
2024-10-10Add a sixel_support format variable which is 1 if SIXEL is supportedNicholas Marriott
(always 0 on OpenBSD), requested by Misaki Masa in GitHub issue 4177
2024-10-08Draw pane status line on the correct line when at the bottom, fixesNicholas Marriott
issues if the window size is smaller than the entire terminal. GitHub issue 3943.
2024-10-08Put the prompt cursor attributes into the status line screen and useNicholas Marriott
that rather than updating the current screen (since there might not be one).
2024-10-07Add prompt-cursor-colour and prompt-cursor-style to set the style of theNicholas Marriott
cursor in the command prompt and remove the emulated cursor, from Alexander Arch in GitHub issue 4170.
2024-10-07Add initial-repeat-time option to allow the first repeat time to beNicholas Marriott
increased and later reduced, from David le Blanc in GitHub issue 4164.
2024-10-06Try to stay near the same line in modes if the current one is removed.Nicholas Marriott
2024-10-05Send focus events to pane when entering or leaving popup, GitHub issueNicholas Marriott
3991.
2024-10-05Remove some debugging left behind.Nicholas Marriott
2024-10-05Add copy-mode-position-format to configure the position indicator.Nicholas Marriott
2024-10-04Document missing window-layout-changed hook.Nicholas Marriott
2024-10-04Add -y flag to disable confirmation prompts in modes, GitHub issue 4152.Nicholas Marriott
2024-10-04Do not translate BSpace as Unicode, GitHub issue 4156.Nicholas Marriott