├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── build-release.yaml │ └── ci.yaml ├── .gitignore ├── .prettierrc.json ├── .vscode ├── launch.json └── settings.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── language-configuration.json ├── package.json ├── src ├── custom-client.ts └── main.ts ├── syntaxes └── templ.tmLanguage.json ├── templ.png ├── tests ├── JavaScript.tmLanguage.json ├── css.tmLanguage.json ├── go.tmLanguage.json └── snap │ ├── basic_features.templ │ ├── basic_features.templ.snap │ ├── complex_attributes.templ │ ├── complex_attributes.templ.snap │ ├── complex_syntax.templ │ ├── complex_syntax.templ.snap │ ├── css_usage.templ │ ├── css_usage.templ.snap │ ├── struct_receivers.templ │ └── struct_receivers.templ.snap ├── tsconfig.json ├── vsc-extension-quickstart.md └── webpack.config.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/.github/workflows/build-release.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.vsix 3 | dist 4 | .DS_Store -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/README.md -------------------------------------------------------------------------------- /language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/language-configuration.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/package.json -------------------------------------------------------------------------------- /src/custom-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/src/custom-client.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/src/main.ts -------------------------------------------------------------------------------- /syntaxes/templ.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/syntaxes/templ.tmLanguage.json -------------------------------------------------------------------------------- /templ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/templ.png -------------------------------------------------------------------------------- /tests/JavaScript.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/tests/JavaScript.tmLanguage.json -------------------------------------------------------------------------------- /tests/css.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/tests/css.tmLanguage.json -------------------------------------------------------------------------------- /tests/go.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/tests/go.tmLanguage.json -------------------------------------------------------------------------------- /tests/snap/basic_features.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/tests/snap/basic_features.templ -------------------------------------------------------------------------------- /tests/snap/basic_features.templ.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/tests/snap/basic_features.templ.snap -------------------------------------------------------------------------------- /tests/snap/complex_attributes.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/tests/snap/complex_attributes.templ -------------------------------------------------------------------------------- /tests/snap/complex_attributes.templ.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/tests/snap/complex_attributes.templ.snap -------------------------------------------------------------------------------- /tests/snap/complex_syntax.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/tests/snap/complex_syntax.templ -------------------------------------------------------------------------------- /tests/snap/complex_syntax.templ.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/tests/snap/complex_syntax.templ.snap -------------------------------------------------------------------------------- /tests/snap/css_usage.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/tests/snap/css_usage.templ -------------------------------------------------------------------------------- /tests/snap/css_usage.templ.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/tests/snap/css_usage.templ.snap -------------------------------------------------------------------------------- /tests/snap/struct_receivers.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/tests/snap/struct_receivers.templ -------------------------------------------------------------------------------- /tests/snap/struct_receivers.templ.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/tests/snap/struct_receivers.templ.snap -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/templ-go/templ-vscode/HEAD/webpack.config.js --------------------------------------------------------------------------------