Sublime Text 2 with MIT Scheme

前端 未结 2 982
独厮守ぢ
独厮守ぢ 2021-02-03 15:41

Does anyone know how i could use sublime text 2 with scheme. I\'ve heard ST2 and I want to try it out? right now I\'m learning scheme. I have the scheme interpreter installed -

2条回答
  •  不要未来只要你来
    2021-02-03 16:05

    I wish my answer would help you~ My solution isn't to use Mit-Scheme but DrScheme,and the specific process is as following:

    1. Download PLT-Scheme and install it (http://download.plt-scheme.org/).
    2. Add its installation path to environment variables "Path".
    3. Install the package "SublimeREPL"
    4. Find the file "Sublime Text 2\Packages\SublimeREPL\config\Scheme\Main.sublime-menu",
      open with Sublime Text 2. Find the code:
    "cmd": {"linux": ["scheme"],
            "osx": ["scheme"],
            "windows": ["scheme"]},
    

    and change it :

    "cmd": {"linux": ["scheme"],
            "osx": ["scheme"],
            "windows": ["scheme"]},
    

    pic

    Save.

    1. Open Sublime Text 2,ctrl+shift+p,and enter scheme,press Enter

    Enjoy it!

提交回复
热议问题