├── .gitignore ├── .travis.yml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── custom_typings ├── openurl.d.ts └── serialize-error.d.ts ├── images ├── demo.gif └── icon.png ├── package.json ├── src ├── documenter.ts ├── extension.ts ├── languageServiceHost.ts └── utilities.ts ├── test └── largeFile.ts ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | .vscode/.browse* 4 | npm-debug.log -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/README.md -------------------------------------------------------------------------------- /custom_typings/openurl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/custom_typings/openurl.d.ts -------------------------------------------------------------------------------- /custom_typings/serialize-error.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/custom_typings/serialize-error.d.ts -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/images/demo.gif -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/images/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/package.json -------------------------------------------------------------------------------- /src/documenter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/src/documenter.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/languageServiceHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/src/languageServiceHost.ts -------------------------------------------------------------------------------- /src/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/src/utilities.ts -------------------------------------------------------------------------------- /test/largeFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/test/largeFile.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelday/vscode-docthis/HEAD/tslint.json --------------------------------------------------------------------------------