implement functionality for left and right arrow keys to move cursor left/right when entering searchString in NORMAL_SEARCH_MODE

This commit is contained in:
2025-09-01 11:33:01 +01:00
parent a10e56935e
commit 3e69c41d8f
2 changed files with 33 additions and 0 deletions

View File

@@ -267,4 +267,9 @@ struct
NormalFinish.withSearchList (app, searchList)
| KEY_ENTER => app
| KEY_BACKSPACE => app
(* todo *)
| ARROW_RIGHT => app
| ARROW_LEFT => app
| ARROW_UP => app
| ARROW_DOWN => app
end