Eval in REPL command does nothing for Scheme in SublimeREPL

I am trying to use SublimeREPL with Sublime Text 2 as a Scheme environment. I installed Gauche and can successfully launch the REPL window and run the code from it. However, I cannot figure out how to use the "Eval in REPL" or "Transfer to REPL" commands in the plugin.

When I execute a command (either using a shortcut or from a menu), I see in the console that the command is starting, but actually does nothing. This is regardless of whether I open the REPL window open. I suspect that he cannot determine which external identifier he should use, but is not sure how to fix it.

+6
source share
1 answer

This works for me on Linux using Sublime 2.0.2 and the following Sublime packages:

  • SublimeREPL 2.1.1
  • Gauche 2013.04.16.05.32.34
  • Scheme 2013.03.04.21.30.59

Please note that these are Sublime packages that are installed through the Control Package: you also need to install a real Gauche interpreter on the local system.

I had to restart several times. Save the Gauche code as a .scm file and switch the buffer to Gauche mode. Use Tools> SublimeREPL> Scheme> Gauche to run REPL, and you should be able to freely parse and transfer expressions from the buffer in Gauche mode to REPL.

+1
source

All Articles