├── .eslintrc.json ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── images └── icon.png ├── package.json ├── src ├── common │ └── css-class-definition.ts ├── extension.ts ├── fetcher.ts ├── notifier.ts ├── parse-engine-gateway.ts ├── parse-engines │ ├── common │ │ ├── css-class-extractor.ts │ │ ├── parse-engine.ts │ │ └── simple-text-document.ts │ ├── parse-engine-registry.ts │ └── types │ │ ├── css-parse-engine.ts │ │ └── html-parse-engine.ts └── test │ ├── runTest.ts │ └── suite │ ├── extension.test.ts │ └── index.ts ├── tsconfig.json └── vsc-extension-quickstart.md /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/README.md -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/images/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/package.json -------------------------------------------------------------------------------- /src/common/css-class-definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/src/common/css-class-definition.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/src/fetcher.ts -------------------------------------------------------------------------------- /src/notifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/src/notifier.ts -------------------------------------------------------------------------------- /src/parse-engine-gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/src/parse-engine-gateway.ts -------------------------------------------------------------------------------- /src/parse-engines/common/css-class-extractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/src/parse-engines/common/css-class-extractor.ts -------------------------------------------------------------------------------- /src/parse-engines/common/parse-engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/src/parse-engines/common/parse-engine.ts -------------------------------------------------------------------------------- /src/parse-engines/common/simple-text-document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/src/parse-engines/common/simple-text-document.ts -------------------------------------------------------------------------------- /src/parse-engines/parse-engine-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/src/parse-engines/parse-engine-registry.ts -------------------------------------------------------------------------------- /src/parse-engines/types/css-parse-engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/src/parse-engines/types/css-parse-engine.ts -------------------------------------------------------------------------------- /src/parse-engines/types/html-parse-engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/src/parse-engines/types/html-parse-engine.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zignd/HTML-CSS-Class-Completion/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------