microsoft/vscode-go

Fill in with function signature as we have for structs.

GAZ082 opened this issue · 2 comments

We have the cool fill struct, can we have the same for functions?

Thanks.

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.

Thanks!