Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Diagnostics TransporterNew to Visual Studio Code? Get it now.
Diagnostics Transporter

Diagnostics Transporter

westpaddy

|
39 installs
| (0) | Free
Transport diagnostics to another URI.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

The diagnostics transporter extension can copy diagnostics from one place to another. This is helpful if your development involves a file preprocessing stage that a language support extension does not expect. In that case, the extension reports diagnostics for an intermediate file resulting from preprocessing, not the original file. This makes it hard to find where the problem is in the original file. Let's now copy the diagnostics back to the original file you are working on!

Settings

diag-trans.pathReplacer

Dictionary of a regular expression and a replacer string pairs, which is used to replace the path part of the URI of a diagnostic. The diagnostic for the original URI is transferred to the replaced URI.

For instance, specifying the key-value pair \\.txt$ and .org transfers diagnostics for ./foo.txt to ./foo.org.

The replacement uses String.prototype.replace() in JavaScript. Please refer to the syntax of regular expressions and replacers on the document.

FAQ

Diagnostics are duplicated

This will happen if some extension produces the same diagnostics for both transfer source and target files. For instance, using a spell checker extension will cause the problem. In that case, simply stop the extension for source files, which will not cause inconvenience since your working files should be the target files.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft