FTE is a very nice
OS/2 text mode editor, by Marko Macek.
In the time
i've used it for various
tasks I've acquired a few tips that may be useful
for others. Anyone who has any other practical tips for the everyday use of
FTE and would like to share them... here's the
mailbox. I'm making this
unofficial page
without the knowledge of the author of FTE, so if I present bad (or even
just stupid!) tips here, don't hold him responsible. All information on
this page relates to FTE version 0.37b.
Block Menu
both the "Select Word" and "Write..." functions
were accidentally assigned a hot key of "W". This is easy to
fix by editing the menu.fte file. In it you will find a line
which looks like this:
item 'Select &Word ' { BlockSelectWord }
Which I suggest you should change to this:
item 'Select Wor&d ' { BlockSelectWord }
The above change will move, as you have observed, the hot key for the
"Select Word" from the "W" to the
"d".
color.fte file, and make sure all of the background
colours are numbers between 0 and 7. For example,
the main culprit is often selected text which normally, for text files, is
set in a section of the color.fte file which looks like this:
object PLAIN {
color {
{ 'Background', '07' },
{ 'Normal', '-7' },
{ 'Selected', '80' },
Notice the last line in the above example. Selected text is set to have a
dark gray background, the number "8". You could change that
value to:
{ 'Selected', '10' },
The "8" is now a "1", which is the colour dark
blue. It will not flash as a background colour, ever. But wait, there is
another big offender, while you are at it, if this is something you have
chosen to do, and it is here (in the same file):
object Entry {
color {
{ 'Field', '9B' },
{ 'Prompt', '9F' },
Those nines! Those represent the light blue background you usually see in
data entry boxes (such as Open File). The flash on a dark blue background
at times, most disturbingly. You can, if you so desire, change them to
permanently have a dark blue background (since they so often do anyhow!)
which will never flash, like this:
{ 'Field', '1B' },
{ 'Prompt', '1F' },
Lots of work, but you may find it worth it if you don't like solution
number 1 above, or number 3 to follow:keys.fte file. You will find two lines which look like this:
key [S+G-Left] { BlockExtendBegin; MoveLeft; BlockExtendEnd }
key [S+G-Right] { BlockExtendBegin; MoveRight; BlockExtendEnd }
Just change them to this:
key [S+G-Left] { BlockExtendBegin; MovePrev; BlockExtendEnd }
key [S+G-Right] { BlockExtendBegin; MoveNext; BlockExtendEnd }
That's all there is to it! Just what you suspected all along, right?! If
you don't want to edit files you can also just try using
CTRL-SHIFT-Left/Right.