EDITOR

  the editor in Interlude is a simple line editor written inside of the DB
  entirely in Coda-code.  When you are in the editor, you can communicate
  with other people by using : and " to pose and say, respectively.  anything
  else you type is treated as a line to insert into the list you are editing,
  unless it starts with one of the following commands (first letter alone is
  sufficient):

  .help     - displays this screen
  .quit     - finishes what you're working on and tries to save/compile it.
  .xit      - leaves the editor without saving/compiling work.
  .list     - lists what has been typed so far.
                                            .list       <-- lists everything
                                            .list 2     <-- lists line 2
                                            .list 3 6   <-- lists lines 3-6
  .delete   - deletes one line ... e.g.  .delete 5    <-- deletes line 5
                                         .delete 2 6  <-- deletes lines 2-6
  .insert   - specifies what line subsequent lines will be entered at:
                                      .insert 2  <-- start inserting at line 2