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" | |
}} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks ;)