Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
617B

  1. Visual Editor
  2. This editor, unlike the Block Editor (B100), is grid-based
  3. instead of being command-based. It requires the AT-XY, COLS
  4. and LINES words to be implemented. If you don't have those,
  5. use the Block Editor.
  6. It is loaded with "125 LOAD" and invoked with "VE". Note that
  7. this also fully loads the Block Editor.
  8. This editor uses 19 lines. The top line is the status line and
  9. it's followed by 2 lines showing the contents of IBUF and
  10. FBUF (see B100). There are then 16 contents lines. The contents
  11. shown is that of the currently selected block.
  12. (cont.)