collapseos/blk/120

17 lines
617 B
Plaintext
Raw Normal View History

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