about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-06-03 10:43:20 -0700
committerKartik K. Agaram <vc@akkartik.com>2023-06-03 10:44:11 -0700
commitcf0ba7c15431221e90f6aee87ea5b69ef0b18ea4 (patch)
treee07dc2253e5fb168e72597dec39f45296fce87ae
parent3114176ebd5b9895b5f67c759a2a705f673a4ac0 (diff)
downloadview.love-cf0ba7c15431221e90f6aee87ea5b69ef0b18ea4.tar.gz
handle wrapping lines
-rw-r--r--edit.lua4
-rw-r--r--text_tests.lua17
2 files changed, 19 insertions, 2 deletions
diff --git a/edit.lua b/edit.lua
index ddd17c1..5918165 100644
--- a/edit.lua
+++ b/edit.lua
@@ -232,8 +232,8 @@ function edit.mouse_press(State, x,y, mouse_button)
     State.old_selection1 = State.selection1
     State.mousepress_shift = App.shift_down()
     State.selection1 = {
-        line=1,
-        pos=1,
+        line=State.screen_top1.line,
+        pos=State.screen_top1.pos,
     }
     return
   end
diff --git a/text_tests.lua b/text_tests.lua
index d5368a8..a01ad3e 100644
--- a/text_tests.lua
+++ b/text_tests.lua
@@ -847,6 +847,23 @@ function test_select_text_using_mouse_starting_above_text()
   check_eq(Editor_state.selection1.pos, 1, 'selection:pos')
 end
 
+function test_select_text_using_mouse_starting_above_text_wrapping_line()
+  -- first screen line starts in the middle of a line
+  App.screen.init{width=50, height=60}
+  Editor_state = edit.initialize_test_state()
+  Editor_state.lines = load_array{'abc', 'defgh', 'xyz'}
+  Text.redraw_all(Editor_state)
+  Editor_state.cursor1 = {line=2, pos=5}
+  Editor_state.screen_top1 = {line=2, pos=3}
+  Editor_state.screen_bottom1 = {}
+  -- press mouse above first line of text
+  edit.run_after_mouse_press(Editor_state, Editor_state.left+8,5, 1)
+  -- selection is at screen top
+  check(Editor_state.selection1.line ~= nil, 'selection:line-not-nil')
+  check_eq(Editor_state.selection1.line, 2, 'selection:line')
+  check_eq(Editor_state.selection1.pos, 3, 'selection:pos')
+end
+
 function test_select_text_using_mouse_and_shift()
   App.screen.init{width=50, height=60}
   Editor_state = edit.initialize_test_state()
span> ^
f4558377 ^
6e152710 ^
d1a1173d ^



6e152710 ^

6e152710 ^
d1a1173d ^




b3d031a9 ^


d1a1173d ^

ce657945 ^







b3d031a9 ^


d1a1173d ^

6e152710 ^

b3d031a9 ^
76791a70 ^
d1a1173d ^
c29059c8 ^






bedfed3d ^
c29059c8 ^
d1a1173d ^

















76791a70 ^
d1a1173d ^









76791a70 ^
d1a1173d ^






b3d031a9 ^
d1a1173d ^





















b3d031a9 ^




d1a1173d ^
b3d031a9 ^








d1a1173d ^











e2325c56 ^
d1a1173d ^








6e152710 ^


d1a1173d ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168