Last active
September 20, 2023 09:20
-
-
Save wynnzen/238c709e87dbd96b9e6b to your computer and use it in GitHub Desktop.
sublime repl shortcut setting
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{"keys":["f5"], | |
"caption": "SublimeREPL: Python - RUN current file", | |
"command": "run_existing_window_command", | |
"args": | |
{ | |
"id": "repl_python_run", | |
"file": "config/Python/Main.sublime-menu" | |
}}, | |
{"keys":["f4"], | |
"caption": "SublimeREPL: Python - IPython", | |
"command": "run_existing_window_command", "args": | |
{ | |
"id": "repl_python_ipython", | |
"file": "config/Python/Main.sublime-menu" | |
}} | |
] |
Thanks a lot man🙂
Gracias totales! Sigue sirviendo para la versión 3.10 🙂
Thanks ;)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you, very useful.
For future comers: you supposed to copy it into Preferences => Key Bindings.
I suppose SublimeREPL is already installed
Good luck!