237 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
141
views
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 ...
1
vote
1
answer
53
views
Load node.js module from within SublimeText using SublimeREPL with node env
I'm using SublimeText editor in combination with SublimeREPL which allows code snippets to be run from the text editor in different languages. I used this regularly with Python and now trying to use ...
0
votes
1
answer
101
views
Is there any shortcut to open Python' interactive console with sublimerepl? And if not, can I create one?
Is there a shortcut to open Ipython from sublimerepl
-2
votes
2
answers
128
views
Why math.sqrt in python doesn't work in my sublimeREPL? [duplicate]
I have written this code in sublime text
if intentos<3:
solution= math.sqrt(number)
print("La raiz cuadrada de " + str(number) + "es" + str(solution))
Then I have used ...
1
vote
1
answer
216
views
How can I avoid NameError from input() in Sublime Text 4, using SublimeREPL on Mac OS 12.1?
I followed the instructions on the following short video to allow Python scripts to be run in Sublime Text.
https://www.youtube.com/watch?v=-d27eACbjnk
Steps were:
Install 'Package Control'
Install '...
0
votes
0
answers
304
views
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 ...
0
votes
1
answer
39
views
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 ...
0
votes
0
answers
85
views
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 ...
0
votes
1
answer
109
views
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).
...
0
votes
1
answer
79
views
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 ...
1
vote
0
answers
71
views
How to run SublimeREPL on remote python
I want to run my python code on a remote environment (I have more cores/RAM etc...) and I have no idea how to do that in SublimeREPL. Do I just update the python_virtualenv_paths?
from:
"...
0
votes
1
answer
355
views
Sublime Text 3 shows EOFError() when I try to run Python scripts with SublimeREPL
When I try to run a Python script from Sublime Text 3, I get a pop-up dialog box that simply says "EOFError()" and nothing else.
I'm using the SublimeREPL plugin, with some slight ...
0
votes
1
answer
55
views
Modify title of SublimeREPL in tab
I'm using the SublimeREPL package. The title in the tab where the code is running is very long and makes navigating the tabs a hassle:
Can the title shown in the REPL tab be modified and/or ...
2
votes
1
answer
85
views
How can I disable syntax highlighting in SublimeREPL, without setting syntax to plain text?
When I run a program in SublimeREPL, I often get highlighted backslashes '' which show up in pink.
I can work around it, but it's annoying and It would be great if I could disable it. I read on other ...
0
votes
1
answer
352
views
How do I use Virtual Environments with SublimeREPL?
I am a beginner to coding in general and I just found out that we could create virtual environments and was soon disappointed to see that there was no tutorial or answer anywhere for a Windows user ...