about summary refs log tree commit diff stats
path: root/prototypes/browse/28
Commit message (Collapse)AuthorAgeFilesLines
* 6923Kartik Agaram2020-10-014-479/+0
|
* 6794 - cleaner interface for keyboardKartik Agaram2020-09-161-1/+1
| | | | | | | So far I've been assuming that read-key only works for ascii, and that I'd need to get more sophisticated both for multi-byte utf-8 and multi-byte terminal escape codes like arrow keys. Rather to my surprise, both work fine. We just need to adjust the types to reflect this fact.
* 6720Kartik Agaram2020-08-221-3/+3
|
* 6703 - new types: code-point and graphemeKartik Agaram2020-08-022-2/+4
| | | | | | | | | | Both have the same size: 4 bytes. So far I've just renamed print-byte to print-grapheme, but it still behaves the same. I'm going to support printing code-points next, but grapheme 'clusters' spanning multiple code-points won't be supported for some time.
* 6699 - start building out fake screenKartik Agaram2020-08-013-18/+18
| | | | | We now have all existing apps and prototypes going through the dependency-injected wrapper, even though it doesn't actually implement the fake screen yet.
* 6601Kartik Agaram2020-06-292-14/+14
|
* 6600Kartik Agaram2020-06-292-2/+2
|
* 6570 - error on use of a clobbered varKartik Agaram2020-06-211-6/+10
| | | | | All tests now passing, and factorial.mu and all other apps now working. The new checks caught one problem in a few prototypes.
* 6501Kartik Agaram2020-06-071-1/+1
| | | | Bugfix in support for CRLF line-endings.
* 6500Kartik Agaram2020-06-071-79/+79
| | | | Minor formatting tweaks.
* 6496Kartik Agaram2020-06-061-1/+1
|
* 6495Kartik Agaram2020-06-062-89/+91
|
* 6494Kartik Agaram2020-06-064-0/+471
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 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309