├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── azure-pipelines.yml ├── media ├── demo.png └── icon.png ├── package.json ├── src ├── calls │ ├── index.ts │ └── model.ts ├── extension.ts ├── highlights.ts ├── navigation.ts ├── references-view.d.ts ├── references │ ├── index.ts │ └── model.ts ├── tree.ts ├── types │ ├── index.ts │ └── model.ts └── utils.ts ├── tsconfig.json └── vscode.d.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /media/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/media/demo.png -------------------------------------------------------------------------------- /media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/media/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/package.json -------------------------------------------------------------------------------- /src/calls/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/src/calls/index.ts -------------------------------------------------------------------------------- /src/calls/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/src/calls/model.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/highlights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/src/highlights.ts -------------------------------------------------------------------------------- /src/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/src/navigation.ts -------------------------------------------------------------------------------- /src/references-view.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/src/references-view.d.ts -------------------------------------------------------------------------------- /src/references/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/src/references/index.ts -------------------------------------------------------------------------------- /src/references/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/src/references/model.ts -------------------------------------------------------------------------------- /src/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/src/tree.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/src/types/model.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vscode.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-references-view/HEAD/vscode.d.ts --------------------------------------------------------------------------------