A VS Code extension that helps you jump straight to your project’s YAML entity definitions or SQL view definitions with a single command.
Features
YAML Definitions
Scan all cmd/tms/definition/types/**/*.{yml,yaml} files and build an index of repository.entityTypes.
From any open editor, invoke “Open Definition” to:
Select or place your cursor on an entity name (or type it if nothing is selected).
Instantly open the YAML file and scroll to the matching - name: … with its database: block.
SQL View Definitions
Scan all cmd/tms/sql/migrations/*.up.sql files for CREATE VIEW statements.
Always picks the highest‑numbered migration file for each view.
Invoke “Open View Definition” to:
Select or place your cursor on a view name (or type it if nothing is selected).
Open the correct .up.sql and scroll to the CREATE VIEW … line.