about summary refs log tree commit diff stats
path: root/text_tests.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-07-11 18:56:19 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-07-11 18:56:19 -0700
commitbc2c14c89921d255e99778e6c6b2c4f2e755d08f (patch)
tree01962ffb1dc9c75c21e7a08843f2bc9b168fff43 /text_tests.lua
parent92e572fc8966d6f60f90c5c8311b082b84d67ed0 (diff)
downloadview.love-bc2c14c89921d255e99778e6c6b2c4f2e755d08f.tar.gz
support other whitespace chars in word movements
Diffstat (limited to 'text_tests.lua')
-rw-r--r--text_tests.lua22
1 files changed, 22 insertions, 0 deletions
diff --git a/text_tests.lua b/text_tests.lua
index a135aa8..1d508bc 100644
--- a/text_tests.lua
+++ b/text_tests.lua
@@ -141,6 +141,17 @@ function test_skip_to_previous_word()
   check_eq(Cursor1.pos, 1, 'F - test_skip_to_previous_word')
 end
 
+function test_skip_past_tab_to_previous_word()
+  io.write('\ntest_skip_past_tab_to_previous_word')
+  App.screen.init{width=120, height=60}
+  Lines = load_array{'abc def\tghi'}
+  Cursor1 = {line=1, pos=10}  -- within third word
+  Margin_right = 0; Margin_width = Margin_left
+  App.draw()
+  App.run_after_keychord('M-left')
+  check_eq(Cursor1.pos, 9, 'F - test_skip_past_tab_to_previous_word')
+end
+
 function test_move_to_start_of_word_on_previous_line()
   io.write('\ntest_move_to_start_of_word_on_previous_line')
   App.screen.init{width=120, height=60}
@@ -175,6 +186,17 @@ function test_skip_to_next_word()
   check_eq(Cursor1.pos, 8, 'F - test_skip_to_next_word')
 end
 
+function test_skip_past_tab_to_next_word()
+  io.write('\ntest_skip_past_tab_to_next_word')
+  App.screen.init{width=120, height=60}
+  Lines = load_array{'abc\tdef'}
+  Cursor1 = {line=1, pos=1}  -- at the space between words
+  Margin_right = 0; Margin_width = Margin_left
+  App.draw()
+  App.run_after_keychord('M-right')
+  check_eq(Cursor1.pos, 4, 'F - test_skip_past_tab_to_next_word')
+end
+
 function test_move_past_end_of_word_on_next_line()
   io.write('\ntest_move_past_end_of_word_on_next_line')
   App.screen.init{width=120, height=60}