To change this directory, you need to manually edit (sorry!) the shortcuts from Start Menu/Programs/MIT Scheme, and to change the Start in field from the link properties, to your working/home directory.
set MITSCHEME_FONT=Courier New 11 regular set MITSCHEME_FONT=Courier New 11 bold set MITSCHEME_FONT=Terminal 11 boldEither one of the lines above should work. You may want to specify different font sizes (10, 12) if 11 is not good for you.
If you want to change the background/foreground to look white-on-black as in the console window, you can do it with the following commands:
set MITSCHEME_BACKGROUND=0x000000 set MITSCHEME_FOREGROUND=0xffffff
Assuming that Scheme is installed in C:\MIT\Scheme\,
and assuming that you have the directory C:\MIT\Scheme\bin
is in your PATH (set from autoexec.bat),
to start it properly from the command prompt, you need to type:
scheme -library C:\MIT\SCHEME\LIB
The sample batch file scheme.bat below should solve
this problem. You need to remove C:\MIT\Scheme from the
PATH
(or not to add it at all), and to put this file instead in a directory
:
@echo off set MITSCHEME_FONT=Courier New 11 bold rem remove the following two lines if you like the default colors set MITSCHEME_BACKGROUND=0x000000 set MITSCHEME_FOREGROUND=0xffffff rem replace C:\MIT\Scheme\ with your Scheme installation directory C:\MIT\Scheme\bin\scheme.exe -library g:\SCHEME\LIB %1 %2 %3 %4 %5 %6 %7 %8 %9 |
To start the environment, simply type scheme; to start
the compiler, type scheme -compiler etc.
Read the documentation for other options.