Files
vscode-extension-samples/contentprovider-sample
Matt Bierner 42e83bf2f3 Bump eslint versions and update lint scripts
Pick up latest eslint to avoid a nasty warning about using an unsupported version of TS

Also updates the eslint script to be more scoped on which files it checks
2022-11-04 13:52:32 -07:00
..
2020-05-29 14:20:07 -07:00
2021-11-16 23:06:45 +09:00
2020-05-29 14:13:32 -07:00
2016-05-20 16:52:16 +02:00
2016-12-30 11:17:41 +01:00
2021-02-22 09:58:22 -08:00
2022-02-28 13:45:21 -08:00

References Editor Sample

This is a sample extension that shows how an editor-based representation for the Find References feature can be build.

It is not intended as a product quality extension.

  • Select a symbol
  • Select F1 > Show All References
  • An editor opens to the side and show the references in a textual form

Print References

How it works, what it shows?

  • The extension implements and registers a TextDocumentContentProvider for a particular URI scheme.
  • The content provider uses the vscode.executeReferenceProvider-API command to delegate searching for references to the language extensions, like TypeScript, vscode-go, or C#
  • The generated document initially contains a caption only and incrementally updates as each reference location is resolved.
  • Add links for each result in the virtual document pointing to the reference.
  • Add an entry to editor context menu via package.json

How to run locally

  • npm run compile to start the compiler in watch mode
  • open this folder in VS Code and press F5