aboutsummaryrefslogtreecommitdiff
path: root/main.c
Commit message (Collapse)AuthorAgeFilesLines
* 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-261-43/+5
| | | | | | 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.
* 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.
* Fix various type issuesadnano2023-12-281-5/+5
|
* 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
* pango: Remove unused format specifieradnano2023-07-151-6/+6
|
* 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-051-6/+6
|
* 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.
* Fix buffer size not divisible by scaleadnano2023-02-011-2/+1
|
* Drop xdg-output-unstable-v1adnano2022-12-021-24/+4
| | | | Closes: https://todo.sr.ht/~adnano/wmenu/2
* Fix move to end of wordadnano2022-12-021-5/+6
|
* Support basic Emacs-style line-editing bindingsadnano2022-12-021-0/+90
| | | | Implements: https://todo.sr.ht/~adnano/wmenu/3
* Support number pad keysadnano2022-12-021-1/+10
|
* Adjust line heightadnano2022-04-171-1/+1
|
* Implement vertical list supportadnano2022-04-171-73/+218
| | | | Implements: https://todo.sr.ht/~adnano/wmenu/1
* Initial commitadnano2022-01-161-0/+983