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

cant use sublimerepl to debug ruby code

When I run sublimeREPL with Ruby I got a message like this. It works fine Ruby(IRB deprecated) /Users/paul/Library/Application Support/Sublime Text 2/Packages/SublimeREPL/config/Ruby/pry_repl.rb:37:in `': uninitialized constant Pry::InputCompleter…
ypan
  • 163
  • 10
2
votes
0 answers

SublimeREPL: mesg: ttyname: Inappropriate ioctl for device

When I try source ~/.profile in SublimeREPL for the bash shell I get the error above. Any ideas how to resolve this? So this is the contents of my .profile. I start a bash instance inside bash I can source things normally. ## #…
Jonathan
  • 8,453
  • 9
  • 51
  • 74
2
votes
1 answer

Display output from evaluating selection - Sublime Text Python REPL

I am using Sublime Text 3 and running OSX Mavericks. I am using the Sublime REPL package and I have adjusted the settings for that package such that I have "show_transferred_text" : true When a Python REPL window is opened, I have the nice option…
Michael Ohlrogge
  • 10,559
  • 5
  • 48
  • 76
2
votes
2 answers

Sublime text 3 REPL MacOS

When i choose in REPL, EVAL or TRANSFER i have the following error running a py: Cannot find REPL for 'python' I use python 3, and reading other post i make this changes to use in sublime text 3 1.Create a file name: Python3.sublime.build with the…
Marco Herrarte
  • 1,540
  • 5
  • 21
  • 42
2
votes
1 answer

Import 3rd party module in SublimeREPL

So I am learning to use SublimeREPL, and I encounter a problem. I have a main.py file, and in the same folder a timer.py. I write import statement in the main.py: import timer Then if I open 1) SublimeREPL --> Python --> Python--IPython, and…
Lelouch
  • 2,111
  • 2
  • 23
  • 33
2
votes
1 answer

How do I execute this SublimeREPL shortcut

How do I execute this shortcut? What key combination is that? I don't get what ",," means.
lessthanl0l
  • 1,035
  • 2
  • 12
  • 21
2
votes
0 answers

Sublime Text 2 and Repl - Run python

I am start using Sublime Text 2 and REPL and got some problems. When I run the file it tells me that the file du not exist. The script works perfect if it is build directly from the terminal. Code def stopwords(text): with open('danish', 'rU')…
boje
  • 869
  • 1
  • 16
  • 34
2
votes
2 answers

Sublime Text 3 its not using default python

I recently installed sublime text 3 in my pc (Ubuntu 13.10). And i also installed Canopy Enthought and set canopy as default python. But Sublime text instead of using the new default python and ipython, its using the "old" version. In windows i used…
CCP
  • 153
  • 9
2
votes
1 answer

Want to Eval sublimerepl in different group, but to append to existing opened tab

I managed to edit my sublimerepl user config (from a previous post) by appending the following: { "keys": ["f8"], "command": "repl_open", "caption": "Python", "mnemonic": "p", "args": { …
MeganOh
  • 21
  • 1
2
votes
1 answer

Language-specific package settings in Sublime Text

How can I make a package-specific setting differ by language? It's easy to make general Sublime Text settings differ by language (e.g., I can use Python.sublime-settings to set the number of spaces to indent specific to Python). But I can't figure…
cauchy
  • 198
  • 8
2
votes
0 answers

Can't submit code from Sublime Text 3 to Python3 using SublimeREPL

When I try to submit code from Sublime Text 3 to a python3 interpreter (I'm using 3.2.3) using SublimeREPL, I get the following error: >>> x = -9 Traceback (most recent call last): File "", line 1, in TypeError: 'str' does not…
cauchy
  • 198
  • 8
2
votes
0 answers

Sublime 2 - Python - Passing command line args

Is there any way to pass command line arguments to a python script invoked with Ctrl+, f through SublimeREPL? i.e. pass args to something like: def main(): if len(sys.argv) != 3: print 'usage: ./wordcount.py {--count | --topcount} file' …
t-student
  • 414
  • 2
  • 16
2
votes
3 answers

How to configure SublimeREPL for mit-scheme?

I have installed SublimeREPL, and now I am trying to customize the interpreters a bit. How can I add MIT Scheme to the Tools->SublimeREPL menu? I am new to Sublime Text 2.
Broseph
  • 1,655
  • 1
  • 18
  • 38
2
votes
3 answers

SublimeREPL for IPython under Windows not possible. Any workaround?

SublimeREPL says 'IPython doesn't work under SublimeREPL on Windows' when I select Ipython from it. Is there any solution out there for this great plugin to work with IPython on Windows as well.
Honesta
  • 1,394
  • 1
  • 11
  • 20
2
votes
2 answers

User Input Perl Programs with Sublime Text 2

I have been writing scripts and building them no problem. But what about when I want to accept user input? I installed SublimeREPL and selected the perl package but I am not sure how to run my program using this console. I haven't seen any…