summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.h
AgeCommit message (Collapse)Author
2021-12-21ARM's Morello CHERI architecture does not support pointers in packedNicholas Marriott
structures, so remove the packed attribute on struct grid_line and reorder the members to eliminate unnecessary padding. From Jessica Clarke in GitHub issue 3012.
2021-12-10Add a NOBLOCK flag rather than adding amount to wait for whenNicholas Marriott
dealing with potentially-long sequences. GitHub issue 3001.
2021-11-15Leave the hardware cursor at the position of the selected line in chooseNicholas Marriott
modes and current editing position and at the command prompt. It is invisible but this is helpful for people using screen readers. GitHub issue 2970.
2021-11-03Add a cursor-style option, from Alexis Hildebrandt in GitHub issue 2960.Nicholas Marriott
2021-11-01Add a cursor-colour option, from Alexis Hildebrandt in GitHub issueNicholas Marriott
2959.
2021-10-28Allow detach even if suspend flag set, GitHub issue 2932.Nicholas Marriott
2021-10-26Do not allow inline styles to replace mode-style for the selected item,Nicholas Marriott
from Alexis Hildebrandt in GitHub issue 2946.
2021-10-25Add a way to force a colour to RGB and a format to display it.Nicholas Marriott
2021-10-25Add -s and -S to display-popup to set popup and border style, fromNicholas Marriott
Alexis Hildebrandt in GitHub issue 2931.
2021-10-20Add -T to set a popup title, from Alexis Hildebrandt in GitHub issue 2941.Nicholas Marriott
2021-10-14Add popup-border-lines option to set popup line style, from AlexisNicholas Marriott
Hildebrandt, GitHub issue 2930.
2021-10-13Add popup-style and popup-border-style options, from Alexis HildebrandtNicholas Marriott
in GitHub issue 2927.
2021-10-11Make positions hidden by overlays range-based rather than character-based,Nicholas Marriott
from Anindya Mukherjee.
2021-10-11Add -e flag to set environment for popup, from Alexis Hildebrandt inNicholas Marriott
GitHub issue 2924.
2021-10-05Separate "very visible" flag from blinking flag, it should not affectNicholas Marriott
DECSCUSR. GitHub issue 2891.
2021-09-10Do fatal/fatalx a different way so the compiler trick to avoid warningsNicholas Marriott
becomes unnecessary, prompted by theo.
2021-09-10Get rid of the last two warnings by turning them off around the problemNicholas Marriott
statements, if the compiler supports it.
2021-09-09Expand argument to run-shell again.Nicholas Marriott
2021-08-27Replace %% in command lists (by copying them) for template arguments ,Nicholas Marriott
this means they can be used with {} as well. Also make argument processing from an existing vector preserve commands. GitHub issue 2858.
2021-08-27Allow control mode clients to set a hard limit on the window width andNicholas Marriott
height, GitHub issue 2594.
2021-08-25Validate command argument types (string or command list) and give moreNicholas Marriott
useful error messages.
2021-08-25Fix up some printflike attributes.Nicholas Marriott
2021-08-23Move command argument parsing common functions and don't bother to parseNicholas Marriott
again if given a command rather than a string.
2021-08-21Preserve argument type in command and convert to string on demand.Nicholas Marriott
2021-08-21Pass typed arguments out of the parser into the arguments list and letNicholas Marriott
it convert them into strings.
2021-08-21Stop caring about empty commands, just treat as a null command.Nicholas Marriott
2021-08-21Preserve command group when moving temporary list to current list beingNicholas Marriott
buit.
2021-08-21Rename a member to match what it will be in future.Nicholas Marriott
2021-08-21Add args parsing callback for some future work, currently unused.Nicholas Marriott
2021-08-21Wrap command argument definitions in their own struct.Nicholas Marriott
2021-08-20Hide struct args behind a couple of accessor functions.Nicholas Marriott
2021-08-20Add a couple of const and fix some warnings.Nicholas Marriott
2021-08-20Expose args_value struct (will be needed soon) and add some missing frees.Nicholas Marriott
2021-08-20Add a way to create an empty arguments set.Nicholas Marriott
2021-08-13Tweak how mouse works on popup: only Meta alone resizes or moves, notNicholas Marriott
Meta with other modifiers; button 2 on the left or top border opens menu, right or bottom resizes; button 1 on any border moves.
2021-08-13Fill in some other bits on new panes.Nicholas Marriott
2021-08-13Add menu options to convert a popup into a pane.Nicholas Marriott
2021-08-13Add a menu when a popup is present (mouse only for now).Nicholas Marriott
2021-08-13Add -B flag to remove border from popup.Nicholas Marriott
2021-08-13Break message type stuff out into its own header.Nicholas Marriott
2021-08-13Change focus to be driven by events rather than walking all panes at endNicholas Marriott
of event loop, this way the ordering of in and out can be enforced. GitHub issue 2808.
2021-08-12Move hook format setup earlier and add a hook_client, GitHub issue 2809.Nicholas Marriott
2021-08-11Break the colour palette into a struct rather than just a single arrayNicholas Marriott
and use that to support the OSC palette-setting sequences in popups. Also add a pane-colours array option to specify the defaults. GitHub issue 2815.
2021-08-11Return to applying pane-border-style to the area outside panes, GitHubNicholas Marriott
issue 2816.
2021-08-06Add basic support for zero width joiners, GitHub issues 1605 and 2784.Nicholas Marriott
2021-07-21Do not close popups on resize, instead adjust them to fit, from AnindyaNicholas Marriott
Mukherjee.
2021-07-14Move default value for TERM into tmux.h.Nicholas Marriott
2021-06-10More accurate vi(1) word navigation in copy mode and on the status line.Nicholas Marriott
This changes the meaning of the word-separators option - setting it to the empty string is equivalent to the previous behavior. From Will Noble in GitHub issue 2693.
2021-06-10Add different command historys for different types of promptsNicholas Marriott
("command", "search" etc). From Anindya Mukherjee.
2021-06-10Improve logging of screen mode changes.Nicholas Marriott