aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Version 0.1.7adnano2024-03-021-1/+1
|
* Free memory associated with the menu on exitadnano2024-03-025-99/+220
|
* Rename text_len to input_lenadnano2024-03-021-3/+3
|
* Fix output selection with -o flagadnano2024-03-012-4/+7
|
* Revert "Simplify movewordedge"adnano2024-02-271-6/+17
| | | | This reverts commit 8bcad262a4d047140767d9467ac5526bb768a95e.
* Drop unnecessary TODO commentadnano2024-02-271-1/+0
|
* Simplify read_menu_itemsadnano2024-02-271-7/+9
|
* Move menu and rendering logic into separate filesadnano2024-02-2710-962/+1023
|
* Update LICENSEadnano2024-02-271-1/+1
|
* Remove unused includesadnano2024-02-272-4/+0
|
* Improve formatting of docsadnano2024-02-271-28/+28
|
* Add C-Y keybinding to docsadnano2024-02-271-0/+3
|
* Simplify movewordedgeadnano2024-02-271-17/+7
|
* Add dmenu's Meta (Alt) keybindingsAmin Bandali2024-02-272-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 dmenuAmin Bandali2024-02-271-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 functionsadnano2024-02-261-54/+64
|
* Check if selection is not null before dereferencingadnano2024-02-261-2/+2
|
* Add functions to render pages of itemsadnano2024-02-261-31/+34
|
* Refactor rendering codeadnano2024-02-261-96/+61
|
* Don't set selection if there are no pagesadnano2024-02-261-1/+3
|
* Don't match items in insertadnano2024-02-261-104/+105
|
* Add comments to menuadnano2024-02-261-49/+48
|
* Add some comments to item and pageadnano2024-02-261-5/+5
|
* Rename menu_state to menuadnano2024-02-261-333/+333
|
* Don't return -1 from render_horizontal_itemadnano2024-02-261-13/+9
|
* Rename menu_item to itemadnano2024-02-261-35/+38
|
* Mark functions as staticadnano2024-02-261-16/+16
|
* Rename item_group to pageadnano2024-02-261-82/+80
|
* Refactor item paging logicadnano2024-02-261-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 scrollingadnano2024-02-261-60/+28
|
* Keep track of end of match listadnano2024-02-261-8/+6
|
* Ignore unrecognized Ctrl keybindingsadnano2024-02-261-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 dmenuAmin Bandali2024-02-262-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 optionaladnano2024-02-041-1/+1
|
* Version 0.1.6adnano2024-01-211-1/+1
|
* pool-buffer: Fix type conversion issuesadnano2023-12-281-4/+4
|
* Check the return value of pipeadnano2023-12-281-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 paddingadnano2023-12-281-1/+1
|
* Fix various type issuesadnano2023-12-281-5/+5
|
* Version 0.1.5adnano2023-12-251-1/+1
|
* Fix build failure when compiling in releasePiotr StefaƄski2023-10-311-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 supportadnano2023-07-281-8/+61
| | | | References: https://todo.sr.ht/~adnano/wmenu/4
* Bump version to 0.1.4adnano2023-07-151-1/+1
|
* pango: Remove unused format specifieradnano2023-07-153-44/+13
|
* Render after reading stdinMykyta Holubakha2023-07-151-0/+1
| | | | This allows seeing option list without doing any input, like in original dmenu.
* Drop render_frame on surface_enterMykyta Holubakha2023-07-151-1/+0
|
* Fix crash when some line contains %Nikita Ivanov2023-06-052-7/+7
|
* readme: Tweak wordingadnano2023-03-201-2/+2
|
* Update README.mdadnano2023-03-201-3/+4
|
* Fix potential buffer overflowadnano2023-02-261-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.