sublime配置python代码提示_SublimeCodeIntel代码自动补全配置

主要使用python3,所有配置以python3为例.其他语言同理.利用sublimeCodeIntel插件可以实现自动提示python3代码、跳转追踪自定义函数、查看系统函数等.功能还是相当强大的。

选择 Perference  ->  Package Settings  ->  SublimeCodeIntel  ->  Settings-User  复制以下配置:

{

"codeintel_language_settings": {

"Python3": {

"python3": "D:\\Python3.7.2",

"codeintel_scan_extra_dir": [

"D:\\Python3.7.2\\DLLs",

"D:\\Python3.7.2\\Lib",

"D:\\Python3.7.2\\Lib\\site-packages",

"D:\\Python3.7.2\\Lib\\idlelib",

"D:\\Python3.7.2\\python36.zip",

"D:\\Python3.7.2",

"D:\\Python3.7.2\\Lib\\*",

],

"codeintel_scan_files_in_project": true,

"codeintel_selected_catalogs": []

},

}

}

这里python路径需要根据自己的安装路径定义,其中codeintel_scan_extra_dir包含的目录可以在python IDLE中sys.path查看.

出现Error tring to parse file:Expected value in Pacjages\User\Default.sublime-XX.......错误

可能是上边设置文件书写错误,比如多了逗号,空格和tab互用

追踪函数、查看系统函数

配置快捷键,实现ctrl+鼠标左键追踪函数,alt+left/right跳转,alt+/自动提示代码

选择 Perference  ->  Package Settings  ->  SublimeCodeIntel  ->  Key Bindings-User  复制以下配置:

[

{

"keys": ["f5"],

"caption": "SublimeREPL:Python",

"command": "run_existing_window_command", "args":

{

"id": "repl_python_run",

"file": "config/Python/Main.sublime-menu"

}

},

//自动提示代码

{

"keys": ["alt+/"],

"command": "code_intel_auto_complete"

},

//跳转到函数定义

{

"keys": ["alt+right"],

"command": "goto_python_definition"

},

//返回到跳转位置

{

"keys": ["alt+left"],

"command": "back_to_python_definition"

}

]

ctrl+鼠标左键跳转函数

选择 Perference  ->  Package Settings  ->  SublimeCodeIntel  ->  Mouse Bindings - User  复制以下配置:

[//ctrl+鼠标左键跳转函数

{"button": "button1","modifiers": ["ctrl"],"command": "goto_python_definition","press_command": "drag_select"}

]

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值