about summary refs log tree commit diff stats
path: root/text_tests.lua
Commit message (Expand)AuthorAgeFilesLines
* 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
* group all editor globalsKartik K. Agaram2022-07-121-877/+877
* start decoupling editor tests from AppKartik K. Agaram2022-07-111-76/+76
* skip multiple consecutive whitespaceKartik K. Agaram2022-07-111-0/+22
* support other whitespace chars in word movementsKartik K. Agaram2022-07-111-0/+22
* flesh out some tests for word movementsKartik K. Agaram2022-07-111-0/+125
* yet another bugfix in selection managementKartik K. Agaram2022-07-071-18/+1
* bugfix: clicking on empty linesKartik K. Agaram2022-07-011-0/+16
* right marginKartik K. Agaram2022-06-301-0/+71
* rip out notion of Line_widthKartik K. Agaram2022-06-301-84/+17
* bugfix: lines that aren't drawn from the startKartik K. Agaram2022-06-301-0/+21
* some redundant callsKartik K. Agaram2022-06-301-4/+0
* clicking to the right of a line within line widthKartik K. Agaram2022-06-291-0/+22
* bugfix: clicking past end of screen lineKartik K. Agaram2022-06-291-0/+49
* bugfix: scrolling in left/right movementsKartik K. Agaram2022-06-281-0/+118
* bugfix: typing a capital letter deletes selectionKartik K. Agaram2022-06-261-0/+22
* bugfix: deleting a selection spanning pagesKartik K. Agaram2022-06-261-0/+25
* bugfix: don't delete selection when moving cursorKartik K. Agaram2022-06-231-0/+18
* keep drawings within the line width slider as wellKartik K. Agaram2022-06-221-2/+3
* bugfix: delete selection before pastingKartik K. Agaram2022-06-211-0/+38
* revert selection logic to before commit 3ffc2ed8fKartik K. Agaram2022-06-201-0/+1
mp;id=b8d08418a72a71526a6dbac167e9588f5002610f'>^
36e4e71e ^
7582555b ^
36e4e71e ^
7582555b ^








36e4e71e ^
4ea0f69a ^


36e4e71e ^




4ea0f69a ^
e71c8103 ^

36e4e71e ^

f6ae504c ^
4ea0f69a ^
36e4e71e ^

4ea0f69a ^

36e4e71e ^






4ea0f69a ^

306c76d8 ^






b6aff4c3 ^

306c76d8 ^
4ea0f69a ^

45cf5174 ^

08bc4ef9 ^

b34fd133 ^
08bc4ef9 ^











b34fd133 ^
08bc4ef9 ^


45cf5174 ^





fab4dc54 ^
45cf5174 ^



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