https://github.com/sgruendel/vscode-extension-thymeleaf-navigate
VS Code Extension to navigate Thymeleaf 3 fragments
https://github.com/sgruendel/vscode-extension-thymeleaf-navigate
java thymeleaf thymeleaf-template-engine vscode vscode-extension
Last synced: 3 months ago
JSON representation
VS Code Extension to navigate Thymeleaf 3 fragments
- Host: GitHub
- URL: https://github.com/sgruendel/vscode-extension-thymeleaf-navigate
- Owner: sgruendel
- License: gpl-3.0
- Created: 2023-12-31T09:32:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2026-04-03T07:30:11.000Z (3 months ago)
- Last Synced: 2026-04-03T14:08:57.085Z (3 months ago)
- Topics: java, thymeleaf, thymeleaf-template-engine, vscode, vscode-extension
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=sgruendel.thymeleaf-navigate
- Size: 1.82 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# thymeleaf-navigate README
A VS Code extension to navigate Thymeleaf 3 fragments in text files like HTML or XML.
## Features
Fragment definitions like `
` are recognized in text files.
Fragment expressions referencing those definitions like
`` are then recognized and made navigable via
`Ctrl+Click`.

## Requirements
Thymeleaf syntax before version 3 is not supported.
## Extension Settings
- `thymeleaf-navigate.language`: Language mode for Thymeleaf files, e.g. "html" or "xml"; defaults to "html".
- `thymeleaf-navigate.fragmentsPath`: Path to search for Thymeleaf fragments, defaults to "src/main/resources/templates".
## Known Issues
Fragment links to files not opened before might not navigate to the fragment definition's line on the first time.
Fragment selectors using CSS selectors like `
` are not supported.
Dynamic fragment selectors like `
` are not supported.
## Release Notes
### 1.3.1
Recognize expressions without selector [#5](https://github.com/sgruendel/vscode-extension-thymeleaf-navigate/issues/5)
### 1.3.0
Recognize multi-line Fragment Selectors [#1](https://github.com/sgruendel/vscode-extension-thymeleaf-navigate/issues/1)
Fix referencing current template via 'this::' [#4](https://github.com/sgruendel/vscode-extension-thymeleaf-navigate/issues/4)
### 1.2.0
Add tooltips to links.
Separate links to file defining fragment and fragment itself.
### 1.1.0
Add settings for language and fragments path.
### 1.0.4
Initial release