How to configure SublimeREPL for mit scheme?

I installed SublimeREPL and now I'm trying to set up translators a bit. How to add MIT scheme in Tools-> SublimeREPL menu? I am new to Sublime Text 2.

+2
source share
3 answers

You can read the documentation on setting up additional REPLs here: http://sublimerepl.readthedocs.org/en/latest/#basics-of-language-integration-configuration-and-launch-commands

And look at the existing schema configuration here: https://github.com/wuub/SublimeREPL/tree/master/config/Scheme

Scheme/ Lisp , .

+1

, . .

SCM , , -.

, env ​​ .

"" → " " → SublimeREPL → config → Scheme → Main.sublime-menu.

, :

enter image description here

. !

+1

2 , , SublimeText 3.

"" .

"SublimeREPL" ( Sublime Text 2/3).

SCM @mons.

, .

SublimeText3 -> InstalledPackages -> Scheme.sublime-package (open using the Zip software) -> Scheme.sublime-build (change below)

{
    "cmd": ["scm", "-f", "$file"],
    "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
    "selector": "source.scheme"
}

I realized that my “scheme”, installed through the package installer, overrides my Sublime Build settings in the SublimeREPL folder. This is why this did not work, although I changed the settings as @mons . This is it. Hope this works. :)

0
source

Source: https://habr.com/ru/post/1529654/


All Articles