-
Notifications
You must be signed in to change notification settings - Fork 791
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
snippets: add snippet for type function declaration #1002
Conversation
This PR (HEAD: 786fc72) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/vscode-go/+/275572 to see it. Tip: You can toggle comments from me using the |
Message from Go Bot: Patch Set 1: Congratulations on opening your first change. Thank you for your contribution! Next steps: Most changes in the Go project go through a few rounds of revision. This can be Please don’t reply on this GitHub thread. Visit golang.org/cl/275572. |
Message from Hyang-Ah Hana Kim: Patch Set 4: Run-TryBot+1 Code-Review+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/275572. |
Message from kokoro: Patch Set 4: Kokoro presubmit build starting for golang/vscode-go/gcp_ubuntu/presubmit Please don’t reply on this GitHub thread. Visit golang.org/cl/275572. |
Message from kokoro: Patch Set 4: TryBot-Result+1 Kokoro presubmit build finished with status: SUCCESS Please don’t reply on this GitHub thread. Visit golang.org/cl/275572. |
Message from Hyang-Ah Hana Kim: Patch Set 4: Trust+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/275572. |
Message from Suzy Mueller: Patch Set 4: Code-Review+2 Trust+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/275572. |
Add snippet with name `tyf` for type function declaration: ``` type name func() // snippet to fill type Example func(string, int) error // example of filled snippet ``` Rationale - they are already: - `tyi` - snippet for a type interface - `tys` - snippet for a struct declaration the only one missing is a snippet for type function declaration. It is quite common in Go to declare and use function types, so this new snippet makes a programmer's life easier Change-Id: Ib04cb122bdf25b6983b7c704e88ca56fc7df77e5 GitHub-Last-Rev: 786fc72 GitHub-Pull-Request: #1002 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/275572 Run-TryBot: Hyang-Ah Hana Kim <hyangah@gmail.com> TryBot-Result: kokoro <noreply+kokoro@google.com> Trust: Hyang-Ah Hana Kim <hyangah@gmail.com> Trust: Suzy Mueller <suzmue@golang.org> Reviewed-by: Suzy Mueller <suzmue@golang.org> Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
This PR is being closed because golang.org/cl/275572 has been merged. |
Add snippet with name
tyf
for type function declaration:Rationale - they are already:
tyi
- snippet for a type interfacetys
- snippet for a struct declarationthe only one missing is a snippet for type function declaration. It is quite common in Go to declare and use function types, so this new snippet makes a programmer's life easier