标签:打开 font color AC 依次 选中 重启 bind lang
sublime text3的下载地址:https://www.sublimetext.com/
安装 SublimeREPL插件
按ctrl+shift+p打开一个输入框,输入Install Package,
回车,输入SublimeREPL,在下面的选择列表中选中后回车。
注意此时tools栏最底下出现了sublimeREPL选项,如果没有重启程序。
依次选择sublimeREPL选项里的python->python run current file,就可以进行input了
每次这样进行交互式操作可能会比较麻烦,可以为python run current file设置一个快捷键:
打开preferences->Key Binding User,保存如下代码
[ {
"keys": ["f5"],
"caption": "SublimeREPL: Python - RUN current file",
"command": "run_existing_window_command",
"args": {"id": "repl_python_run","file": "config/Python/Main.sublime-menu" }
} ]
当然也可以设置其他的快捷键
标签:打开 font color AC 依次 选中 重启 bind lang
原文地址:https://www.cnblogs.com/ya-qiang/p/8909216.html