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

Go Template Syntax Highlight Support for VSCode.

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

In this pull request, I revised `{{ /* Go Template */ }}` to `{{- /* Go Template */ -}}` in the README description, aligning it with the content in the...

Version: `v0.2.1` VS Code: `1.84.2` Settings: ```json { "go-template.languages": [ "toml" ], "go-template.patterns": [ "**/*.toml" ] } ``` No highlight (

When I open any given *.tmpl file the HTML is not highlighted. I thought your extension is doing this? If no, what is the suggested way enabling both Go and...

If I search this (`jinliming2.vscode-go-template`) on [VS Codium](https://github.com/VSCodium/vscodium) it doesn't find it. Why?

The extension doesn't start. Runtime Status: 'configuration.semanticTokenType.description' must be defined and can not be empty Version: 1.61.0 Commit: ee8c7def80afc00dd6e593ef12f37756d8f504ea Date: 2021-10-07T18:11:58.853Z Electron: 13.5.1 Chrome: 91.0.4472.164 Node.js: 14.16.0 V8: 9.1.269.39-electron.0 OS:...

Hey, I am using this extension, and it works pretty nicely. However, I have certain problems. Inside of attributes, it does not work. Context: I am using [tailwind](https://tailwindcss.com/), which is...

I use HTML template. I have an embedded JS like: ``` var data = {{.Data | noescape}}; ``` So it's underlined red in VS code. Any way to solve it?...

Hi, Not sure if you're aware but there's also an independent, open source, extensions registry called [Open VSX](https://open-vsx.org/) It's used for OSS builds of vs-code that aren't allowed to use...

Go's template package allows setting custom start/end delimiters (ie. `[[ range .Address ]]` instead of `{{ range .Address }}` . Recently started working with a project that utilizes `[[` and...