├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── img └── demo.gif ├── package.json ├── src ├── extension.ts ├── gen.ts ├── helloworld.ts ├── jump.ts └── test │ ├── runTest.ts │ └── suite │ ├── extension.test.ts │ └── index.ts ├── tsconfig.json ├── tslint.json └── vsc-extension-quickstart.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | out 3 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/README.md -------------------------------------------------------------------------------- /img/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/img/demo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/package.json -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/src/gen.ts -------------------------------------------------------------------------------- /src/helloworld.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/src/helloworld.ts -------------------------------------------------------------------------------- /src/jump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/src/jump.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/tslint.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lijunchen/vscode-cpython-explorer/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------