Sublimerepl: Python - Run Current File
With python script currently opened in SublimeText I'm choosing: Tools > SublimeREPL > Python > RUN Current File Sublime executes the script in a new interactive REPL[pyth
Solution 1:
First, go to Tools -> SublimeREPL -> Python -> Python
to start a new Python REPL. You can then use the commands in Tools -> SublimeREPL -> Eval in REPL
and Transfer to REPL
to transfer and/or evaluate pieces of your code in the running interpreter. When that code is done running, the REPL stays open, allowing you to enter new commands as you'd expect.
Post a Comment for "Sublimerepl: Python - Run Current File"