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

Remove carriage return from output in Sublime Text 3

I'm learning ipython for data analysis and I'd like to use Sublime text, my favorite text editor. However, I'm having a problem with "CR", carriage return, being output instead of the original "stuff" I want to display. This makes copying/pasting to…
6
votes
2 answers

Turn off autocomplete in Sublime REPL in Sublime Text 2

When I type in the Sublime Repl console (Python) and hit return to run the command I am getting super annoying autocomplete taking over and changing the command. How do I turn this off in the SublimeRepl console? Thanks
Dirk Calloway
  • 2,569
  • 4
  • 23
  • 34
6
votes
2 answers

How to configure SublimeRepl to work with chicken scheme?

Is there anyone who is able to configure Sublime Text 2 and SublimeRepl to work with chicken scheme? I've got chicken repl in Sublime, but it displays error messages from the chicken scheme only (probably from the stderr output of the csi process),…
6
votes
1 answer

"Eval in REPL" command not doing anything for Scheme in SublimeREPL

I'm attempting to use SublimeREPL with Sublime Text 2 as a Scheme environment. I have Gauche installed and can successfully launch a REPL window and run code from it. However, I can't figure out how to use the "Eval in REPL" or "Transfer to REPL"…
JHunz
  • 323
  • 1
  • 7
6
votes
2 answers

How to run a file in SublimeREPL?

To run a file via the SublimeREPL plugin, I select 'Tools' -> 'SublimeREPL' -> 'Eval In REPL' -> 'File' When I select 'File' nothing happens. How do I configure Sublime Text 2 to use a specified REPL ?
blue-sky
  • 51,962
  • 152
  • 427
  • 752
6
votes
3 answers

Pry in SublimeREPL

Has anyone had any luck using swapping irb out for pry in SublimeREPL? I'm close, I think. I don't get an error however I don't get a response when I enter a command either. It behaves like the buffer is being reset each time I hit return. I'm…
LeakyBucket
  • 160
  • 1
  • 11
5
votes
0 answers

Configuring sublimeREPL to build to new window or same tab

I am just now getting started with Sublime Text 3 and SublimeREPL for Python usage and I am beginning to enjoy it. I am trying to configure my space to be as efficient for me as possible. So far I have configured my SublimeREPL to reuse the tab when…
user7180132
  • 321
  • 2
  • 4
  • 15
5
votes
1 answer

Change Python version for evaluating file with SublimREPL plugin

I am using Sublim Text 3 on Mac OS X El Capitan. What I need to do is to evaluate a Python file within Sublime Text 3. I have installed Package Control and then SublimREPL plugins. I have set up a 2 rows layout (View > Layout > Rows: 2) in order to…
wiltomap
  • 3,933
  • 8
  • 37
  • 54
5
votes
1 answer

How to run R Code in R Markdown file in SublimeREPL?

I would like to test code parts in my R Markdown code without leaving Sublime Text. For instance: Multiplying the grades with two solves the unreliability problem: ```{r} chisq.test(2*grades) ``` In the above example, I would like to select the…
Clokman
  • 303
  • 2
  • 11
5
votes
1 answer

How to stop input in SublimeREPL

I run the following code in SublimeREPL: while(True): a = raw_input() print a How do I stop input when this is running? Ctrl+C, Ctlr+D, or Ctrl+Z don't seem to work like they do in a terminal.
qmakar
  • 51
  • 3
5
votes
1 answer

Set working directory to location of active script in SublimeREPL

I use Sublime Text 3 with SublimeREPL for my commands in both R and Python. Whenever SublimeREPL is booted up, it has the present working directory set to the Sublime Text installation directory. This occurs on both Windows and Mac OSX. Often, I…
CaptainProg
  • 5,610
  • 23
  • 71
  • 116
5
votes
4 answers

How to run Python 3 in Sublime 2 REPL Mac

My question is the following, I have sublime 2 and sublime repl plugin installed all working fine, the only thing i need is to change the version of python that is running on the sublimerepl built in console. What I mean is, I have python 2.7.5…
jbernardo
  • 155
  • 1
  • 3
  • 9
5
votes
0 answers

Import python module into SublimeREPL

When I try to rub a script in SublimeREPL for Python, it says: ImportError: No module named 'matutil' What setting can I change so the Python REPL is looking in the right directory?
Castielle
  • 435
  • 1
  • 5
  • 16
5
votes
6 answers

Sublime Text: Permission denied when running Sublime REPL by non-root user under Ubuntu

When trying to run Sublime REPL, I get a message box with permission denied error: IOError(13, 'Permission denied') unless I launch Sublime Text with root privileges (sudo sublime). It holds for any REPL language. I'm using Ubuntu 12.10, and Sublime…
Bogdan Kulynych
  • 683
  • 1
  • 6
  • 17
4
votes
1 answer

How can I use venv with SublimeREPL in Sublime Text 3?

For starters, here is my dev environment: Windows 7 (although I have the same issue on another machine that is Windows 10) Python 3.6 Git Bash Sublime Text 3 (version 3.1.1, Build 3176) SublimeREPL In Git Bash, I created a new virtual…
meicholtz
  • 76
  • 1
  • 6
1
2
3
15 16