Feature: add redirection links to antigravity via the vscode://file protocol.
Nuxt DevTools does not redirect to Antigravity Editor when clicking files/lines
Context
When using Nuxt DevTools, file/line redirection links (e.g. stack traces, components, pages) only work with VSCode, via the vscode://file protocol.
The Antigravity Editor does not handle this protocol, so the redirection simply does nothing.
Current behavior
-
Click a file/line link in Nuxt DevTools
-
Nothing happens when Antigravity is the active editor
Expected behavior
-
Antigravity opens the correct file at the specified line
-
Or at least provides a configurable editor fallback
Likely technical cause
Lack of support for:
-
vscode://file -
file:// -
or a custom protocol (e.g.
antigravity://file?path=...&line=...)
Suggested solutions
-
Add support for
vscode://file -
Or register a custom Antigravity protocol
-
Or allow configuring an external editor via CLI or config
Impact
-
Broken DX flow for Nuxt and vue users
-
Forces developers to keep VSCode as a “bridge editor” only for debugging