vscode 有一个很棒的任务运行器,有很多关于何时以及如何运行任务的配置选项。
让我们将 godoc 设置为在您打开项目时运行。 它将显示一条推送通知,将您链接到浏览器中的 godoc 服务器。
添加步骤
(1) 通过终端安装 godoc
go install golang.org/x/tools/cmd/godoc@latest
(2) 使用 ctrl-shift-p 添加任务,“配置任务”。这将编辑 ./vscode/tasks.json
(3) 将以下任务添加到任务数组中(复制下面的单个任务对象)
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "godoc", "type": "shell", "command": "godoc", "options": { "cwd": "${workspaceFolder}", "shell": { "args": ["-c"], "executable": "/bin/sh" } }, "runOptions": {"runOn": "folderOpen"}, "presentation": { "echo": true, "reveal": "never", "focus": false, "panel": "shared", "showReuseMessage": true, "clear": false }, "problemMatcher": [] } ] }
(4) 运行任务。 您可以使用 ctrl-shift-p →“运行任务”→“godoc”或重新打开窗口来运行任务。将显示一条通知,将您链接到 godoc。 或者您可以使用“ports”选项卡并单击 godoc url 找到该链接。
以上就是自动运行 godoc的详细内容,更多请关注php中文网其它相关文章!
版权声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系 yyfuon@163.com