I have looked at all the answers on this forum but I\'m missing something. I want to be able to hit Cmd+B while editing a Python file \"myfile.py\" in
Try to update your user keybindings:
[
{ "keys": ["super+shift+r"], "command": "repl_open",
"caption": "Python",
"mnemonic": "p",
"args": {
"type": "subprocess",
"encoding": "utf8",
"cmd": ["python", "-i", "-u", "$file"],
"cwd": "$file_path",
"syntax": "Packages/Python/Python.tmLanguage",
"external_id": "python"
}
}
]