about summary refs log tree commit diff stats
path: root/edit.mu
Commit message (Collapse)AuthorAgeFilesLines
* 1578 - editor inside 2-column layoutKartik K. Agaram2015-06-161-17/+67
|
* 1577 - vocabulary for drawing bordersKartik K. Agaram2015-06-161-24/+65
|
* 1576Kartik K. Agaram2015-06-161-0/+50
|
* 1575Kartik K. Agaram2015-06-161-0/+8
|
* 1573Kartik K. Agaram2015-06-161-1/+40
|
* 1572Kartik K. Agaram2015-06-161-2/+45
|
* 1570Kartik K. Agaram2015-06-161-1/+31
|
* 1568 - starting on editor widget in ernestKartik K. Agaram2015-06-161-123/+15
|
* 1551 - initial sketch of layoutKartik K. Agaram2015-06-111-1/+53
| | | | | | | | | | | | | | | Two columns: edit code on left and run code on right. In both columns, the action is at the top of the screen, and stuff gradually flows downward unless pulled back up. Stuff you run on the right side will eventually become reproducible test cases that runs constantly on every change. We also have a tentative signature for the 'edit' routine: it'll take an input string and return an output string when it finishes. More columns expand to the right. Number of columns shown will remain fixed at any time depending on screen width. But for now we support exactly two columns.
* 1547Kartik K. Agaram2015-06-091-0/+1
|
* 1545 - sketching out a simple editor widgetKartik K. Agaram2015-06-081-0/+81
|
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-18/+0
| | | | I've tried to update the Readme, but there are at least a couple of issues.
* 497 - strengthen the concept of 'space'Kartik K. Agaram2015-01-021-1/+1
| | | | | | | | | | | | | | | | | | | | 'default-scope' is now 'default-space' 'closure-generator' is now 'next-space-generator' The connection to high-level syntax for closures is now tenuous, so we'll call the 'outer scope' the 'next space'. So, let's try to create a few sentences with all these related ideas: Names map to addresses offset from a default-space when it's provided. Spaces can be strung together. The zeroth variable points to the next space, the one that is accessed when a variable has /space:1. To map a name to an address in the next space, you need to know what function generated that space. A corollary is that the space passed in to a function should always be generated by a single function. Spaces can be used to construct lexical scopes and objects.
* 428 - cleanup odds and endsKartik K. Agaram2014-12-141-12/+12
|
* 403 - 'function' is more clear than 'def'Kartik K. Agaram2014-12-121-1/+1
|
* 401 - stop abbreviating opsKartik K. Agaram2014-12-121-3/+3
| | | | | We expect users to come across mu from arbitrary bits of code, so try to make each line as self-contained as possible.
* 341 - standardize traces againKartik K. Agaram2014-11-271-1/+1
|
* 314 - better syntax for functionsKartik K. Agaram2014-11-241-2/+2
|
* 202 - variable names for edit.muKartik K. Agaram2014-11-011-11/+12
|
* 181 - fix inconsistent metadataKartik K. Agaram2014-10-301-2/+2
| | | | | We have cases where 'type' is stored in memory, so it can't be a literal type like 'offset'.
* 175 - have 'new' write array size automaticallyKartik K. Agaram2014-10-291-2/+0
|
* 160 - fix stale editor testKartik K. Agaram2014-10-281-13/+13
|
* 145 - delete random programsKartik K. Agaram2014-10-141-17/+0
| | | | | | | | | They need a type table to work, but I'm keeping type tables next to the tests. Everything needs to be a test from now on. (But first some fixes to the terminal primitives.)
* 121 - finally I can alloc a 2D arrayKartik K. Agaram2014-10-071-9/+11
|
* 113 - slight progress working with screen 2D arrayKartik K. Agaram2014-10-061-0/+18
| | | | | Why did it take forever to realize nobody will set the array length, that I have to do it for myself?
* 100Kartik K. Agaram2014-10-051-1/+1
|
* 99 - edit.mu looks much cleaner nowKartik K. Agaram2014-10-051-17/+8
|
* 95Kartik K. Agaram2014-10-041-0/+25