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
40
votes
4 answers

How to Run Python Code on SublimeREPL

I really like using sublime text 2 to write Python codes, however any time I try to run a script which has an input, the sublime text console reports an error. So, I decided to try SublimeREPL, however I've been searching for hours and I didn't find…
wombatp
  • 813
  • 4
  • 10
  • 14
34
votes
3 answers

Run Python Debugger (pdb) in Sublime Text 3

How can you set python debugger (pdb) breakpoints in Sublime Text 3? Both SublimeREPL or Python Breakpoints fail with default python build system: print "hello" # code runs fine without this breakpoint import pdb; pdb.set_trace() print…
ecoe
  • 4,994
  • 7
  • 54
  • 72
21
votes
6 answers

How to create a keyboard shortcut for SublimeREPL

I am new to Sublime Text 2 on Mac OS. I installed the package SublimeREPL. Is it possible to create a keyboard shortcut to run the file with SublimeREPL? More precisely, here is a screenshot. I want to avoid going through this menu and run quickly…
Colas
  • 3,473
  • 4
  • 29
  • 68
15
votes
3 answers

Re-use tab when running python code with SublimeREPL

In this question How to Run Python Code on SublimeREPL, an answer is given on how to use the usual Ctrl+b shortcut to run a python code using SublimeREPL within SublimeText. The steps are simple: 1- Create a new empty file and paste into it the…
Gabriel
  • 40,504
  • 73
  • 230
  • 404
14
votes
5 answers

Running Python interactively from within Sublime Text 2

I have looked at all the answers on this forum but I'm missing something. I want to be able to hit Cmd+B while editing a Python file "myfile.py" in Sublime Text 2. This should open up a Python shell that loads my file and returns me to the…
yegodz
  • 5,031
  • 2
  • 17
  • 18
13
votes
2 answers

Using virtualenv with Sublime Text 3 and SublimeREPL

I'm trying to setup ST3 to work with Python's virtualenv, running on Windows 8.1. I usually use SublimeREPL with my global Python install to run files. Now that I'm using venvs, though, I'm having trouble getting anything to run. Here's what I've…
Redd
  • 176
  • 1
  • 7
12
votes
2 answers

SublimeREPL Unable to Find R

Okay, this is driving my crazy. I had set this up before, deleted Sublime Text, and now I can't remember what the right configuration was. Very simple: I'm running R through SublimeREPL and need to point the REPL to where R is installed. I…
Marc Tulla
  • 1,751
  • 2
  • 20
  • 34
11
votes
2 answers

Is it possible to disable syntax highlighting in Sublime REPL-tabs?

Is there any way to disable the syntax highlighting in SublimeREPL-tabs when a script is running? Please see this question for context: Red lines coming up after strings in SublimeREPL (python)? For example, when python-scripts run in Sublime REPL,…
Samuel Plumppu
  • 325
  • 2
  • 13
10
votes
1 answer

Scala REPL "paste" mode doesn't exit on ctrl-D in Sublime Text 2

Has anyone seen this problem? Start the scala REPL and scala> :paste // Entering paste mode (ctrl-D to finish) val x = 5 ctrl-D does not cause REPL to finish paste mode.
shaz
  • 2,317
  • 4
  • 27
  • 37
8
votes
1 answer

how to clear SublimeREPL window in Sublime 2

I'm using SublimeREPL in Sublime 2 (v2.0.2) under OS X. I send Python files to the SublimeREPL window for evaluation, and I'd like to clear the SublimeREPL window from time to time. The window seems to be read-only, so cmd-a, delete doesn't work.
nonagon
  • 3,271
  • 1
  • 29
  • 42
8
votes
1 answer

Is it normal to have really slow text transfer in Sublime Text 2 with the Clojure REPL?

Text transfer is really slow for me in Sublime Text 2, especially multiline text (each line takes about 2 seconds to print in the repl before evaluating the whole expression...) Is it normal? It would be better if I could remove line endings before…
szymanowski
  • 1,359
  • 1
  • 14
  • 25
7
votes
1 answer

Running Groovy in Sublime Text 3

I'm trying to run groovy in sublime text 3 for last three days and i'm unable to do it. I searched everywhere on net but no use. Even when i try to add Build system this is what i get: I'm stuck real bad and need help. Any help is appreciated,…
user7237624
7
votes
1 answer

IPython 4 shell does not work with Sublime REPL

I am having problems with running the IPython shell from the Sublime REPL package. Here is what I get: C:\Anaconda\lib\site-packages\IPython\config.py:13: ShimWarning: The`IPython.config` package has been deprecated. You should import from…
7
votes
0 answers

Sublime Text 3 Python REPL Slow print

I have pretty much the identical problem to this but with python. Printing large amounts of text will even crash my sublime text. Unfortunately the solution described is specific to Clojure. Any ideas? Clarification: I encounter the slow down if the…
Michal
  • 1,300
  • 2
  • 14
  • 22
7
votes
2 answers

Sublime Text, SublimeREPL, Clojure & Windows 8

I've got both Leiningen & Clojure working on Windows 8 separately from Sublime Text (e.g. I can get a repl working in Windows PowerShell). My problem is that I can't get the SublimeREPL working in SublimeText (the REPL loads up but doesn't then do…
duncsoz
  • 153
  • 1
  • 7
1
2 3
15 16