about summary refs log tree commit diff stats
path: root/source_text.lua
Commit message (Expand)AuthorAgeFilesLines
* reorganize some commentsKartik K. Agaram2023-07-311-2/+2
* bugfix: search highlight straddling screen linesKartik K. Agaram2023-07-311-7/+8
* remove a duplicate print to screenKartik K. Agaram2023-07-311-11/+9
* extract a variableKartik K. Agaram2023-07-311-1/+2
* bugfix: highlight search patterns on the right lineKartik K. Agaram2023-07-311-2/+7
* hoist and duplicate a conditionalKartik K. Agaram2023-07-311-3/+5
* improve a commentKartik K. Agaram2023-07-311-1/+1
* port inscript's bugfix to source editorKartik K. Agaram2023-06-041-0/+15
* add an assertKartik K. Agaram2023-05-141-0/+1
* bugfix: rendering hyperlinks in wrapping linesKartik K. Agaram2023-05-141-1/+1
* bugfix: never use utf8 pos in string.subKartik K. Agaram2023-05-061-1/+3
* remove some support for long lines from source editorKartik K. Agaram2023-04-191-13/+4
* rename a variableKartik K. Agaram2023-04-081-6/+6
* bugfix: syntax highlighting in source editorKartik K. Agaram2023-04-081-2/+7
* switch source side to new screen-line-based renderKartik K. Agaram2023-04-031-94/+111
* start thinking of compute_fragments as a detailKartik K. Agaram2023-04-011-1/+1
* stop creating a singleton table for every wordKartik K. Agaram2023-04-011-12/+12
* clean up some debug printsKartik K. Agaram2023-04-011-8/+0
* no more Text allocationsKartik K. Agaram2023-04-011-16/+10
* App.width can no longer take a TextKartik K. Agaram2023-04-011-11/+8
* get rid of to_textKartik K. Agaram2023-04-011-2/+1
* update stale source X-(Kartik K. Agaram2023-03-261-0/+1
* more bugfixKartik K. Agaram2023-03-171-1/+1
* bugfixKartik K. Agaram2023-03-171-9/+14
* get rid of all bifold textKartik K. Agaram2023-03-171-784/+92
* bring a few things in sync between run and sourceKartik K. Agaram2023-03-171-4/+20
* bugfix: up arrow when line above is a drawingKartik K. Agaram2023-01-311-2/+2
* make love event names consistentKartik K. Agaram2022-12-231-3/+3
* hide editor cursor while in file navigatorKartik K. Agaram2022-09-181-3/+3
* support selections in the source editorKartik K. Agaram2022-09-061-1/+60
* support hyperlinks in the source editorKartik K. Agaram2022-09-051-0/+33
* support drawings in the source editorKartik K. Agaram2022-09-051-60/+137
* editing source code from within the appKartik K. Agaram2022-09-031-0/+1561
4a392d ^
86351aaf ^





















ec73ed12 ^
86351aaf ^











ec73ed12 ^
86351aaf ^



ec73ed12 ^
86351aaf ^

ec73ed12 ^
86351aaf ^


ec73ed12 ^
86351aaf ^






































5a2cb154 ^



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