about summary refs log tree commit diff stats
path: root/source_text_tests.lua
diff options
context:
space:
mode:
Diffstat (limited to 'source_text_tests.lua')
-rw-r--r--source_text_tests.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/source_text_tests.lua b/source_text_tests.lua
index db3ae44..7ed4caa 100644
--- a/source_text_tests.lua
+++ b/source_text_tests.lua
@@ -2087,3 +2087,17 @@ function test_search_downwards_from_end_of_line()
   edit.run_after_keychord(Editor_state, 'down', 'down')
   -- no crash
 end
+
+function test_search_downwards_from_final_pos_of_line()
+  App.screen.init{width=120, height=60}
+  Editor_state = edit.initialize_test_state()
+  Editor_state.lines = load_array{'abc', 'def', 'ghi'}
+  Text.redraw_all(Editor_state)
+  Editor_state.cursor1 = {line=1, pos=3}
+  Editor_state.screen_top1 = {line=1, pos=1}
+  edit.draw(Editor_state)
+  -- search for empty string
+  edit.run_after_keychord(Editor_state, 'C-f', 'f')
+  edit.run_after_keychord(Editor_state, 'down', 'down')
+  -- no crash
+end