about summary refs log tree commit diff stats
path: root/main.lua
Commit message (Expand)AuthorAgeFilesLines
* remove some duplicationKartik K. Agaram2022-08-141-7/+4
* overzealous search-and-replaceKartik K. Agaram2022-08-131-1/+1
* have file API operate on state objectKartik K. Agaram2022-07-251-3/+3
* bugfix: alt-tab shouldn't emit keypress eventsKartik K. Agaram2022-07-251-1/+20
* moveKartik K. Agaram2022-07-251-2/+3
* simplify hysteresis logicKartik K. Agaram2022-07-251-8/+3
* extract methodKartik K. Agaram2022-07-231-14/+2
* separate data structure for each line's cache dataKartik K. Agaram2022-07-171-0/+2
* more precise nameKartik K. Agaram2022-07-151-7/+0
* make test initializations a little more obviousKartik K. Agaram2022-07-151-9/+4
* bugfix: zoom in/out hotkeysKartik K. Agaram2022-07-131-0/+7
* bugfix: resizeKartik K. Agaram2022-07-131-0/+2
* left/right margin -> left/right coordinatesKartik K. Agaram2022-07-121-21/+20
* add state arg to a few functionsKartik K. Agaram2022-07-121-2/+2
* start passing in Editor_state explicitlyKartik K. Agaram2022-07-121-8/+8
* initialize contains test stateKartik K. Agaram2022-07-121-0/+3
* group all editor globalsKartik K. Agaram2022-07-121-32/+32
* bring couple more globals back to the app levelKartik K. Agaram2022-07-121-1/+21
* button framework is at the app levelKartik K. Agaram2022-07-121-0/+4
* experiment: new edit namespaceKartik K. Agaram2022-07-111-416/+13
* stop pretending globals are localKartik K. Agaram2022-07-111-4/+4
* .Kartik K. Agaram2022-07-111-1/+2
* fix a variable nameKartik K. Agaram2022-07-111-3/+3
* add args to some functionsKartik K. Agaram2022-07-081-1/+1
* add args to some functionsKartik K. Agaram2022-07-081-2/+2
* indentKartik K. Agaram2022-07-081-2/+8
* add args to some functionsKartik K. Agaram2022-07-081-2/+2
* add args to some functionsKartik K. Agaram2022-07-081-2/+2
* start passing left/right margins everywhereKartik K. Agaram2022-07-081-2/+2
* drop an arg from a functionKartik K. Agaram2022-07-081-2/+2
* switch arg for a functionKartik K. Agaram2022-07-081-1/+1
* stop scanning from start of file on every App.drawKartik K. Agaram2022-07-071-40/+38
* yet another bugfix in selection managementKartik K. Agaram2022-07-071-2/+5
* just keep the cursor visible after any input eventsKartik K. Agaram2022-07-061-2/+8
* show cursor immediately after a mouse clickKartik K. Agaram2022-07-061-0/+2
* bugfix: avoid scrolling on 'end'Kartik K. Agaram2022-07-051-2/+1
* bugfix: 'escape' to cancel a strokeKartik K. Agaram2022-07-051-5/+0
* what should happen to selection while drawing?Kartik K. Agaram2022-07-051-0/+1
* bugfixKartik K. Agaram2022-07-031-1/+1
* ugh, handle absolute as well as relative pathsKartik K. Agaram2022-07-011-1/+5
* include CWD when saving filenameKartik K. Agaram2022-07-011-1/+3
* bugfix: clicking on empty linesKartik K. Agaram2022-07-011-1/+2
* enforce press/release state only processed onceKartik K. Agaram2022-07-011-4/+7
* bugfix: manage screen_top and cursor when resizingKartik K. Agaram2022-07-011-0/+7
* bugfix: enable resize when loading settingsKartik K. Agaram2022-06-301-2/+10
* right marginKartik K. Agaram2022-06-301-0/+2
* start loading settings as applicableKartik K. Agaram2022-06-301-12/+43
* start saving some settings to disk on quitKartik K. Agaram2022-06-301-1/+8
* initialize screen width to something reasonableKartik K. Agaram2022-06-301-3/+3
* rip out geometry commandline argKartik K. Agaram2022-06-301-33/+8
tik.com> 2016-12-26 11:44:14 -0800 3710' href='/akkartik/mu/commit/html/nqueens.mu.html?h=hlt&id=204dae921abff0c70e017215bb3c91fa6ca11aff'>204dae92 ^
97eb971b ^
204dae92 ^


6c52e24e ^
204dae92 ^



9e751bb8 ^






204dae92 ^



6c52e24e ^
204dae92 ^




9e751bb8 ^











204dae92 ^



97eb971b ^

204dae92 ^

2f02189d ^



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