Go extension for Visual Studio Code
Перейти к файлу
Hana (Hyang-Ah) Kim 0b6803bf47 package.json: add deprecation note for legacy tools settings
By adding the deprecation notes, the current users of these settings
will notice the deprecation when they happen to edit their
settings.json. Moreover, VS Code will exclude them from the default
settings UI and autocompletion list, which will help users not getting
distracted by these old settings.

Updates golang/vscode-go#2799

Change-Id: I771dd5aeb6f826882d2c234e80862a8fb7d45670
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/501206
Reviewed-by: Jamal Carvalho <jamal@golang.org>
Run-TryBot: Hyang-Ah Hana Kim <hyangah@gmail.com>
TryBot-Result: kokoro <noreply+kokoro@google.com>
2023-06-06 22:52:31 +00:00
.github .github/workflows: fix release.yml to use npx vsce for packaging 2023-02-24 15:30:36 +00:00
.vscode .vscode/launch.json: use --profile-temp for testing with clean env 2023-02-15 21:56:08 +00:00
build build: update docker to fix kokoro builder 2023-05-12 17:30:18 +00:00
docs package.json: add deprecation note for legacy tools settings 2023-06-06 22:52:31 +00:00
languages Add line comment language configuration for go.mod (#2761) 2019-09-19 19:10:20 -07:00
media src/goVulncheck: remove the experimental "Go: Run Vulncheck" command 2022-12-07 20:46:48 +00:00
snippets snippet/go.json: add code snippet for variable block 2022-10-10 20:32:00 +00:00
src src/goToolsInformation.ts: update gopls version and unpin golangci-lint 2023-06-06 22:52:17 +00:00
syntaxes src/goVulncheck: add the feedback link, polish govulncheck output 2022-12-12 20:25:13 +00:00
test src/goDebugConfiguration.ts: add support for `string` typed `args` 2023-05-15 17:53:14 +00:00
third_party third_party/tree-kill: remove dependency on mocha 2021-02-09 23:36:28 +00:00
tools src/goToolsInformation.ts: update gopls version and unpin golangci-lint 2023-06-06 22:52:17 +00:00
typings stop debugger when delve remote connection ends 2021-12-02 16:39:32 +00:00
.editorconfig Add .editorconfig 2016-03-27 13:13:31 +04:30
.eslintignore eslint: Change test files so eslint does not complain 2021-02-15 20:34:52 +00:00
.eslintrc.json eslint: reformat files in src with gts fix and eslint comments 2021-02-17 14:51:22 +00:00
.gitignore test/goDebugConfiguration.test.ts: test settings.json debug config effects 2020-11-10 22:16:23 +00:00
.prettierrc.js eslint: reformat files in src with gts fix and eslint comments 2021-02-17 14:51:22 +00:00
.prettierrc.json Run format post prettier dependency update 2020-04-19 20:31:41 -07:00
.vscodeignore .vscodeignore: ignore more config files 2022-04-20 18:01:26 +00:00
CHANGELOG.md CHANGELOG: update CHANGELOG for v0.38.0 release 2023-02-22 19:20:42 +00:00
CODE_OF_CONDUCT.md [release] docs: rewrite the main README 2020-06-08 12:28:47 +00:00
LICENSE LICENSE: restore LICENSE 2020-09-30 17:11:37 +00:00
README.md README.md: Clean up of README sections, link fix 2022-09-08 14:34:33 +00:00
SECURITY.md vscode-go: a few small clean-up items 2020-06-10 18:54:57 +00:00
codereview.cfg codereview.cfg: declare issue repo 2022-03-01 19:30:26 +00:00
go.mod go.mod: update dependencies 2023-02-22 14:53:57 +00:00
go.sum go.mod: update dependencies 2023-02-22 14:53:57 +00:00
package-lock.json package.json: update vscode-languageclient to 8.1.0 2023-05-24 20:15:23 +00:00
package.json package.json: add deprecation note for legacy tools settings 2023-06-06 22:52:31 +00:00
tsconfig.json vscode-go: create separate tsconfig for builds 2022-05-03 13:34:22 +00:00

README.md

Go for Visual Studio Code

Slack

The VS Code Go extension provides rich language support for the Go programming language.

📣 Remote attach debugging is now available via Delve's native DAP implementation with Delve v1.7.3 or newer. It enchances remote debugging with the same debugging features that are already in use for local debugging. It is now the default with the Go Nightly build of the extension and will become the default for the stable releases in mid 2022. We recommend switching your remote attach configurations in launch.json to use "debugAdapter":"dlv-dap" now to verify that this works for you. Please file a new issue if you encounter any problems.

📣📣 Watch Debugging Treasure Hunt from GopherCon 2021 for a fun take on a debugging demo with VS Code Go and Delve DAP.

Quick Start

Welcome! 👋🏻
Whether you are new to Go or an experienced Go developer, we hope this extension fits your needs and enhances your development experience.

  1. Install Go 1.14 or newer if you haven't already.

  2. Install the VS Code Go extension.

  3. Open any directory or workspace containing Go code to automatically activate the extension. The Go status bar appears in the bottom left corner of the window and displays your Go version.

  4. The extension depends on go, gopls, dlv and other optional tools. If any of the dependencies are missing, the ⚠️ Analysis Tools Missing warning is displayed. Click on the warning to download dependencies.

    See the tools documentation for a complete list of tools the extension depends on.


(Install Missing Tools)

You are ready to Go :-)    🎉🎉🎉

What's next

If you are new to Go, this article provides the overview on Go code organization and basic go commands. Watch "Getting started with VS Code Go" for an explanation of how to build your first Go application using VS Code Go.

Feature highlights

  • IntelliSense - Results appear for symbols as you type.
  • Code navigation - Jump to or peek at a symbol's declaration.
  • Code editing - Support for saved snippets, formatting and code organization, and automatic organization of imports.
  • Diagnostics - Build, vet, and lint errors shown as you type or on save.
  • Enhanced support for testing and debugging

See the full feature breakdown for more details.


(Code completion and Signature Help)

In addition to integrated editing features, the extension provides several commands for working with Go files. You can access any of these by opening the Command Palette (Ctrl+Shift+P on Linux/Windows and Cmd+Shift+P on Mac), and then typing in the command name. See the full list of commands provided by this extension.


(Toggle Test File)

⚠️ Note: the default syntax highlighting for Go files is provided by a TextMate rule embedded in VS Code, not by this extension.

For better syntax highlighting, we recommend enabling semantic highlighting by turning on Gopls' ui.semanticTokens setting. "gopls": { "ui.semanticTokens": true }

Setting up your workspace

The VS Code Go extension supports both GOPATH and Go modules modes.

Go modules are used to manage dependencies in recent versions of Go. Modules replace the GOPATH-based approach to specifying which source files are used in a given build, and they are the default build mode in go1.16+. We highly recommend Go development in module mode. If you are working on existing projects, please consider migrating to modules.

Unlike the traditional GOPATH mode, module mode does not require the workspace to be located under GOPATH nor to use a specific structure. A module is defined by a directory tree of Go source files with a go.mod file in the tree's root directory.

Your project may involve one or more modules. If you are working with multiple modules or uncommon project layouts, you will need to configure your workspace by using Workspace Folders. See the Supported workspace layouts documentation for more information.

Preview version

If you'd like to get early access to new features and bug fixes, you can use the nightly build of this extension. Learn how to install it in by reading the Go Nightly documentation.

Contributing

We welcome your contributions and thank you for working to improve the Go development experience in VS Code. If you would like to help work on the VS Code Go extension, see our contribution guide to learn how to build and run the VS Code Go extension locally and contribute to the project.

Code of Conduct

This project follows the Go Community Code of Conduct. If you encounter a conduct-related issue, please mail conduct@golang.org.

License

MIT