共计 1370 个字符,预计需要花费 4 分钟才能阅读完成。
用 sublime 运行 python,如果有 input()函数,ctrl+ b 是不能输入数据的,所以下载安装 sublimeREPL 增加 python 的交互模式。具体方法可以看文章
Sublime Text3 安装 SublimeREPL 插件配置运行 python 交互模式及出现问题的解决方法
但是 sublimeREPL 没有自定义快捷键,所以只有自己设置。
首先找到 sublimerepl 的配置文件。
步骤:首选项 –> 浏览插件 –>SublimeREPL 文件夹 –>config 文件夹 –>Python 文件夹 –>Default.sublime-commands(以文本格式打开)
[
{
"caption": "SublimeREPL: Python",
"command": "run_existing_window_command", "args":
{
"id": "repl_python",
"file": "config/Python/Main.sublime-menu"
}
},
{
"caption": "SublimeREPL: Python - PDB current file",
"command": "run_existing_window_command", "args":
{
"id": "repl_python_pdb",
"file": "config/Python/Main.sublime-menu"
}
},
{
"caption": "SublimeREPL: Python - RUN current file",
"command": "run_existing_window_command", "args":
{
"id": "repl_python_run",
"file": "config/Python/Main.sublime-menu"
}
},
{
"command": "python_virtualenv_repl",
"caption": "SublimeREPL: Python - virtualenv"
},
{
"caption": "SublimeREPL: Python - IPython",
"command": "run_existing_window_command", "args":
{
"id": "repl_python_ipython",
"file": "config/Python/Main.sublime-menu"
}
}
]
{
"caption": "SublimeREPL: Python - RUN current file",
"command": "run_existing_window_command", "args":
{
"id": "repl_python_run",
"file": "config/Python/Main.sublime-menu"
}
},
打开首选项 –> 快捷绑定 - 用户,加入以下代码。
代码如下
按下 F5 就可以直接出现交互模式了。
正文完