-
Notifications
You must be signed in to change notification settings - Fork 770
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
src/goMain: export a small API #1642
Conversation
This PR (HEAD: 7559179) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/vscode-go/+/336509 to see it. Tip: You can toggle comments from me using the |
Message from Hyang-Ah Hana Kim: Patch Set 2: Run-TryBot+1 (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/336509. |
Message from kokoro: Patch Set 2: Kokoro presubmit build starting for golang/vscode-go/gcp_ubuntu/presubmit Please don’t reply on this GitHub thread. Visit golang.org/cl/336509. |
Message from kokoro: Patch Set 2: TryBot-Result+1 Kokoro presubmit build finished with status: SUCCESS Please don’t reply on this GitHub thread. Visit golang.org/cl/336509. |
Message from Ethan Reesor: Patch Set 2: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/336509. |
Message from Hyang-Ah Hana Kim: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/336509. |
Message from Ethan Reesor: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/336509. |
7559179
to
465158c
Compare
This PR (HEAD: 465158c) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/vscode-go/+/336509 to see it. Tip: You can toggle comments from me using the |
Message from Ethan Reesor: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/336509. |
465158c
to
a3c22b7
Compare
This PR (HEAD: a3c22b7) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/vscode-go/+/336509 to see it. Tip: You can toggle comments from me using the |
/comments off |
3f6650c
to
0171541
Compare
Exports a function for use by other extensions. When I'm creating a Go-related VSCode extension, being able to reuse this extension's configuration and certain helper functions would be very useful. Additionally, users expect Go-related extensions to respect `go.*` configuration options, and have reported issues when they don't. This change exports `getBinPath`. With this function, Go-related extensions don't have to reinvent the wheel when it comes to installing and configuring Go tools. Updates #233 Change-Id: I9edf7f87437492182e8562aa107b643ca01a1202 GitHub-Last-Rev: 0171541 GitHub-Pull-Request: #1642 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/336509 Reviewed-by: Hyang-Ah Hana Kim <[email protected]> Trust: Hyang-Ah Hana Kim <[email protected]> Trust: Suzy Mueller <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]>
Exports a function for use by other extensions. When I'm creating a
Go-related VSCode extension, being able to reuse this extension's
configuration and certain helper functions would be very useful.
Additionally, users expect Go-related extensions to respect
go.*
configuration options, and have reported issues when they don't. This
change exports
getBinPath
. With this function, Go-relatedextensions don't have to reinvent the wheel when it comes to
installing and configuring Go tools.
Updates #233