├── .gitignore ├── .travis.yml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── img ├── demo.gif ├── icon.png ├── r0.5.0 │ ├── example_highlight.png │ └── example_inner.png ├── r0.6.0 │ └── new_active_indent.png └── r0.7.0 │ ├── hover_with_highlight.png │ └── hover_without_highlight.png ├── package.json ├── src └── extension.ts ├── test-fixtures └── demo │ └── demo.ts ├── test ├── runTest.ts └── suite │ ├── extension.test.ts │ └── index.ts ├── tsconfig.json └── vsc-extension-quickstart.md /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | .vscode-test 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/README.md -------------------------------------------------------------------------------- /img/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/img/demo.gif -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/img/icon.png -------------------------------------------------------------------------------- /img/r0.5.0/example_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/img/r0.5.0/example_highlight.png -------------------------------------------------------------------------------- /img/r0.5.0/example_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/img/r0.5.0/example_inner.png -------------------------------------------------------------------------------- /img/r0.6.0/new_active_indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/img/r0.6.0/new_active_indent.png -------------------------------------------------------------------------------- /img/r0.7.0/hover_with_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/img/r0.7.0/hover_with_highlight.png -------------------------------------------------------------------------------- /img/r0.7.0/hover_without_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/img/r0.7.0/hover_without_highlight.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/package.json -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/src/extension.ts -------------------------------------------------------------------------------- /test-fixtures/demo/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/test-fixtures/demo/demo.ts -------------------------------------------------------------------------------- /test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/test/runTest.ts -------------------------------------------------------------------------------- /test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/test/suite/extension.test.ts -------------------------------------------------------------------------------- /test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/test/suite/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirTori/indenticator/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------