require ("edt");
require ("keydefs");
variable NUMLOCK_IS_GOLD = 1;
unsetkey ("^H");
setkey ("bol", "^H");
I invoke JED with:
"C:\Program Files\JED\bin\wjed.exe"
Should this put me in EDT mode?
Jed 0.99.18
--
C.W.Holeman II | cw...@Julian5Locals.com-5 http://JulianLocals.com/cwhii
To only a fraction of the human race does God give the privilege of
earning one's bread doing what one would have gladly pursued free, for
passion. I am very thankful. The Mythical Man-Month Epilogue/F.P.Brooks
Yes, assuming that the file actually gets loaded. I suspect that
$JED_ROOT/lib/jed.rc is what really gets loaded unless you have
taklen steps to force jed to look for files in the current directory
first.
If you want EDT emulation, then you should create a directory, e.g.,
C:\home
and place your jed.rc in that directory. Then in your autoexec.bat
file, define a JED_HOME environment variable that is set to this
value, i.e.,
set JED_HOME=C:\home
--John