sublime怎么用?Sublime Text3怎么配置SublimeREPL快捷键?下面就给大家介绍其修改方法,希望对需要的朋友有所帮助!因为用sublime运行python,如果有input()…
sublime 怎么用?Sublime Text3 怎么配置 SublimeREPL 快捷键?下面就给大家介绍其修改方法,希望对需要的朋友有所帮助!
因为用 sublime 运行 python,如果有 input()函数,ctrl+b 是不能输入数据的,所以下载安装了 sublimeREPL 进行调试。
但是 sublimeREPL 没有自定义快捷键,所以只有自己设置。
网上很多方法但是都没有效果,最后折腾了一晚上终于找到正确方式。
首先找到 sublimerepl 的配置文件。
步骤:Preferences–>Browse Packages–>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" } }]登录后复制
这是 repl 的配置文件,找到你需要的命令复制下来。
粘贴到 Preferences–>Key Bindings User
代码如下
[ { "keys": ["f5"],//这是自己设的快捷键 “” "command": "run_existing_window_command", "args": { "id": "repl_python_run", "file": "config/Python/Main.sublime-menu" } }]登录后复制
最后保存就行了。
如图
关于 sublime 每次打开更新的提示
preferences->seting user -》{"font_size": 13,"update_check":false,}登录后复制
更多 sublime 相关技术文章,请访问 sublime 栏目.
以上就是 Sublime Text3 配置 SublimeREPL 快捷键的方法(Python)的详细内容,更多请关注快捷派其它相关文章!
原创文章,作者:xingkupai,如若转载,请注明出处:http://xingkupai.com/office/14630.html