about summary refs log tree commit diff stats
path: root/source_edit.lua
Commit message (Expand)AuthorAgeFilesLines
* clearing starty is redundant in mutationsKartik K. Agaram2023-12-031-5/+0
* mouse button state in source editorKartik K. Agaram2023-12-011-0/+2
* audit all assertsKartik K. Agaram2023-11-181-10/+3
* clearer API for drawing a buttonKartik K. Agaram2023-10-161-1/+1
* bugfix: clear selection when clicking above or below linesKartik K. Agaram2023-09-201-13/+27
* indentKartik K. Agaram2023-09-161-8/+8
* port an old fix to source editorKartik K. Agaram2023-09-161-1/+11
* bugfix to the helper I added yesterdayKartik K. Agaram2023-09-161-0/+1
* hide line numbers from log browserKartik K. Agaram2023-09-151-4/+8
* bugfix: crash when using mouse wheelKartik K. Agaram2023-09-151-0/+2
* change a helper slightlyKartik K. Agaram2023-09-151-7/+11
* always show line numbers in source editorKartik K. Agaram2023-09-141-1/+2
* make a few names consistent with snake_caseKartik K. Agaram2023-08-301-3/+3
* port inscript's bugfix to source editorKartik K. Agaram2023-06-041-12/+33
* enhance bugfix of commit a9aa3436f (Dec 2024)Kartik K. Agaram2023-04-081-1/+1
* switch source side to new screen-line-based renderKartik K. Agaram2023-04-031-2/+0
* update documentation on fragmentsKartik K. Agaram2023-04-011-1/+1
* no more Text allocationsKartik K. Agaram2023-04-011-1/+0
* App.width can no longer take a TextKartik K. Agaram2023-04-011-7/+0
* update stale source X-(Kartik K. Agaram2023-03-261-11/+16
* update stale informationKartik K. Agaram2023-03-251-1/+1
* some minor cleanupKartik K. Agaram2023-03-231-1/+1
* mouse wheel supportKartik K. Agaram2023-03-231-0/+14
* get rid of all bifold textKartik K. Agaram2023-03-171-76/+27
* bring a few things in sync between run and sourceKartik K. Agaram2023-03-171-3/+5
* bugfix: disallow font size of 0Kartik K. Agaram2023-03-171-2/+4
* state validation in source editor as wellKartik K. Agaram2023-03-171-2/+24
* bugfixKartik K. Agaram2023-02-091-0/+1
* bugfixKartik K. Agaram2022-12-241-1/+1
* typoKartik K. Agaram2022-12-241-1/+1
* consistent names in a few more placesKartik K. Agaram2022-12-231-4/+4
* make love event names consistentKartik K. Agaram2022-12-231-19/+19
* repeat bugfix on source editor X-(Kartik K. Agaram2022-12-121-2/+5
* repeat bugfix on source editorKartik K. Agaram2022-12-121-1/+6
* repeat bugfix on source editorKartik K. Agaram2022-11-271-1/+1
* ctrl+a: select entire bufferKartik K. Agaram2022-11-191-1/+4
* stop tracking wallclock timeKartik K. Agaram2022-11-031-2/+2
* hide editor cursor while in file navigatorKartik K. Agaram2022-09-181-2/+2
* new testKartik K. Agaram2022-09-151-1/+4
* bugfix: path munging on WindowsKartik K. Agaram2022-09-101-1/+1
* self-documenting 0 Test_right_marginKartik K. Agaram2022-09-071-1/+4
* switch shortcuts for bifold textKartik K. Agaram2022-09-061-2/+2
* support selections in the source editorKartik K. Agaram2022-09-061-1/+56
* support hyperlinks in the source editorKartik K. Agaram2022-09-051-0/+1
* support drawings in the source editorKartik K. Agaram2022-09-051-21/+157
* editing source code from within the appKartik K. Agaram2022-09-031-0/+377
ous revision' href='/akkartik/mu/blame/047jump_label.cc?h=hlt&id=3f367cb9466131f95c11c24df3aac7057143587b'>^
e6692482 ^
fa6d93b2 ^
2b250717 ^
fa6d93b2 ^

4071055a ^
dc1323e9 ^
e6692482 ^
fa6d93b2 ^
4071055a ^
dc1323e9 ^
e6692482 ^

fa6d93b2 ^
4071055a ^
dc1323e9 ^



b24eb476 ^
e4630643 ^
9dcbec39 ^
4adb09bc ^
e4630643 ^

ef96f57c ^
0f125d5f ^
4adb09bc ^
9dcbec39 ^
4adb09bc ^


f3760b0f ^
9dcbec39 ^
4adb09bc ^


f22250a1 ^
dc1323e9 ^

4a943d4e ^













dc1323e9 ^
4a943d4e ^













dc1323e9 ^
4a943d4e ^













4071055a ^
4a943d4e ^

















4adb09bc ^
4a943d4e ^










fa6d93b2 ^
4a943d4e ^










fa6d93b2 ^
4a943d4e ^













4adb09bc ^
4a943d4e ^

















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
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