Python 安装sublimeREPL 插件并设置快捷键
https://github.com/HBLong/channel_v3_daily换源安装插件sublimeREPL然后tool--sublimeREPL--Python--run current file每次都点太麻烦了,可以自己设置下快捷键,在key bindigs[{"keys": ["f5"],//这是自己设的快捷键 ...
https://github.com/HBLong/channel_v3_daily 换源
安装插件sublimeREPL
然后tool--sublimeREPL--Python--run current file
每次都点太麻烦了,可以自己设置下快捷键,在key bindigs
[
{
"keys": ["f5"],//这是自己设的快捷键 “”
"command": "run_existing_window_command",
"args":
{
"id": "repl_python_run",
"file": "config/Python/Main.sublime-menu"
}
}
]
[
{"keys": ["f5"],"command": "repl_open",
"caption": "Python - RUN current file",
"id": "repl_python_run",
"mnemonic": "R",
"args": {
"type": "subprocess",
"encoding": "utf8",
"cmd": ["python", "-u", "$file_basename"],
"cwd": "$file_path",
"syntax": "Packages/Python/Python.tmLanguage",
"external_id": "python",
"extend_env": {"PYTHONIOENCODING": "utf-8"}
}
}
]
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
所有评论(0)