You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.
The extension does not load on activationEvent ""workspaceContains:**/.go"
This means users loading a workspace containing go files need to open a .go file, or run specific go commands before they can build the workspace.
Steps to Reproduce:
close all vscode instances
open a workspace that has .go files, ensure that the default state does not focus on a .go code file
try to ctrl-shift-p->"Go: Build Workspace"
Notice that it fails because the extension is not loaded
Possible solution: Modify package.json to include the workspaceContains event:
"activationEvents": [
"workspaceContains:**/.go",
"onLanguage:go",
"onCommand:go.gopath",
"onCommand:go.tools.install",
"onDebugResolve:go"
],
The text was updated successfully, but these errors were encountered:
The extension does not load on activationEvent ""workspaceContains:**/.go"
This means users loading a workspace containing go files need to open a .go file, or run specific go commands before they can build the workspace.
Steps to Reproduce:
Possible solution: Modify package.json to include the workspaceContains event:
"activationEvents": [
"workspaceContains:**/.go",
"onLanguage:go",
"onCommand:go.gopath",
"onCommand:go.tools.install",
"onDebugResolve:go"
],
The text was updated successfully, but these errors were encountered: