about summary refs log tree commit diff stats
path: root/text_tests.lua
Commit message (Expand)AuthorAgeFilesLines
* commentKartik K. Agaram2024-06-111-2/+2
* stop caching startyKartik K. Agaram2024-06-111-5/+5
* stop caching screen_bottom1Kartik K. Agaram2024-06-111-106/+0
* fix a crash involving mouse and drawingsKartik K. Agaram2024-06-091-1/+1
* bugfix in cursor positioningKartik K. Agaram2024-02-081-6/+6
* more carefully pass the 'key' arg aroundKartik K. Agaram2024-02-041-81/+81
* streamline button.luaKartik K. Agaram2023-12-161-0/+1
* fix all tests in LÖVE v12Kartik K. Agaram2023-10-091-3/+10
* bugfix: clear selection when clicking above or below linesKartik K. Agaram2023-09-201-0/+24
* bugfix: inscript's bugKartik K. Agaram2023-06-041-0/+27
* handle wrapping linesKartik K. Agaram2023-06-031-0/+17
* change how we handle clicks above top marginKartik K. Agaram2023-06-031-24/+19
* get rid of recent_mouseKartik K. Agaram2023-06-011-23/+23
* failing test now looks realisticKartik K. Agaram2023-06-011-0/+46
* bugfix: searching files containing unicodeKartik K. Agaram2023-05-131-10/+10
* avoid saving fragments in linesKartik K. Agaram2023-04-011-1/+1
* give a test a unique nameKartik K. Agaram2023-03-191-3/+3
* bugfixKartik K. Agaram2023-03-171-0/+22
* bugfix: up arrow when line above is a drawingKartik K. Agaram2023-01-311-0/+50
* deduce test names on failuresKartik K. Agaram2023-01-201-533/+438
* overzealous search-and-replaceKartik K. Agaram2022-12-231-1/+1
* make love event names consistentKartik K. Agaram2022-12-231-22/+22
* streamline one more test nameKartik K. Agaram2022-12-131-14/+14
* more streamlined test namesKartik K. Agaram2022-12-131-29/+29
* remove a duplicate testKartik K. Agaram2022-12-131-27/+10
* bugfix: check after cursor on same line when searching upwardsKartik K. Agaram2022-08-111-0/+19
* bugfix: search upwardsKartik K. Agaram2022-08-111-0/+19
* bugfix: check before cursor on same lineKartik K. Agaram2022-08-111-0/+19
* bugfix: pagedown was sometimes bouncing upKartik K. Agaram2022-08-101-0/+17
* bugfix: backspace from start of final lineKartik K. Agaram2022-08-101-0/+16
* click to the left of a lineKartik K. Agaram2022-07-291-0/+19
* line.y -> line_cache.starty in a few more placesKartik K. Agaram2022-07-271-4/+4
* bugfix: skip over drawings when searchingKartik K. Agaram2022-07-251-7/+2
* bugfix: searchKartik K. Agaram2022-07-211-0/+33
* bugfix: where cursor is drawnKartik K. Agaram2022-07-201-10/+10
* exclude left margin from my word-split heuristicKartik K. Agaram2022-07-201-2/+2
* allow Text.nearest_pos_less_than to return 0Kartik K. Agaram2022-07-201-2/+2
* unify two similar functionsKartik K. Agaram2022-07-191-13/+12
* keep text from overflowing right marginKartik K. Agaram2022-07-191-36/+33
* delete some duplicate initializationKartik K. Agaram2022-07-191-4/+0
* bugfix: couple of margin-relative computationsKartik K. Agaram2022-07-171-1/+61
* separate data structure for each line's cache dataKartik K. Agaram2022-07-171-12/+96
* bring back a set of constantsKartik K. Agaram2022-07-161-1/+1
* more decoupling editor tests from AppKartik K. Agaram2022-07-161-1/+1
* more decoupling editor tests from AppKartik K. Agaram2022-07-161-3/+3
* make test initializations a little more obviousKartik K. Agaram2022-07-151-93/+93
* left/right margin -> left/right coordinatesKartik K. Agaram2022-07-121-121/+214
* call edit rather than App callbacks in testsKartik K. Agaram2022-07-121-101/+101
* start passing in Editor_state explicitlyKartik K. Agaram2022-07-121-76/+77
* initialize contains test stateKartik K. Agaram2022-07-121-87/+0
2 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275