SublimeText3⾃动补全python提⽰
2、安装SublimeText3
3、安装SublimeCodeIntel
(1)打开SublimeText3;(2)按快捷键“ctrl+p”,或者“Preferences->Package control”输⼊“Package Control: InstallPackage”;(3)输⼊“SublimeCodeIntel”,点击列表中的“SublimeCodeIntel”包,安装完后会有相应的提⽰。
4、配置python提⽰
(1)配置⽂件
Preferences->Package settings->SublimeCodeIntel->settings-user
(2)修改⽂件内容如下,其中python的路径需要根据⾃⼰的需要修改
{
"codeintel_language_settings": {
"Python": {
"python": "D:\\python\\",
"codeintel_scan_extra_dir": [
"D:\\python",
"D:\\python\\DLLs",
"D:\\python\\Lib",
"D:\\python\\Lib\\site-packages",
"D:\\python\\Lib\\idlelib"
],
"codeintel_scan_files_in_project": true,
"codeintel_selected_catalogs": []
sublime text3安装教程},
}
}
5、快捷键
(1)⼀般情况下,默认快捷键有:
ctrl+/:代码注释
ctrl+shift+space:代码提⽰
(2)⾃定应快捷键:
⾃定义“⿏标”跳转注释代码
配置⽂件
Preferences->Package settings->SublimeCodeIntel->Mouse Bindings-User
添加以下内容
[{ "button": "button1", "modifiers": ["ctrl"], "command": "goto_python_definition", "press_command": "drag_select" }
]
⾃定义“键盘”快捷⽅式
Preferences->Package settings->SublimeCodeIntel->Key Bindings-User
定义⽅式类似于⿏标的格式。
上述⾃定义⽅法可以参见Preferences->Package settings->SublimeCodeIntel->Key Bindings-Default中的内容
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论