100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > sublime text3解决Gosublime无法自动补全代码

sublime text3解决Gosublime无法自动补全代码

时间:2020-02-17 11:55:07

相关推荐

sublime text3解决Gosublime无法自动补全代码

sublime text3解决Gosublime无法自动补全代码

文章目录

sublime text3解决Gosublime无法自动补全代码版本安装Gosublime自动补全解决方法Gosublime配置

版本

Sublime Text3.2.1

go version go1.12.1 darwin/amd64

Gosublime 18.11.28

安装Gosublime

打开Perferences–Browse Packages…,进入Gosublime,在命令行里输入:

git clone /DisposaBoy/GoSublime.git

自动补全解决方法

在windows和mac上使用sublime text3安装Gosublime插件后都无法自动补全代码,经过多日的研究找到如下解决方法。

打开Perferences–Browse Packages…,进入Gosublime:

1、在src目录下创建margo目录;

2、拷贝src/margo.sh/extension-example/extension-example.go文件到margo目录下;

3、拷贝margo文件夹(所有文件和目录)到src/margo.sh/vendor目录下;

4、重新打开sublime text3,稍等几分钟就可以自动补全代码了。

Gosublime配置

Perferences–Package Settings–Gosublime–Settings - User

{"env": {"GOPATH": "/data","GOROOT": "/usr/local/go","PATH": "$GOROOT:$GOPATH:$GOROOT/bin",},"gscomplete_enabled": true,"fmt_enabled": true,"fmt_tab_indent": false,"fmt_tab_width": 4,"autocomplete_snippets": true,"autocomplete_tests": true,"autocomplete_builtins": true,"autocomplete_closures": true,"autocomplete_suggest_imports": true,"calltips": true,"use_named_imports": true,"autoinst": true,"ipc_timeout": 1,"fmt_cmd": ["goimports"],"on_save": [{"cmd": "gs_comp_lint"},{"cmd": "goimports"}],"lint_enabled": true,"linters": [{"cmd": ["go", "run"]}],"comp_lint_enabled": true,"comp_lint_commands": [{"cmd": ["go", "install"]}],}

ctrl+q显示帮助

Perferences–Package Settings–Gosublime–Key Bindings - Default

{"keys": ["ctrl+q"],// "keys": ["super+.", "super+h"],"command": "gs_doc","args": {"mode": "hint"},"context": [{"key": "selector", "operator": "equal", "operand": "source.go" }]},

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。