Mirror of CollapseOS
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

17 wiersze
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.)