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
3
votes
0 answers

Correct display Cyrillic symbols in SublimeREPL PowerShell

Summary I can not to make correct display Cyrillic symbols in SublimeREPL PowerShell. Expected behavior In Windows PowerShell I have not this problem. Actual behavior Cyrillic symbols always not displayed for me. I see mojibake instead…
Саша Черных
  • 2,561
  • 4
  • 25
  • 71
3
votes
1 answer

Using different conda envs with Sublime REPL

I'm trying to set up Sublime Text 3 as a multilingual editor for doing data science. For this I use Sublime REPL for executing code in Sublime, and intend to use Anaconda's (continuum analytics) built in virtual environments to make a venv for each…
Czeslaw
  • 153
  • 1
  • 9
3
votes
2 answers

Key bindings for interrupt execution in Python Sublime REPL

I'm using REPL extension for Sublime text 3 for my python projects. Currently when I want to interrupt a running script I have to close to close the REPL window to stop execution and all computations are so far are lost. I was wondering if anybody…
Peanut
  • 803
  • 1
  • 11
  • 24
3
votes
1 answer

Initializing R-Box to send code to REPL

I'm attempting to set up SublimeText (Windows) to send R code to an open R REPL but failing. I know that R-Box is initialized somewhat properly because I can send code to the default R console. The question is: How do I set up the config file to…
ghonke
  • 321
  • 3
  • 15
3
votes
1 answer

WARNING: Readline services not available or not loaded.AttributeError: 'module' object has no attribute 'set_completer_delims'

REPL run ipython an error occurred. WARNING: Readline services not available or not loaded. Traceback (most recent call last): File "C:\Program Files\Sublime Text 3\Data\Packages/SublimeREPL/config/Python/ipy_repl.py", line 52, in
Fank Zhou
  • 171
  • 1
  • 12
3
votes
2 answers

REPL error with Sublime Text 3

I'm using REPL with sublime text 3 (latest version as of today) and I'm coding in python 3.4. As far as I understand the documentation on REPL if do: tools>sublimeREPL>python>python-RUN current file then I should run the code I have typed in using…
ICMonster
  • 31
  • 1
  • 1
  • 3
3
votes
1 answer

Julia REPL in sublime text

I'm trying to get a Julia REPL working in sublime text. However, I'm having some problems on the julia side while trying to do this. Basically, my embedded julia REPL works, but interactive elements (such as the prompt) are not shown. I'm not…
mathsaey
  • 78
  • 1
  • 9
3
votes
1 answer

Use SublimeREPL as Django shell

I am learning Django, and Django shell is a frequently used thing, but it is a bit frustrating to switch back and forth to the Terminal window. I try to use SublimeREPL-shell, but it does not work properly. For instance, I can use python manage.py…
Lelouch
  • 2,111
  • 2
  • 23
  • 33
3
votes
1 answer

Mac - Sublime Text and R

I am trying to write my first line in R using sublime text. First I installed the SublimeREPL and enhance R packages. I edited the user settings to: { "default_extend_env": {"PATH": "{PATH};~/Applications/R.app"}, "show_transferred_text":…
Spearfisher
  • 8,445
  • 19
  • 70
  • 124
3
votes
1 answer

Sublime2 and SublimeREPL

Using Windows 7, Python 3.2 and Sublime Text 2 I went through all of the instruction to install SublimeREPL and when I go to Tools -> SublimeREPL -> Python -> Python I get an error: "WindowsError(2, 'The system cannot find the file speificed.'). I…
CJ12
  • 487
  • 2
  • 10
  • 28
3
votes
0 answers

pandas module in sublime text 2 + sublimeREPL?

I hope this question is legit here, I've been researching but not much luck so I figured it's worth a shot to post. I've got Sublime Text 2 with sublimeREPL plugin installed. I'm able to run python 2.7.5 in the repl and it's pretty solid. My goal is…
Chrispy
  • 1,300
  • 3
  • 11
  • 25
3
votes
1 answer

SublimeREPL returning unhelpful error, functional in IDLE

I'm using Sublime Text 2, Package Control, and SublimeREPL to (try) to create and run python code. The code, a simple Brainfuck interpreter, is as follows. However this isn't the problem: import sys def brainfuck(arg_bf_string): bf_string =…
3
votes
2 answers

Multiline CoffeeScript REPL in Sublime Text 2

I want to be able to send entire files and selections to the SublimeREPL and eval them, but it doesn't work. CoffeeScript REPL will only read one line at a time. Coffee will only take single lines, until you use ctrl+v to switch CoffeeScript to…
SamMorrowDrums
  • 552
  • 5
  • 15
3
votes
1 answer

SublimeREPL and rails console

Is there any method to run rails console via SublimeREPL (or another plugin) in Sublime Text?
mr_ffloyd
  • 103
  • 1
  • 8
2
votes
1 answer

How can I disable syntax highlighting in SublimeREPL, without setting syntax to plain text?

When I run a program in SublimeREPL, I often get highlighted backslashes '' which show up in pink. I can work around it, but it's annoying and It would be great if I could disable it. I read on other posts that you can convert the syntax to plain…