| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
On some systems, pipe is declared with the attribute warn_unused_result,
so we have to check the return value.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
References: https://todo.sr.ht/~adnano/wmenu/4
|
| |
|
|
|
|
| |
This allows seeing option list without doing any input, like in original dmenu.
|
| |
|
| |
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
| |
Closes: https://todo.sr.ht/~adnano/wmenu/2
|
| |
|
|
|
|
| |
Implements: https://todo.sr.ht/~adnano/wmenu/3
|
| |
|
| |
|
|
|
|
| |
Implements: https://todo.sr.ht/~adnano/wmenu/1
|
|
|