├── .eslintrc.json ├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── autopilot-vsc.gif ├── how-to-dashboard-copy.png ├── install.png ├── package.json ├── plain-to-explained.png ├── s-logo.png ├── src ├── CodeLensProvider.ts ├── comment.ts ├── extension.ts ├── test │ ├── runTest.ts │ └── suite │ │ ├── extension.test.ts │ │ └── index.ts └── utils.ts ├── steno-error.png ├── tsconfig.json ├── vsc-extension-quickstart.md ├── vsc-http-sys-cert.png └── webpack.config.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/SECURITY.md -------------------------------------------------------------------------------- /autopilot-vsc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/autopilot-vsc.gif -------------------------------------------------------------------------------- /how-to-dashboard-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/how-to-dashboard-copy.png -------------------------------------------------------------------------------- /install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/install.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/package.json -------------------------------------------------------------------------------- /plain-to-explained.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/plain-to-explained.png -------------------------------------------------------------------------------- /s-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/s-logo.png -------------------------------------------------------------------------------- /src/CodeLensProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/src/CodeLensProvider.ts -------------------------------------------------------------------------------- /src/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/src/comment.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/src/utils.ts -------------------------------------------------------------------------------- /steno-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/steno-error.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /vsc-http-sys-cert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/vsc-http-sys-cert.png -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StenographyDev/autopilot-vsc/HEAD/webpack.config.js --------------------------------------------------------------------------------