Questions tagged [sublimerepl]

SublimeREPL is a plugin for Sublime Text that runs interactive interpreters from a number of languages within a normal tab. It also allows connecting to a remote interpreter (e.g. Clojure/Lein) though a telnet port. SublimeREPL has a built-in support for command history and transferring code from open buffers to the interpreters for evaluation.

SublimeREPL is a for that runs interactive interpreters (both local and remote) inside a regular Sublime tab or view. It has built-in support for over 30 languages, including basic operations ( and ).

NOTE: SublimeREPL is no longer under active development. It does work in , but some features such as IPython/Jupyter integration are no longer functional because of API changes. One alternative for SublimeREPL is the Terminus package.

Features


Useful Links

238 questions
0
votes
2 answers

Input missing, output on Input line in sublimerepl python

Basically, after getting Sublime text 2 and sumblimeREPL up and running, I am having issues when I send code. For instance, in the below screenshot, I enter the code on the left line by line (ctrl+,l), or by block/selection but nothing shows up…
user1423020
  • 275
  • 1
  • 4
  • 11
0
votes
1 answer

How to :use (or :require) a custom file in Clojure?

Super beginner question here. I'm following the (good) book Programming Clojure, and chapter 5 is about coding a small Snake game. Utility code is provided, and I decided to follow it by starting a new Leiningen project (lein new app snake). In my…
DjebbZ
  • 1,594
  • 1
  • 18
  • 34
0
votes
2 answers

Standard ML syntax error: illegal token on hello world program -- incorrect SML installation?

The SML file: "test.sml" (* here is a comment *) val x = 123; I've installed SMLNJ 110.76 from here: http://www.smlnj.org/dist/working/110.76/, Emacs 24.3.1 from here: http://ftp.gnu.org/gnu/emacs/windows/emacs-24.3-bin-i386.zip, and SML Mode for…
user941238
  • 640
  • 1
  • 8
  • 19
0
votes
0 answers

SublimeREPL starts lein with wrong Java

I have a leiningen project which works fine when run from the command line. I try to run it from Sublime Text 2 with SublimeREPL but leiningen gets started with java 1.6 instead of 1.7: (System/getProperty "java.version") "1.6.0_29" The same from…
Assen Kolov
  • 4,143
  • 2
  • 22
  • 32
0
votes
1 answer

SublimeREPL scala error... Same error, but existing solution does not fix the issue

While running SublimeREPL: SBT for opened folder, I have the exact same problem as in The similar question asked before (OSError(2, 'No such file or directory')). Unofrtunately, the solution provided there did not help much. Would anybody be kind…
helluin
  • 50
  • 5
0
votes
2 answers

python: IOError: [Errno 2] No such file or directory when use sublimeREPL

I have put the python file and 'g1.txt' in the same directory. The code runs correctly when I don't use SublimeREPL def build_graph(file_name): new_file = open(file_name, 'r') n, m = [int(x) for x in new_file.readline().split()] graph =…
Xianxu Hou
  • 47
  • 2
  • 6
0
votes
1 answer

Wrong start Prolog in SublimeREPL

I want to use Prolog in SublimeREPL. I set up correctly the interpreter (swipl or gprolog) in the config file of SublimeREPL and everything works fine except for one thing: the start character "?-" of the line never show up, an if a get a result…
-1
votes
1 answer

How do I use Virtual Environments with SublimeREPL?

I am a beginner to coding in general and I just found out that we could create virtual environments and was soon disappointed to see that there was no tutorial or answer anywhere for a Windows user and the only one I found was THIS. Which kinda…
-1
votes
1 answer

Sublime REPL terminal issue

Recently I started using sublime 3 text editor and the issue I encountered is the REPl terminal, I mean why is there syntax highlighting and autocompletion in a terminal during execution, it makes the terminal annoying, is there any fix?
Oreo
  • 104
  • 5
-1
votes
1 answer

How to use sublimeREPL to get C++ user input in Sublime Text 3 on Ubuntu 14.04

I installed Sublime Text 3 and sublimeREPL but I don't understand how to get C++ user input from programs. It's been three days and I have not found the solution.
-1
votes
1 answer

Error OS2 no such file or directory

I am trying to launch R from sublimetext2 via sublimeREPL. Until I installed the new OS everything worked, now not anymore since the directory is not found apparently. I tried all variations but I cannot make it work. Here are my SublimeREPL User…
user43458
  • 15
  • 5
-2
votes
2 answers

Why math.sqrt in python doesn't work in my sublimeREPL?

I have written this code in sublime text if intentos<3: solution= math.sqrt(number) print("La raiz cuadrada de " + str(number) + "es" + str(solution)) Then I have used sublimeREPL and I don't know why but It has appear this: Traceback (most…
-2
votes
2 answers

Using SublimeText with Python 3.4

I'm using a Mac (OS X 10.10.2), would like to use SublimeText rather than IDLE. My issue is that I want to use Python 3.4 and SublimeText uses the 2.x Python that comes on my Mac. I've Googled all over and tried and tried to follow guides even on…
1 2 3
15
16