Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 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 | |
| | ||||||
* | pango: Remove unused format specifier | adnano | 2023-07-15 | 3 | -44/+13 | |
| | ||||||
* | Render after reading stdin | Mykyta Holubakha | 2023-07-15 | 1 | -0/+1 | |
| | | | | This allows seeing option list without doing any input, like in original dmenu. | |||||
* | Drop render_frame on surface_enter | Mykyta Holubakha | 2023-07-15 | 1 | -1/+0 | |
| | ||||||
* | Fix crash when some line contains % | Nikita Ivanov | 2023-06-05 | 2 | -7/+7 | |
| | ||||||
* | readme: Tweak wording | adnano | 2023-03-20 | 1 | -2/+2 | |
| | ||||||
* | Update README.md | adnano | 2023-03-20 | 1 | -3/+4 | |
| | ||||||
* | Fix potential buffer overflow | adnano | 2023-02-26 | 1 | -2/+3 | |
| | | | | | | | Calling strncpy where the size of the string to copy is equal to the size of the destination can potentially lead to a buffer overflow. To fix this, copy only what is needed with memcpy, and explicitly terminate the string with a null character. | |||||
* | Bump version | adnano | 2023-02-07 | 1 | -1/+1 | |
| | ||||||
* | Fix buffer size not divisible by scale | adnano | 2023-02-01 | 1 | -2/+1 | |
| | ||||||
* | docs: Document new bindings | adnano | 2022-12-03 | 1 | -0/+61 | |
| | ||||||
* | Drop xdg-output-unstable-v1 | adnano | 2022-12-02 | 2 | -25/+4 | |
| | | | | Closes: https://todo.sr.ht/~adnano/wmenu/2 | |||||
* | Fix move to end of word | adnano | 2022-12-02 | 1 | -5/+6 | |
| | ||||||
* | Support basic Emacs-style line-editing bindings | adnano | 2022-12-02 | 1 | -0/+90 | |
| | | | | Implements: https://todo.sr.ht/~adnano/wmenu/3 | |||||
* | Support number pad keys | adnano | 2022-12-02 | 1 | -1/+10 | |
| | ||||||
* | README: Mention Sway | adnano | 2022-04-17 | 1 | -2/+9 | |
| | ||||||
* | README: add contributing section | lemontree | 2022-04-17 | 1 | -0/+6 | |
| | ||||||
* | Adjust line height | adnano | 2022-04-17 | 1 | -1/+1 | |
| | ||||||
* | Implement vertical list support | adnano | 2022-04-17 | 1 | -73/+218 | |
| | | | | Implements: https://todo.sr.ht/~adnano/wmenu/1 | |||||
* | Initial commit | adnano | 2022-01-16 | 13 | -0/+1825 | |