您的位置 首页 编程知识

自动运行 godoc

有一个很棒的任务运行器,有很多关于何时以及如何运行任务的配置选项。 让我们将 godoc 设置为在您打开项目时…

自动运行 godoc

有一个很棒的任务运行器,有很多关于何时以及如何运行任务的配置选项。

让我们将 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中文网其它相关文章!

本文来自网络,不代表四平甲倪网络网站制作专家立场,转载请注明出处:http://www.elephantgpt.cn/4143.html

作者: nijia

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

联系我们

联系我们

18844404989

在线咨询: QQ交谈

邮箱: 641522856@qq.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部