vscode-go-template
vscode-go-template copied to clipboard
Commenting out code working incorrectly /* {{ $aa.foo }} */
When i try to comment out this code
{{ $aa.foo }}
it makes it like this
/* {{ $aa.foo }} */
Correct format should be
{{/* $aa.foo */}}
I have the same problem, and here is my quick and dirty "fix"
in file language-configuration.json
change "blockComment": ["/*", "*/"]
to "blockComment": ["{{/*", "*/}}"]