summaryrefslogtreecommitdiffstats
path: root/menu.c
AgeCommit message (Expand)Author
2023-08-15Add an option menu-selected-style to configure the currently selectednicm
2023-08-08Add options and flags for menu styles similar to those existing fornicm
2023-08-08Extend the menu drawing function to support custom characters andnicm
2023-02-05Do not allow multiple line separators in a row.nicm
2023-01-20Add a flag to display-menu to select the manu item chosen first, GitHubnicm
2022-08-04Change g and G to go to top and bottom of menu, GitHub issue 3286.nicm
2022-06-16Keep cursor on selected item on menu (useful for blind people), GitHubnicm
2022-05-31Trim menu item text correctly, GitHub issue 3197.nicm
2022-02-16Support more mouse buttons when the terminal sends them, GitHub issuenicm
2022-02-01A menu must be shown on a client, so always give the client when addingnicm
2022-02-01Do not overflow width when not enough space.nicm
2021-11-11If trimming menu item text, show key if it would take up less than anicm
2021-10-22Remove key and trim text if menu cannot fit in available space, based onnicm
2021-10-18Fix menu width containing disabled items, from Alexis Hildebrandt innicm
2021-10-11Make positions hidden by overlays range-based rather than character-based,nicm
2021-09-09Turn on both button and all mouse modes for menus since some terminalsnicm
2021-09-09Fix parsing of aliases again (GitHub issue 2842), also make argumentnicm
2021-08-13Add a menu when a popup is present (mouse only for now).nicm
2021-07-21Do not close popups on resize, instead adjust them to fit, from Anindyanicm
2020-10-30Do not allow disabled items to be selected.nicm
2020-10-30Add a -O flag to display-menu to change the mouse behaviour and notnicm
2020-09-16Fix some warnings, GitHub issue 2382.nicm
2020-05-25Include title for the width of the menu.nicm
2020-05-16Separate key flags and modifiers, log key flags, make the "xterm" flagnicm
2020-05-16Try to search the entire history first for up to 200 ms so a searchnicm
2020-05-16Do not hoke into struct window_pane from the tty code and instead setnicm
2020-05-16Improve command prompt completion:nicm
2020-05-16Drop having a separate type for style options and make them all strings,nicm
2020-05-16Use a grid cell not a style for the pane style.nicm
2020-04-16Start menu with top item selected if no mouse, GitHub issue 2169.nicm
2020-04-15Use mode-style for selected items, like choose modes. GitHub issue 2166.nicm
2020-04-13Add helpers for the simple case of parse string and add to command queue.nicm
2020-04-13When adding a list of commands to the queue, instead of automaticallynicm
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
2020-04-13Store a key event not a mouse event in the shared data.nicm
2020-04-13Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make itsnicm
2020-03-24Add support for overlay popup boxes to show text or output temporarilynicm
2020-03-20Fix positioning of menu in choose modes and a couple of keys in tree mode.nicm
2020-03-19Little bit of tidying.nicm
2019-09-16Change menu key bindings to Up and Down and also close it on any mousenicm
2019-07-09Add j and k for navigation in menus, GitHub issue 1828.nicm
2019-06-18Add a cmdq_continue function rather than twiddling the flag directly.nicm
2019-05-28Allow menu items to be disabled by putting a - at the start of theirnicm
2019-05-28Change display-menu from taking a single string to a set of arguments,nicm
2019-05-26Do not accept choice unless mouse has actually moved before.nicm
2019-05-26Add formats for word and line under the mouse and use them to add somenicm
2019-05-23Replace the split parser code (cfg.c and cmd-string.c) with a singlenicm
2019-05-20Replace the various identical error callbacks with a single one in cmd-queue.c.nicm
2019-05-12Add simple menus to tree, client, buffer modes.nicm