아래의 sublime 튜토리얼 칼럼에서는 Gosublime이 코드를 자동으로 완성할 수 없는 문제를 sublime text3이 어떻게 해결하는지 공유할 것입니다. 이 내용이 필요한 친구들에게 도움이 되기를 바랍니다.
sublime text3은 Gosublime이 자동으로 코드를 완성할 수 없는 문제를 해결합니다
version
Sublime Text3.2.1 go version go1.12.1 darwin/amd64 Gosublime 18.11.28
Gosublime 설치
Open Perferences–Browse Packages..., Gosublime을 입력하고 명령줄에
git clone https://github.com/DisposaBoy/GoSublime.git
를 입력합니다. 자동 완성 솔루션
Windows 및 Mac에서 sublime text3을 사용하여 Gosublime 플러그인을 설치한 후 며칠 동안 조사한 결과 다음과 같은 해결 방법을 찾았습니다.
Perferences 열기 – 패키지 찾아보기… 그리고 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" }] },
위 내용은 Gosublime이 sublime text3에서 코드를 자동으로 완성하지 못하는 문제를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!