Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Drop wmenu -x option | adnano | 2024-05-02 | 5 | -61/+4 |
| | |||||
* | make menu height accurate to dwm, dmenu, and dwl's bar patch | sewn | 2024-04-14 | 1 | -1/+1 |
| | |||||
* | Support xdg_activation_v1 protocol | adnano | 2024-04-07 | 7 | -5/+71 |
| | |||||
* | menu: Avoid adding zero-size pages | adnano | 2024-03-25 | 1 | -1/+3 |
| | | | | | Ensure that pages always have at least one item, even if that item is too big to fit on any page. | ||||
* | add wmenu_run script, similar to dmenu_run script | sewn | 2024-03-17 | 2 | -0/+37 |
| | | | | | | | based off the works of sinanmohd, modified to be simpler and better to read, with shellcheck. Co-authored-by: sinanmohd <sinan@firemail.cc> | ||||
* | port dmenu password patch | sewn | 2024-03-17 | 4 | -6/+37 |
| | |||||
* | Don't destroy wl_data_offer twice | adnano | 2024-03-17 | 1 | -1/+0 |
| | | | | | | | | The data offer is destroyed after it is used. There is no need to destroy it again. This also fixes an issue where calling wl_data_offer_destroy with a NULL data offer would segfault. | ||||
* | Version 0.1.7 | adnano | 2024-03-02 | 1 | -1/+1 |
| | |||||
* | Free memory associated with the menu on exit | adnano | 2024-03-02 | 5 | -99/+220 |
| | |||||
* | Rename text_len to input_len | adnano | 2024-03-02 | 1 | -3/+3 |
| | |||||
* | Fix output selection with -o flag | adnano | 2024-03-01 | 2 | -4/+7 |
| | |||||
* | Revert "Simplify movewordedge" | adnano | 2024-02-27 | 1 | -6/+17 |
| | | | | This reverts commit 8bcad262a4d047140767d9467ac5526bb768a95e. | ||||
* | Drop unnecessary TODO comment | adnano | 2024-02-27 | 1 | -1/+0 |
| | |||||
* | Simplify read_menu_items | adnano | 2024-02-27 | 1 | -7/+9 |
| | |||||
* | Move menu and rendering logic into separate files | adnano | 2024-02-27 | 10 | -962/+1023 |
| | |||||
* | Update LICENSE | adnano | 2024-02-27 | 1 | -1/+1 |
| | |||||
* | Remove unused includes | adnano | 2024-02-27 | 2 | -4/+0 |
| | |||||
* | Improve formatting of docs | adnano | 2024-02-27 | 1 | -28/+28 |
| | |||||
* | Add C-Y keybinding to docs | adnano | 2024-02-27 | 1 | -0/+3 |
| | |||||
* | Simplify movewordedge | adnano | 2024-02-27 | 1 | -17/+7 |
| | |||||
* | Add dmenu's Meta (Alt) keybindings | Amin Bandali | 2024-02-27 | 2 | -18/+86 |
| | | | | | | | This change adds dmenu's mixture of Emacs+vim-style Meta keybindings. Also 'Page_Up' and 'Page_Down' were deprecated in upstream xkbcommon, so replace them with the new 'Prior' and 'Next' names respectively. | ||||
* | Add token matching like dmenu | Amin Bandali | 2024-02-27 | 1 | -4/+34 |
| | | | | | | This change ports dmenu's token matching of space-separated input to wmenu to match the behaviour of dmenu, with a slightly more verbose but hopefully more readable implementation. | ||||
* | Add more rendering functions | adnano | 2024-02-26 | 1 | -54/+64 |
| | |||||
* | Check if selection is not null before dereferencing | adnano | 2024-02-26 | 1 | -2/+2 |
| | |||||
* | Add functions to render pages of items | adnano | 2024-02-26 | 1 | -31/+34 |
| | |||||
* | Refactor rendering code | adnano | 2024-02-26 | 1 | -96/+61 |
| | |||||
* | Don't set selection if there are no pages | adnano | 2024-02-26 | 1 | -1/+3 |
| | |||||
* | Don't match items in insert | adnano | 2024-02-26 | 1 | -104/+105 |
| | |||||
* | Add comments to menu | adnano | 2024-02-26 | 1 | -49/+48 |
| | |||||
* | Add some comments to item and page | adnano | 2024-02-26 | 1 | -5/+5 |
| | |||||
* | Rename menu_state to menu | adnano | 2024-02-26 | 1 | -333/+333 |
| | |||||
* | Don't return -1 from render_horizontal_item | adnano | 2024-02-26 | 1 | -13/+9 |
| | |||||
* | Rename menu_item to item | adnano | 2024-02-26 | 1 | -35/+38 |
| | |||||
* | Mark functions as static | adnano | 2024-02-26 | 1 | -16/+16 |
| | |||||
* | Rename item_group to page | adnano | 2024-02-26 | 1 | -82/+80 |
| | |||||
* | Refactor item paging logic | adnano | 2024-02-26 | 1 | -114/+102 |
| | | | | | | Determine which items go on which page ahead of time to avoid calculating it every time. This also fixes an issue where paging from the back doesn't give the same results as paging from the front. | ||||
* | Simplify match scrolling | adnano | 2024-02-26 | 1 | -60/+28 |
| | |||||
* | Keep track of end of match list | adnano | 2024-02-26 | 1 | -8/+6 |
| | |||||
* | Ignore unrecognized Ctrl keybindings | adnano | 2024-02-26 | 1 | -0/+6 |
| | | | | | | Currently, unrecognized Ctrl keybindings are treated as if Ctrl wasn't pressed. For example, Ctrl+q results in q being typed. Instead, ignore these keypresses. | ||||
* | Update keybindings to more closely follow dmenu | Amin Bandali | 2024-02-26 | 2 | -43/+8 |
| | | | | | | There's no need to distinguish between vertical and horizontal mode for the directional keys. By not doing so we match dmenu's behaviour and also reduce code duplication. | ||||
* | Make scdoc dependency optional | adnano | 2024-02-04 | 1 | -1/+1 |
| | |||||
* | Version 0.1.6 | adnano | 2024-01-21 | 1 | -1/+1 |
| | |||||
* | pool-buffer: Fix type conversion issues | adnano | 2023-12-28 | 1 | -4/+4 |
| | |||||
* | Check the return value of pipe | adnano | 2023-12-28 | 1 | -1/+4 |
| | | | | | On some systems, pipe is declared with the attribute warn_unused_result, so we have to check the return value. | ||||
* | pool-buffer: Reduce struct padding | adnano | 2023-12-28 | 1 | -1/+1 |
| | |||||
* | Fix various type issues | adnano | 2023-12-28 | 1 | -5/+5 |
| | |||||
* | Version 0.1.5 | adnano | 2023-12-25 | 1 | -1/+1 |
| | |||||
* | Fix build failure when compiling in release | Piotr StefaĆski | 2023-10-31 | 1 | -1/+1 |
| | | | | | | | | | | | Compiling with --buildtype=release fails with message: ../main.c:935:17: error: argument 2 null where non-null expected [-Werror=nonnull] 935 | memcpy(state->text + state->cursor, s, n); GCC only produces this error with optimizations enabled. Looking at the build output I assume this happens because it tries to inline the function. | ||||
* | Implement clipboard paste support | adnano | 2023-07-28 | 1 | -8/+61 |
| | | | | References: https://todo.sr.ht/~adnano/wmenu/4 | ||||
* | Bump version to 0.1.4 | adnano | 2023-07-15 | 1 | -1/+1 |
| |