在线观看不卡亚洲电影_亚洲妓女99综合网_91青青青亚洲娱乐在线观看_日韩无码高清综合久久

鍍金池/ 問(wèn)答/GO/ 如何使用vsCode編輯開(kāi)發(fā)go語(yǔ)言的項(xiàng)目?

如何使用vsCode編輯開(kāi)發(fā)go語(yǔ)言的項(xiàng)目?

1、我想通過(guò)按F5實(shí)現(xiàn)go語(yǔ)言的自動(dòng)運(yùn)行,然而搜了資料還是不能OK?
所以求真經(jīng)、、、不知道怎么配置調(diào)試~~
2、我想用vscode調(diào)試go,但是不知道tools怎么放,看了相關(guān)文檔但是沒(méi)有成功?。?!
求指教,大佬們~

clipboard.png

{
    // Go configuration
            // Run 'go build'/'go test -c' on save.
            "go.buildOnSave": true,
            // Flags to `go build`/`go test` used during build-on-save or running tests. (e.g. ['-ldflags="-s"'])
            "go.buildFlags": [],
            // Run Lint tool on save.
            "go.lintOnSave": true,
            // Specifies Lint tool name.
            "go.lintTool": "golint",
            // Flags to pass to Lint tool (e.g. ['-min_confidenc=.8'])
            "go.lintFlags": [],
            // Run 'go tool vet' on save.
            "go.vetOnSave": true,
            // Flags to pass to `go tool vet` (e.g. ['-all', '-shadow'])
            "go.vetFlags": [],
            // Pick 'gofmt', 'goimports' or 'goreturns' to run on format.
            "go.formatTool": "goreturns",
            // Flags to pass to format tool (e.g. ['-s'])
            "go.formatFlags": [],
            // Run the formatting tools with the -d flag
            "go.useDiffForFormatting": true,
            // Complete functions with their parameter signature
            "go.useCodeSnippetsOnFunctionSuggest": false,
            // Specifies the GOPATH to use when no environment variable is set.
            "go.gopath": "D:/web/Golang",
            // // Specifies the GOROOT to use when no environment variable is set.
            "go.goroot": "F:/gong_ju/Golang",
            // Run formatting tool on save.
            "go.formatOnSave": true,
            // Run 'go test -coverprofile' on save
            "go.coverOnSave": false,
            // Specifies the timeout for go test in ParseDuration format.
            "go.testTimeout": "30s",
            // Enable gocode's autobuild feature
            "go.gocodeAutoBuild": true,
            // The Go build tags to use for all commands that support a `-tags '...'` argument
            "go.buildTags": "",
            // Environment variables that will passed to the process that runs the Go tests
            "go.testEnvVars": {},
            // Autocomplete members from unimported packages.
            "go.autocompleteUnimportedPackages": true    
}
回答
編輯回答
不舍棄

找到了答案,這是鏈接 https://blog.csdn.net/u010019...

2018年5月4日 10:58