vscode-go-template icon indicating copy to clipboard operation
vscode-go-template copied to clipboard

Go Template Syntax Highlight Support for VSCode.

Results 15 vscode-go-template issues
Sort by recently updated
recently updated
newest added

Add support for the `.gotmpl` file type, which is used in the [helmfile](https://github.com/roboll/helmfile) project.

When i try to comment out this code ``` {{ $aa.foo }} ``` it makes it like this ``` /* {{ $aa.foo }} */ ``` Correct format should be ```...

Currently using the comment shortcut "control + /" uses whatever the default comment type is for the file extension, for exampled ```` in html, rather than the go template comment...

As the title says, I am not getting syntax highlighting in files that start with the suggested `Go Template` comment. I tried both `{{- /* Go Template */ -}}` and...

I have a code similar to this: ``` html {{with .Warning}} // do something with {{.}} {{end}} ``` inside a Go template file, and there are 2 errors in {{with...