From 1693f1f160e0567cf0bf1f26d3d61f577082cdfb Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Tue, 29 Oct 2024 16:04:14 -0700 Subject: bugfix #2 in search UI --- source_edit.lua | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'source_edit.lua') diff --git a/source_edit.lua b/source_edit.lua index 90c1171..733ca61 100644 --- a/source_edit.lua +++ b/source_edit.lua @@ -432,10 +432,14 @@ function edit.keychord_press(State, chord, key) State.screen_top = deepcopy(State.search_backup.screen_top) Text.search_next(State) elseif chord == 'down' then - edit.put_cursor_on_next_text_loc_wrapping_around_if_necessary(State) - Text.search_next(State) + if #State.search_term > 0 then + edit.put_cursor_on_next_text_loc_wrapping_around_if_necessary(State) + Text.search_next(State) + end elseif chord == 'up' then - Text.search_previous(State) + if #State.search_term > 0 then + Text.search_previous(State) + end end return elseif chord == 'C-f' then -- cgit 1.4.1-2-gfad0