1,523 questions
0
votes
0
answers
59
views
Sublime chain command and Repl
I update to Sublime 4 and I am getting problems with an older chain command keymaps.
I am triying to close a Sublime Repl session with a simple chain command, my old shortcut work fine with Sublime 3 ...
1
vote
1
answer
68
views
Run file in REPL by default with run button
By default the run button (triangle) in VS Code runs as new process, not in REPL. This is only available in the drop down next to it. Is it possible to set running in REPL as default?
Note: I am ...
0
votes
0
answers
40
views
Sublime: Shortcut to always run specific group or file
I Always work with 3 windows for run a Latex file, in a specific group using Tinitex or Knitr in R (Repl).
In group 3 include commands (set working directory and name file latex) to render or compile ...
1
vote
1
answer
218
views
Why does the Python REPL behave differently in VS Code's vs native cmd.exe?
I am running the same python.exe, from the same working directory, in VS Code's terminal running cmd.exe, and in Windows Terminal running cmd.exe. For some reason, these two behave differently.
In ...
1
vote
2
answers
329
views
How to run Clojure REPL using IntelliJ and Cursive plugin
I am desperately trying to set up a working environment for Clojure 1.12.0.1488, using IntelliJ 2024.3, Cursive's plugin 2025.1.1-343 and openJDK 24.
I am using VoidLinux based on kernel 6.12.28_1, ...
1
vote
1
answer
70
views
Scala REPL missing commands
I have installed scala through coursier. Running scala --version in the terminal gives the following:
C:\Users\Me>scala --version
Scala code runner version: 1.4.3
Scala version (default): 3.5.1
...
0
votes
3
answers
91
views
Common Lisp: Why does using read-from-string create two REPL outputs?
I have been learning Common Lisp for a short while, using the SBCL 2.0.0 REPL on a Windows 10 machine. At one point in time I inputted the 2 following lines into a REPL:
(defvar var-string (print (* 5 ...
9
votes
1
answer
912
views
How to paste code into the REPL without adding extra spaces on the left
I am running Python 3.13.1. When I paste code into the Python REPL, Python adds extra spaces at the beginning of every line after the first.
I wrote this code in Notepad and pasted it into Python.
if ...
0
votes
1
answer
137
views
How to Customize REPL Output Format in Guile Scheme?
The existing question How to have objects print nicely in Guile scheme repl focuses on customizing the printing of specific user-defined objects (e.g., GOOPS classes). In contrast, I want to globally ...
1
vote
2
answers
273
views
Python 3.13 REPL key-binding ctrl+arrows not working
Previously when I ran py3.12 in shell I could use ctrl + left arrow or ctrl + right arrow to move one word back or forward (skip words).
Recently I've upgraded to py3.13 and it doesn't work anymore, ...
0
votes
1
answer
22
views
Common Lisp setting *print-circle* T causes list compression?
(setq *print-circle* T)
;; then create some list with a large number of items, of which a bunch
;; of them repeat
If you then try to print the list in the repl, you will see a lot of unfamiliar text....
7
votes
1
answer
2k
views
Kotlin REPL deprecated?
When I type kotlin (or kotlinc) to get into the REPL interactive shell in the latest 2.1 beta, I see this:
Welcome to Kotlin version 2.1.0-Beta2 (JRE 21.0.4+8-LTS-274)
Warning: this REPL ...
0
votes
1
answer
583
views
How to embed a Replit Project on Wix, so that it automatically runs, and fits the screen of the website
I tried to make an embed on Wix, but I didn't how to. I also tried to make an embed on W3 schools, which kind of worked, but it didn't run the project but instead showed the files of the project.
I ...
1
vote
0
answers
69
views
How to enable Kotlin REPL autocomplete
I'm totally new to kotlin so I just installed IntelliJ on my pc for a course I'm taking.
Since I'm not new to programming using the autocomplete is merely to save a little time. I assumed it'd be ...
1
vote
1
answer
93
views
How do I get the command history using Haskelline?
I can't seem to figure out how to get Haskeline to allow the user to use the arrow keys to go through command history.
I read Hackage and tried using Settings { complete = completeFilename, ...
0
votes
1
answer
33
views
How do you paste a multiline string into .editor mode?
I've got a SQL string that I'd like to run a regex against. I can't get it to paste correctly.
> .editor
// Entering editor mode (Ctrl+D to finish, Ctrl+C to cancel)
s="with docs as (
...
1
vote
1
answer
173
views
No output in Kotlin REPL of IntelliJ IDEA
I am trying to follow a tutorial where I need to paste Kotlin code into Kotlin REPL of IntelliJ IDEA.
But when I paste the content and press CTRL+ENTER to execute I cannot see any output.
Any ideas ...
2
votes
1
answer
178
views
How to quit or exit evcxr in Rust without ctrl-c'ing?
Simple question, but how can i exit or quit Rust's REPL tool called evcxr?
I tried quit(), exit(), :q and ran out of ideas after that.
Well I can always do ctrl-c of course, but I was wondering if ...
2
votes
0
answers
86
views
How do I write a string to the Slime REPL's input buffer?
I'm writting a shell in Common Lisp that reads command from the user's input and returns the output after executing. When the user types a "meta" command I want to write a placeholder so ...
0
votes
1
answer
331
views
Problem in controlling cursor position through readline in Node.js
I am designing a console app in Node.js using readline to control the cursor positions and get user input. Here is a library I have written for the same:
// ReadLine.js
const readline = require("...
2
votes
2
answers
72
views
Node REPL : Latest Script file contents are not getting fetched using require method
While using node js repl to run run require command latest file changes are not getting captured.
OS => Windows 11
Node Version => 16.6.0
Let script.js has content
global.testObject = {};
...
0
votes
2
answers
91
views
How to dedent a block in Python3 under MacOS?
I am learning Python3. It is executed on MacOS/Terminal by running python3.
I was able to execute some examples from the book "Deep Learning with Python, Second Edition", but I am stuck now ...
1
vote
1
answer
191
views
How to spawn a second console window and read from and write to it?
I have a node server which displays logs of stuff happening in the terminal.
I want to put a repl server in it so I can control the server while it is running.
But I do not want the logs and the repl ...
1
vote
1
answer
865
views
Getting pyreadline3.Readline's history working with Python 3.9
I am following this
Q&A's procedure for
accessing Python's REPL command history -- specifically at the Conda
prompt, not in an IDE.
I am using Python 3.9 installed under Anaconda on Windows 10. ...
-7
votes
1
answer
92
views
clj repl overwrites output
I start the repl with cjl and get the prompt
Clojure 1.11.1
user=>
At the user prompt I enter (+ 1 2 3) and hit return. The output is this:
user=> (+ 1 2 (+ 1 2 3)
6
I think the operation I ...