Friday, October 14, 2011

Four Easy Steps - The Editor

Mastering the arrayForth/colorForth Editor (free download here) enough to get started is easy. There are only four critical concepts that you need to master. Before we start save a copy of “OkadWork.cf“ in a backup folder. All you need to do to get back where you were before is to restore the original to the working directory. So hack away.

So lets get started. Bring up colorFORTH and “200 edit <cr>”. For those of you not familiar with old electromechanical TTY nomenclature <cr> = <Enter <--- > - actually there is <lf> too but we won't go into that. You are now in the editor.

The first thing you will want to do is move the cursor around. For that use the “J” “K” “L” and “;” keys. Practice. If you get too far lost hit the <space bar (is that like the canteen in Mos Isley?)> and you are out of the editor and the clutches of the Tanaka Sisters (dang).

To get back in clean you can type “bye” which exits the program and then restart it. You will need to do “200 edit” again to get back to the editor. There are probably better ways to do this. But this something simple and easy to understand. Easy does it to start. If you want to continue where you left off type "e" <cr>.

OK. You can move the cursor. Which is looks a little like a PacMan muncher and works similarly (how retro). You can now use the “N” key to munch a word at a time. OK. You have now cleared out stuff you want to change.

Now you want to add a word or fifty to your code. Pick a color (see chart below) and type in the word you want to add. <cr> and the word is added. You can now add another word. <backspace> will erase a word if you typed it incorrectly. When you are done typying words of that color hit <Mos Eisely> (more commonly referred to as <spacebar>) and you are back in the editor. You can now erase any wrongly entered words or if you need to change a word's color by using the cursor and “A” key.

One last thing – when entering numbers you can use the “F1” key to toggle between decimal and hexidecimal entry modes.

And that is enough to begin using the editor. There are other things you can do with the control keys but it will be easy enough to master them once you have the above basics down. Don't forget to "save" when you are all done and out of the editor.

Color Words:

White - “R” - comment
Yellow - “U” - interpreted words
Red - “I” - define Forth word
Green - “O” - compiled words and numbers
Blue - “X” - display macro (mostly text formatting for now)
Magenta - “,” - variable
Grey - “Z” - compiler feedback
Cyan - “.” - compiled macro call

Of those colors only the first four are necessary to get you started. Number five (Blue) is nice for those of you who like pretty text.

No comments:

Post a Comment