summaryrefslogtreecommitdiffstats
path: root/popup.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-06-21Check fdopen return value, from Christian Menges.nicm
2023-06-08Fix mismatch between function prototype and definition, from Anindyanicm
2023-03-15Do not leak screen in popups, GitHub issue 3492.nicm
2023-01-20Add a flag to display-menu to select the manu item chosen first, GitHubnicm
2022-02-22Use correct size for screen when popup is created without borders.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-01-17Do not try to strdup NULL, from seL4 at disroot dot org in GitHub issuenicm
2021-10-25Add -s and -S to display-popup to set popup and border style, fromnicm
2021-10-25Instead of setting the popup default colours in the draw callback, setnicm
2021-10-20Remove a TODO comment.nicm
2021-10-14Add popup-border-lines option to set popup line style, from Alexisnicm
2021-10-13Add popup-style and popup-border-style options, from Alexis Hildebrandtnicm
2021-10-11Make positions hidden by overlays range-based rather than character-based,nicm
2021-10-11Add -e flag to set environment for popup, from Alexis Hildebrandt innicm
2021-08-17Revert previous; this is not how it should work.nicm
2021-08-17Start sync before drawing popup.nicm
2021-08-13Tweak how mouse works on popup: only Meta alone resizes or moves, notnicm
2021-08-13Check callback needs to only return 0 (text should be suppressed) ifnicm
2021-08-13Fill in some other bits on new panes.nicm
2021-08-13Add menu options to convert a popup into a pane.nicm
2021-08-13Adjust overlay check callback before drawing data from pty.nicm
2021-08-13Add a menu when a popup is present (mouse only for now).nicm
2021-08-13Add -B flag to remove border from popup.nicm
2021-08-11Break the colour palette into a struct rather than just a single arraynicm
2021-08-05Do not freeze output in panes when a popup is open, let them continue tonicm
2021-07-21Do not close popups on resize, instead adjust them to fit, from Anindyanicm
2021-03-02Drop support for popups where the content is provided directly to tmuxnicm
2021-02-02Fix popup mouse position.nicm
2020-09-22Resize screen to the correct size (borders need to be taken off).nicm
2020-05-16Separate key flags and modifiers, log key flags, make the "xterm" flagnicm
2020-05-16Move editor stuff to common code in popup.c.nicm
2020-05-16Only redraw popup on the client it belongs to.nicm
2020-05-16Do not hoke into struct window_pane from the tty code and instead setnicm
2020-05-16Add 'e' key in buffer mode to open the buffer in an editor.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-04-07Limit size to 1x1 (total size 3x3).nicm
2020-04-01Support mouse in popups.nicm
2020-03-31Detach reply escape sequences from the pane so they work in popups.nicm
2020-03-30Do not check flags after the popup struct has been freed.nicm
2020-03-28Make two -E only close popup automatically if the command exited with 0.nicm
2020-03-28Fix how popup height is calculated to take embedded newlines into account.nicm
2020-03-24Add support for overlay popup boxes to show text or output temporarilynicm