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
1
vote
1 answer

How to extend Windows PATH env variable in Sublime Text?

How do I permanently extend my PATH variable from sublime text 3? Specifically I am doing this for my scala REPL for the SublimeREPL package "default_extend_env": {'{PATH};H:\\scala-2.10.2\\bin'}, I get "error trying to parse strings" error, and…
A T
  • 13,008
  • 21
  • 97
  • 158
1
vote
0 answers

Have IPython echo variable without print() call using SublimeREPL

In IPython, typing a variable name at the command line will automatically print the contents of the variable. In [75]: x = 1 In [76]: x Out[76]: 1 However, when passing code from a file into IPython via the SublimeREPL plugin in Sublime Text, I…
Abiel
  • 5,251
  • 9
  • 54
  • 74
1
vote
1 answer

Sublime-text2: emulating IDLE

There is nothing wrong with IDLE but it lacks a lot in terms of functionality and ease of use. I want to make Sublime-text2 behave the way IDLE does. Have a window on the right with my code and an interactive python console on the left. I was able…
minerals
  • 1,195
  • 4
  • 15
  • 22
1
vote
1 answer

Sublime Text 2 python SublimeREPL

I am trying to add the packages install in sublime text. I have tried the following below: To install it you need package control this lets you easily install plugins. To get it go here …
Trying_hard
  • 8,931
  • 29
  • 62
  • 85
1
vote
1 answer

R not working with Sublime Text2

I am trying to get R 2.15.3 to work with Sublime Text 2. I followed the steps in http://tomschenkjr.net/using-sublime-text-2-for-r/ . When I try Tools -> SublimeREPL -> R, I get a error message WindowsError(2,'The system cannot find the file…
siva82kb
  • 1,910
  • 4
  • 19
  • 28
1
vote
2 answers

SublimeREPL and zsh (oh-my-zsh)

Is there any method to run zsh shell (with oh-my-zsh additions) via SublimeREPL in Sublime Text?
mr_ffloyd
  • 103
  • 1
  • 8
1
vote
1 answer

Common Lisp SublimeREPL

I have SublimeText2 installed in OSX with SublimeREPL and it works like a charm for Ruby and Python. However, most recently I've been wanting to pick up Common Lisp and the "clisp REPL" gives me the following error: OSError(2, 'No such file or…
Alex
  • 367
  • 2
  • 4
  • 14
0
votes
1 answer

Exit Debugger in SublimeREPL with sbcl

How do I exit the debugger in a SublimeREPL repl? I'm not very good at guessing keystrokes, and I didn't see anything in the documentation. As an example invoked by sending the current file to the repl: debugger invoked on a…
hsmyers
  • 665
  • 7
  • 10
0
votes
0 answers

Set Sublime Text project file to open split screen with specific project file on one side and REPL on other side?

I work on R and Python projects in Sublime Text. I have a .sublime-project file for each project, which I currently use only to specify the folders that I want in the project. For example, myproject.sublime-project might contain the following: { …
RMM
  • 33
  • 5
0
votes
1 answer
0
votes
0 answers

Troubles to Install REPL in Sublime 3 and 4

As you can see on the screen I am having trouble installing the REPL. I have checked lot of questions but I could not find the same situation. My problem is at the first moment because I cannot even install it. I´d tried to uninstall and install it…
0
votes
1 answer

SublimeRepl not syncing with code (runs old code)

I have set keybinding Ctrl+Alt+B to run code in sublimeREPL. But, recently when I run a code it wont show the last change I have made to my code. I have to first Ctrl+B and then do Ctrl+Alt+B to run properly Code: print("Hello") print("added this…
0
votes
0 answers

Why does sublime-REPL not execute?

I'm trying to run the code: n, k = input().split() dk = 0 for i in int(n): j = int(input()) if j % int(k) == 0: dk += 1 print(dk) But sublime REPL is giving this output: tab 1 of window id 684 [Finished in 192ms] I'm using the…
Draculin
  • 25
  • 1
  • 7
0
votes
1 answer

SublimeREPL prompt garbled

I'm using SublimeREPL in MacOS Big Sur, and I'm trying to launch the REPL for Python with virtualenv, but what I see at the prompt is something like this: Warning: Output is not a terminal (fd=1). Warning: Input is not a terminal (fd=0). Jupyter…
jas0n
  • 21
  • 1
  • 3
0
votes
1 answer

Starting SublimeREPL with hotkey

How to add a hotkey for starting SublimeREPL for Python from SublimeREPL Package. You can start it from Command Palette by typing it, but I would like to assign it to key, lets say to f2. This is what I have so far: { "keys": ["f2"], "command":…
IGRACH
  • 3,506
  • 6
  • 33
  • 48