summaryrefslogtreecommitdiffstats
path: root/popup.c
AgeCommit message (Collapse)Author
2024-03-21Merge branch 'obsd-master'Thomas Adam
2024-03-21Do not notify window-layout-changed if the window is about to benicm
destroyed (since it may have been freed by the time the notify happens), from Romain Francoise in GitHub issue 3860.
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-06-21Merge branch 'obsd-master'Thomas Adam
2023-06-21Check fdopen return value, from Christian Menges.nicm
2023-06-08Merge branch 'obsd-master'Thomas Adam
2023-06-08Fix mismatch between function prototype and definition, from Anindyanicm
Mukherjee.
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.
2022-02-22Merge branch 'obsd-master' into masterThomas Adam
2022-02-22Use correct size for screen when popup is created without borders.nicm
2022-02-16Merge branch 'obsd-master' into masterThomas Adam
2022-02-16Support more mouse buttons when the terminal sends them, GitHub issuenicm
3055.
2022-02-01Merge branch 'obsd-master' into masterThomas Adam
2022-02-01A menu must be shown on a client, so always give the client when addingnicm
the items. Also fix mode menus.
2022-01-17Merge branch 'obsd-master' into masterThomas Adam
2022-01-17Do not try to strdup NULL, from seL4 at disroot dot org in GitHub issuenicm
3038.
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-25Instead of setting the popup default colours in the draw callback, setnicm
it up in popup_display and follow the same routine as panes in the draw and init_ctx callbacks - use the palette if the option value is default. Allows application-set fg and bg to work in panes again.
2021-10-20Merge branch 'obsd-master' into masterThomas Adam
2021-10-20Remove a TODO comment.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-13Merge branch 'obsd-master' into masterThomas Adam
2021-10-13Add popup-style and popup-border-style options, from Alexis Hildebrandtnicm
in GitHub issue 2927.
2021-10-11Merge branch 'obsd-master' into masterThomas Adam
2021-10-11Make positions hidden by overlays range-based rather than character-based,nicm
from Anindya Mukherjee.
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-17Revert previous; this is not how it should work.nicm
2021-08-17Start sync before drawing popup.nicm
2021-08-14Merge branch 'obsd-master' into masterThomas Adam
2021-08-14Merge branch 'obsd-master' into masterThomas Adam
2021-08-13Tweak how mouse works on popup: only Meta alone resizes or moves, notnicm
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-13Check callback needs to only return 0 (text should be suppressed) ifnicm
menu returns 0, otherwise it should check the popup also.
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-12Merge branch 'obsd-master' into masterThomas Adam
2021-08-11Break the colour palette into a struct rather than just a single arraynicm
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-05Merge branch 'obsd-master' into masterThomas Adam
2021-08-05Do not freeze output in panes when a popup is open, let them continue tonicm
redraw. From Anindya Mukherjee .