1
0
mirror of https://gittea.dev/nova/th.git synced 2025-10-22 02:40:15 -04:00

implemented file search

This commit is contained in:
nova
2025-08-17 21:29:49 +02:00
parent f0a2f14966
commit 1d54169c2d
3 changed files with 97 additions and 2 deletions

View File

@@ -42,7 +42,9 @@ static const binding key_binding[] = {
{ " ", toggle_selection, NULL, "toggle file selection" }, /* on hovered file/directory */
{ "e", update, NULL, "rerun all backend" }, /* executes the entire backend and redrawing of the screen */
{ "B", enter_shell, "$SHELL", "enter $SHELL shell" },
{ "/", not_implemented, NULL, "search" },
{ "/", search, NULL, "search" },
{ "l", search_next, NULL, "search next" },
{ "L", search_previous, NULL, "search previous" },
{ "h", move_left, NULL, "move left" }, /* moves one dir up */
{ "t", move_down, NULL, "move down" },