mu/archive/1.vm/edit
Kartik Agaram 2a4088119c 5852 2020-01-01 17:04:37 -08:00
..
001-editor.mu 5852 2020-01-01 17:04:37 -08:00
002-typing.mu 5852 2020-01-01 17:04:37 -08:00
003-shortcuts.mu 5852 2020-01-01 17:04:37 -08:00
004-programming-environment.mu 5852 2020-01-01 17:04:37 -08:00
005-sandbox.mu 5852 2020-01-01 17:04:37 -08:00
006-sandbox-copy.mu 5852 2020-01-01 17:04:37 -08:00
007-sandbox-delete.mu 5852 2020-01-01 17:04:37 -08:00
008-sandbox-edit.mu 5852 2020-01-01 17:04:37 -08:00
009-sandbox-test.mu 5852 2020-01-01 17:04:37 -08:00
010-sandbox-trace.mu 5852 2020-01-01 17:04:37 -08:00
011-errors.mu 5852 2020-01-01 17:04:37 -08:00
012-editor-undo.mu 5852 2020-01-01 17:04:37 -08:00
Readme.md 5852 2020-01-01 17:04:37 -08:00

Readme.md

Environment for learning programming using Mu: http://akkartik.name/post/mu

Run it from the mu directory:

$ ./mu edit

This will load all the .mu files in this directory and then run the editor. Press ctrl-c to quit. Press F4 to save your work (if a lesson/ directory exists) and to run the contents of the sandbox editor on the right.

You can also run the tests for the environment:

$ ./mu test edit

You can also load the files more explicitly by enumerating them all (in order):

$  ./mu edit/*.mu

This is handy if you want to play with simpler versions of the editor that are easier to understand. Stop loading at any layer to run with a subset of features:

$ ./mu edit/001*.mu edit/002*.mu  # run a simple editor rather than the full environment

Appendix: keyboard shortcuts

moving and scrolling

  • ctrl-a or home: move cursor to start of line
  • ctrl-e or end: move cursor to end of line
  • ctrl-f or page-down: scroll down by one page
  • ctrl-b or page-up: scroll up by one page
  • ctrl-x: scroll down by one line
  • ctrl-s: scroll up by one line
  • ctrl-t: scroll until current line is at top of screen

modifying text