pohung Huang
pohung Huang

Reputation: 11

Which vscode API provide functionality like "Find all reference", and allowed implemented in my vscode extension?

I am now working out a plugin which shows events information of static code analysis defect. My ideal user interface to present looks like "Find all reference", (please refer below picture). It supposed shows the list of event in right panel, and while click on one of event, it will move focus of source code panel on left.

click on "find all reference" in context menu will display like this.

But the problem now is that I can't find which existing vscode API I can use or find any useful information by google or from VSCode extension development document. Could any one help?

Upvotes: 1

Views: 1238

Answers (1)

Mike Lischke
Mike Lischke

Reputation: 53307

The best place to learn about available APIs is the vscode namespace API page. There is a ReferenceProvider class which might be what you are looking for.

Upvotes: 2

Related Questions