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
2
votes
1 answer

Sublime Build with SublimeREPL and Python 3

I am attempting to run Python 3 code in Sublime Text 3 while also automatically opening a Python console which is interactive and reusable (using the Sublime package SublimeREPL). I have used the solutions provided here: Set up Python 3 build system…
2
votes
1 answer

How to get rid of Sublime Text's mistaken error highlighting when using SublimeREPL?

When using the ' character as an apostrophe, building python code using SublimeREPL causes sublime text to mistake that apostrophe for a single quote and create annoying red highlights. For example, this code: hnumber = int(input("How many…
Alec
  • 8,529
  • 8
  • 37
  • 63
2
votes
0 answers

Why does my tqdm progress bar does not update itself in SublimeREPL console?

The python tqdm progress bar is not properly working with the SublimeREPL console ). Question: Any idea how to fix this ?
Ronan
  • 165
  • 9
2
votes
0 answers

SML: Sublime interpreter working incorrectly?

I am working on SML/NY project and I have a datatype expression: datatype expression = Constant of int | Variable of string | Operator of string * expression | Pair of expression list | List of expression list I…
2
votes
1 answer

Left arrow and home key stop working in sublime python repl after making repl a separate window

Mac OSX 10.11, Sublime 3, REPL 1.0.30 When I open a python REPL (tools > SublimeREPL > Python > Python), it always opens as a new/current tab in the current sublime window. While the REPL is tabbed, both the left arrow and home key function as they…
Alnitak
  • 2,068
  • 2
  • 12
  • 24
2
votes
3 answers

How do I get IPython 5 to work with SublimeREPL?

I followed (actually, I authored) the instructions in this gist in order to modify the ipy_repl.py file that ships with SublimeREPL in order to get it working with more recent versions of IPython at the time. However, I recently pip upgraded my…
MattDMo
  • 100,794
  • 21
  • 241
  • 231
2
votes
1 answer

Prevent 'lein repl' in SublimeREPL from echoing the previous command

I'm running Sublime Text 3 Build 3117 on both OS X 10.10.5 and Ubuntu 16.04. I just installed Leiningen 2.6.1 on both, and I'm starting to play around in SublimeREPL. I'm following the lein tutorial. Here is my project.clj, in case it…
MattDMo
  • 100,794
  • 21
  • 241
  • 231
2
votes
2 answers

Sublime Text 3 : Run an R file

I would like to run R files in Sublime Text 3 using SublimeREPL. In Preferences -> Browse packages... in the file SublimeREPL\config\R\Main.sublime-menu, I added the R path ("id" -> "repl_r" -> "cmd" -> "windows") [ { "id": "tools", …
2
votes
1 answer

Change SublimeREPL shell colour

I use SublimeText3 and try to change the colour for SublimeREPL Shell because its all white. Is that possible? Or is it possible to use colours from system prompt like PS1='' ?. I am running on ubuntu. I haven't found a soloution.
mthecreator
  • 764
  • 1
  • 8
  • 19
2
votes
3 answers

SublimeREPL and IPython

I fail when I tried to use IPython with SublimeREPL. My setup is: - Windows 8.1 - Sublime Text 3 - C:\Python34 - C:\Python27 - C:\Anaconda3\Scripts -> Here it's where Ipython is My PYTHONPATH and PATH are correct and I wrote in SublimeREPL settings…
Alceal
  • 51
  • 1
  • 5
2
votes
1 answer

Keybinding for SublimeREPL to launch a Python virtualenv

I am using Sublime Text 2 on a Mac. I have the SublimeREPL enabled and I am am trying to create a keybinding that that launches a REPL window for a virtual environment located in my virtualenvwrapper folder, ~/Documents/PythonEnvs/ I've tried…
Evan Volgas
  • 2,900
  • 3
  • 19
  • 30
2
votes
0 answers

Unable to pass user input with Python 2.7 and Sublime 3 in SublimeREPL

I have an issue with SublimeREPL when trying to pass arguments into my python program. I am using python 2.7 with Sublime 3 on Ubuntu 14.04 OS. When I provide SublimeREPL with input and hit enter, nothing happens. It seems to lock up and stop…
Chris
  • 29
  • 5
2
votes
1 answer

How to send code to SublimeREPL in Sublime Text 3?

I am using LaTeXing, SublimeREPL, and R-Box to work with .Rnw files so I can have LaTeX with R code chunks. However, when I try to go to "Tools->SublimeREPL->Eval in REPL->Line" I get the following error. Cannot find REPL for…
user2205916
  • 3,196
  • 11
  • 54
  • 82
2
votes
1 answer

unable to send R code from a knitr document to SublimeREPL

I'm using Sublime 3, and I have a very simple question. SublimeREPL is working perfectly with R files, and Sublime compiles perfectly the knitr files (using LaTeXing) But if I want to send R code from a knitr file (.Rnw) I get the following…
Bruno
  • 115
  • 1
  • 9
2
votes
1 answer

Red lines coming up after strings in SublimeREPL (python)?

In writing a simple python application, I'm printing out some strings to the console in SublimeREPL (for python), using Python 2.7.8 and Sublime 3, 64 bit for Windows 8.1. However, I'm getting some very annoying red lines after each of the strings…
Vasu
  • 1,090
  • 3
  • 18
  • 35