Commit Graph

14 Commits

Author SHA1 Message Date
Kartik K. Agaram d253a31828 rename grapheme to code-point-utf8
Longer name, but it doesn't lie. We have no data structure right now for
combining multiple code points. And it makes no sense for the notion of
a grapheme to conflate its Unicode encoding.
2021-11-09 08:12:11 -08:00
Kartik Agaram 8eae94e860 clean up VSCode extension 2021-11-09 06:35:53 -08:00
Kartik Agaram 2bac01fb7b syntax highlighting for Visual Studio Code 2021-11-08 18:49:15 -08:00
Kartik Agaram 11a191c290 syntax highlighting bundle for TextMate 2021-11-08 18:33:30 -08:00
Kartik K. Agaram 28b6d1656a . 2021-10-21 21:20:22 -07:00
Kartik K. Agaram d73c84e299 instructions for Universal Ctags
Thanks Sumeet Agarwal for raising this issue.
2021-07-07 19:34:54 -07:00
Kartik Agaram 372367f59a html: better highlighting for int registers 2021-06-26 20:55:36 -07:00
Kartik Agaram e962a53f9a . 2021-06-06 18:55:41 -07:00
Kartik K. Agaram 4c07de4d3b . 2021-06-06 15:33:11 -07:00
Kartik K. Agaram c5983ab3cc nicer onboarding experience with Vim
Thanks Sumeet Agarwal (https://github.com/sumeet) for helping catch this.
2021-06-06 15:27:30 -07:00
Kartik K. Agaram 1116288871 hacky Vim syntax highlighting for Mu Lisp 2021-06-06 15:09:32 -07:00
Kartik K. Agaram 9d1f0e6eca hacky colors for registers 2021-06-04 20:50:46 -07:00
Kartik K. Agaram 067fa9c725 bugfix: unbound variables were not raising error
Since we switched error trace semantics from a designated label to a designated
depth (commit 9831a8cef9 on May 19).
2021-05-30 18:02:40 -07:00
Kartik K. Agaram 71e4f38129 7842 - new directory organization
Baremetal is now the default build target and therefore has its sources
at the top-level. Baremetal programs build using the phase-2 Mu toolchain
that requires a Linux kernel. This phase-2 codebase which used to be at
the top-level is now under the linux/ directory. Finally, the phase-2 toolchain,
while self-hosting, has a way to bootstrap from a C implementation, which
is now stored in linux/bootstrap. The bootstrap C implementation uses some
literate programming tools that are now in linux/bootstrap/tools.

So the whole thing has gotten inverted. Each directory should build one
artifact and include the main sources (along with standard library). Tools
used for building it are relegated to sub-directories, even though those
tools are often useful in their own right, and have had lots of interesting
programs written using them.

A couple of things have gotten dropped in this process:
  - I had old ways to run on just a Linux kernel, or with a Soso kernel.
    No more.
  - I had some old tooling for running a single test at the cursor. I haven't
    used that lately. Maybe I'll bring it back one day.

The reorg isn't done yet. Still to do:
  - redo documentation everywhere. All the README files, all other markdown,
    particularly vocabulary.md.
  - clean up how-to-run comments at the start of programs everywhere
  - rethink what to do with the html/ directory. Do we even want to keep
    supporting it?

In spite of these shortcomings, all the scripts at the top-level, linux/
and linux/bootstrap are working. The names of the scripts also feel reasonable.
This is a good milestone to take stock at.
2021-03-03 22:21:03 -08:00