mu/archive/1.vm/sandbox
Kartik Agaram 30c45021d4 6155 2020-03-20 18:19:13 -07: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
mu_run 6155 2020-03-20 18:19:13 -07:00
tmux.conf 5852 2020-01-01 17:04:37 -08:00

Readme.md

Variant of the Mu programming environment that runs just the sandbox.

Suitable for people who want to run their favorite terminal-based editor with Mu. Just run editor and sandbox inside split panes atop tmux. For example, here's Mu running alongside vim:

tmux+vim example

To set this up:

a) copy the lines in tmux.conf into $HOME/.tmux.conf.

b) copy the file mu_run somewhere in your $PATH.

Now when you start tmux, split it into two vertical panes, run ./mu sandbox on the right pane and your editor on the left. You should be able to hit F4 in either side to run the sandbox.

Known issues: you have to explicitly save inside your editor before hitting F4, unlike with ./mu edit.


Appendix: keyboard shortcuts

moving

  • ctrl-a or home: move cursor to start of line
  • ctrl-e or end: move cursor to end of line

modifying text