summaryrefslogtreecommitdiffstats
path: root/cmd-display-menu.c
AgeCommit message (Collapse)Author
2024-03-21Merge branch 'obsd-master'Thomas Adam
2024-03-21Add -M to always turn mouse on in a menu, GitHub issue 3779.nicm
2023-08-15Merge branch 'obsd-master'Thomas Adam
2023-08-15Add an option menu-selected-style to configure the currently selectednicm
menu item, from Alexis Hildebrandt.
2023-08-08Merge branch 'obsd-master'Thomas Adam
2023-08-08Add options and flags for menu styles similar to those existing fornicm
popups, from Alexis Hildebrandt. GitHub issue 3650.
2023-08-07Merge branch 'obsd-master'Thomas Adam
2023-08-07Free title earlier, from Alexis Hildebrandt.nicm
2023-03-15Merge branch 'obsd-master'Thomas Adam
2023-03-15Do not leak screen in popups, GitHub issue 3492.nicm
2023-01-21Merge branch 'obsd-master'Thomas Adam
2023-01-20Add a flag to display-menu to select the manu item chosen first, GitHubnicm
issue 3442.
2021-10-25Merge branch 'obsd-master' into masterThomas Adam
2021-10-25Add -s and -S to display-popup to set popup and border style, fromnicm
Alexis Hildebrandt in GitHub issue 2931.
2021-10-20Merge branch 'obsd-master' into masterThomas Adam
2021-10-20Add -T to set a popup title, from Alexis Hildebrandt in GitHub issue 2941.nicm
2021-10-14Merge branch 'obsd-master' into masterThomas Adam
2021-10-14Add popup-border-lines option to set popup line style, from Alexisnicm
Hildebrandt, GitHub issue 2930.
2021-10-11Merge branch 'obsd-master' into masterThomas Adam
2021-10-11Add -e flag to set environment for popup, from Alexis Hildebrandt innicm
GitHub issue 2924.
2021-08-27Merge branch 'obsd-master' into masterThomas Adam
2021-08-27Replace %% in command lists (by copying them) for template arguments ,nicm
this means they can be used with {} as well. Also make argument processing from an existing vector preserve commands. GitHub issue 2858.
2021-08-25Merge branch 'obsd-master' into masterThomas Adam
2021-08-25Validate command argument types (string or command list) and give morenicm
useful error messages.
2021-08-23Merge branch 'obsd-master' into masterThomas Adam
2021-08-23Limit width and height to tty correctly, GitHub issue 2843.nicm
2021-08-22Merge branch 'obsd-master' into masterThomas Adam
2021-08-22Do not double free expanded path in source-file, also remove somenicm
unnecessary assignments.
2021-08-21Merge branch 'obsd-master' into masterThomas Adam
2021-08-21Add args parsing callback for some future work, currently unused.nicm
2021-08-20Merge branch 'obsd-master' into masterThomas Adam
2021-08-20Hide struct args behind a couple of accessor functions.nicm
2021-08-14Merge branch 'obsd-master' into masterThomas Adam
2021-08-13Add -B flag to remove border from popup.nicm
2021-07-21Merge branch 'obsd-master' into masterThomas Adam
2021-07-21Do not add height twice when calculating popup_mouse_top, from M Kelly.nicm
2021-07-08Merge branch 'obsd-master' into masterThomas Adam
2021-07-08Fix mouse_word format now word-separators has no space and position ofnicm
menu if too close to the bottom.
2021-06-10Fix display-menu -xR, from Alexis Hildebrandt.nicm
2021-04-16Fix display-menu -xR, from Alexis Hildebrandt.Nicholas Marriott
2021-03-02paths.h is compat.Nicholas Marriott
2021-03-02Drop support for popups where the content is provided directly to tmuxnicm
(which does not have many practical uses) and only support running a program in the popup. display-popup is now simpler and can accept multiple arguments to avoid escaping problems (like the other commands).
2020-11-26Fix check for vertical centre.nicm
2020-11-03Expand menu and popup -x and -y as a format, from teo_paul1 at yahoo dotnicm
com in GitHub issue 2442.
2020-10-30Add a -O flag to display-menu to change the mouse behaviour and notnicm
close the menu when the mouse is released, from teo_paul1 at yahoo dot com.
2020-05-16Add 'e' key in buffer mode to open the buffer in an editor.nicm
2020-04-13Make client -c and -t handling common in cmd-queue.c and try to benicm
clearer about whether the client is the target client (must have a session) or not.
2020-04-13Move cmdq_state into cmd-queue.c.nicm
2020-04-13Rename cmdq_shared to cmdq_state which will better reflect what it isnicm
(going to be) used for.
2020-04-13Store a key event not a mouse event in the shared data.nicm