collapseos/blk/120

17 lines
617 B
Plaintext
Raw Normal View History

2020-06-04 10:39:59 -04: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-09 22:55:42 -04:00
and LINES words to be implemented. If you don't have those,
use the Block Editor.
2020-06-04 10:39:59 -04:00
It is loaded with "125 LOAD" and invoked with "VE". Note that
2020-06-09 22:55:42 -04:00
this also fully loads the Block Editor.
2020-06-04 10:39:59 -04:00
2020-06-09 22:55:42 -04: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-04 10:39:59 -04:00
(cont.)