Fill in with function signature as we have for structs.
GAZ082 opened this issue · 2 comments
GAZ082 commented
We have the cool fill struct, can we have the same for functions?
Thanks.
hyangah commented
If you are using the language server ("go.useLanguageServer": true
), the following additional settings will do the work.
"gopls": {
"usePlaceholders": true
},
If you are not using the language server, try
"go.useCodeSnippetsOnFunctionSuggest": true
.
GAZ082 commented
Thanks!