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

sublime crashed with SublimeREPL command when output large data.

I write python code with Sublime Text 3, and I install the SublimeREPL for its convenience to run PDB and console in sublime. But recently I found a problem, when run the following code: for i in xrange(100000): print i when run the above…
Ryan
  • 345
  • 3
  • 11
4
votes
1 answer

How to send cursor to the next line with Sublime keymap

I am using the keymap to execute the current line in sublime repl by hitting ctrl+enter. The cursor remains on the same line. What do I need to add to the keymap so the cursor would jump to the next line (as what happens in RStudio)? [ { "keys":…
dom
  • 321
  • 2
  • 8
4
votes
2 answers

Annoying sublime text autocompletion for Python after period (`self` keyword)

I'm using sublime text 3 for python development. I have autocompletion turned on as I type, which works. I expect, that when I type an object name followed by a period, a list of object's methods/attributes would popup. It does not happen, so I…
R Kiselev
  • 1,124
  • 1
  • 9
  • 18
4
votes
1 answer

MIT-Scheme for SublimeREPL windows

Getting the error WindowsError(2, 'The system cannot find the file specified.') I've tried tinkering with the Main.sublime-menu, but kinda uncertain what path I should be putting so i used variations of C:\Program Files (x86)\MIT-GNU…
4
votes
1 answer

how to use pydev in sublime using sublimeREPL

I was wondering if it is possible to use PyDev in Sublime. Because it has all this great debugging features that are missing in Sublime. I know that it hasn't been implemented but I think with a few tricks we can use PyDev in Sublime. There is also…
183.amir
  • 422
  • 3
  • 25
4
votes
1 answer

SublimeREPL: Python - RUN Current File

With python script currently opened in SublimeText I'm choosing: Tools > SublimeREPL > Python > RUN Current File Sublime executes the script in a new interactive REPL[python] window (this window is still inside of Sublime). After the python script…
alphanumeric
  • 17,967
  • 64
  • 244
  • 392
4
votes
1 answer

REPL hangs on SublimeREPL for Clojure (Windows PC)

I'm trying to use SublimeREPL with Sublime Text 2 so that I can programme with Clojure. I have installed SublimeREPL using the package manager. I go to Tools > SublimeREPL > Clojure and start a repl this seems to start fine, but whatever I type…
Colin Bacon
  • 15,436
  • 7
  • 52
  • 72
4
votes
2 answers

Setting python path for sublimerepl from sublime text?

I use python portable along with sublime portable of a memory stick and decided to install sublime REPL however when trying to use python portable as the build path for sublimerepl it does not specify it. To put it simply I can't specify the…
Andrew Leedham
  • 700
  • 7
  • 16
4
votes
3 answers

SublimeREPL to python

How i can tune sublimeREPL to python in Sublime Text 2? My use (Python 3.3 on windows 7): "default_extend_env": {"PYTHONPATH": "C://Python33"}, It not work, because in build (Tools -> SublimeREPL -> Python -> Python (or Python RUN current file))…
rimlin
  • 397
  • 4
  • 13
4
votes
1 answer

SublimeREPL scala error

I installed SublimeREPL, but every time I try to launch the REPL, I get a dialog showing the error "OSError(2, 'No such file or directory')". I have Scala 2.10 installed using MacPorts. I am running OS X Lion (10.8.3). Is there some special…
Ralph
  • 31,584
  • 38
  • 145
  • 282
4
votes
1 answer

key map sublimeREPL commands in Sublime Text 2

I'm trying to map keyboard shortcuts for SublimeREPL plugin commands. Looking at SublimeREPL it looks like a menu item command is defined as: Default.sublime-commands { "caption": "SublimeREPL: SBT for opened folder", "command":…
Dougnukem
  • 14,709
  • 24
  • 89
  • 130
4
votes
2 answers

Send Text to REPL Using SublimeREPL and Sublime Text 2

I'm having trouble getting started with SublimeREPL. I have a python program, and can start a python interpreter inside of SublimeText2. However, I would like to use either the Eval In Repl and Transfer to Repl features, but they don't seem to do…
Kyle Brandt
  • 26,938
  • 37
  • 124
  • 165
3
votes
2 answers

SublimeREPL: How can I automatically close (or restart) the previous console when rebuilding?

I recently switched to using Sublime Text as my Python IDE, and have since installed REPL. In order to re-use the same tab when running my code, I made a few edits repl_python_run command in my SublimeREPL\config\Python\Main.sublime-menu directory.…
acquisto2
  • 31
  • 3
3
votes
2 answers

Sublime Text 3, REPL. How to build script in single tab or same REPL window?

I'll get to the point. I've installed SublimeText 3 and i also installed SublimeREPL through Package Control, and I've basically set it up as I need it. The main thing that is annoying me, is that each time I build a python script (CTRL+B), another…
3
votes
1 answer

How do I make sublimerepl close the instance of Python it created when I close the sublimerepl tab?

I'm running Python 3.6 and Sublime Text 3. I tend to use Sublimerepl to quickly run my code and verify that everything works whenever I make a few changes and close the tab right afterwords. This does mean that when I exit Sublime, I also need to go…
1 2
3
15 16