├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── dependabot.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── client ├── package-lock.json ├── package.json ├── src │ ├── client.ts │ ├── configuration.ts │ ├── constants.ts │ ├── extension.ts │ ├── interfaces.ts │ ├── js-beautify │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── js │ │ │ ├── bin │ │ │ │ ├── css-beautify.js │ │ │ │ ├── html-beautify.js │ │ │ │ └── js-beautify.js │ │ │ ├── config │ │ │ │ └── defaults.json │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── beautifier.js │ │ │ │ ├── beautifier.js.map │ │ │ │ ├── beautifier.min.js │ │ │ │ ├── beautifier.min.js.map │ │ │ │ ├── beautify-css.js │ │ │ │ ├── beautify-html.js │ │ │ │ ├── beautify.js │ │ │ │ ├── cli.js │ │ │ │ └── unpackers │ │ │ │ │ ├── javascriptobfuscator_unpacker.js │ │ │ │ │ ├── myobfuscate_unpacker.js │ │ │ │ │ ├── p_a_c_k_e_r_unpacker.js │ │ │ │ │ └── urlencode_unpacker.js │ │ │ └── src │ │ │ │ ├── cli.js │ │ │ │ ├── core │ │ │ │ ├── directives.js │ │ │ │ ├── inputscanner.js │ │ │ │ ├── options.js │ │ │ │ ├── output.js │ │ │ │ ├── pattern.js │ │ │ │ ├── templatablepattern.js │ │ │ │ ├── token.js │ │ │ │ ├── tokenizer.js │ │ │ │ ├── tokenstream.js │ │ │ │ └── whitespacepattern.js │ │ │ │ ├── css │ │ │ │ ├── beautifier.js │ │ │ │ ├── index.js │ │ │ │ ├── options.js │ │ │ │ └── tokenizer.js │ │ │ │ ├── html │ │ │ │ ├── beautifier.js │ │ │ │ ├── index.js │ │ │ │ ├── options.js │ │ │ │ └── tokenizer.js │ │ │ │ ├── index.js │ │ │ │ ├── javascript │ │ │ │ ├── acorn.js │ │ │ │ ├── beautifier.js │ │ │ │ ├── index.js │ │ │ │ ├── options.js │ │ │ │ └── tokenizer.js │ │ │ │ └── unpackers │ │ │ │ ├── javascriptobfuscator_unpacker.js │ │ │ │ ├── myobfuscate_unpacker.js │ │ │ │ ├── p_a_c_k_e_r_unpacker.js │ │ │ │ └── urlencode_unpacker.js │ │ └── package.json │ ├── language │ │ ├── beautify.ts │ │ ├── configuration.ts │ │ ├── decoration.ts │ │ ├── documentLink.ts │ │ ├── formatter.ts │ │ └── hover.ts │ └── utils.ts └── tsconfig.json ├── extension-browser.webpack.config.js ├── extension.webpack.config.js ├── images ├── logo.png ├── netbeans-theme-preview.png ├── preview.gif └── settings-preview.png ├── language-configuration.json ├── package.json ├── server ├── package-lock.json ├── package.json ├── src │ ├── browser │ │ ├── htmlServerMain.ts │ │ └── htmlServerWorkerMain.ts │ ├── customData.ts │ ├── htmlServer.ts │ ├── languageModelCache.ts │ ├── modes │ │ ├── cssMode.ts │ │ ├── embeddedSupport.ts │ │ ├── formatting.ts │ │ ├── htmlFolding.ts │ │ ├── htmlMode.ts │ │ ├── javascriptLibs.ts │ │ ├── javascriptMode.ts │ │ ├── javascriptSemanticTokens.ts │ │ ├── languageModes.ts │ │ ├── selectionRanges.ts │ │ └── semanticTokens.ts │ ├── node │ │ ├── htmlServerMain.ts │ │ └── nodeFs.ts │ ├── requests.ts │ ├── test │ │ ├── completions.test.ts │ │ ├── documentContext.test.ts │ │ ├── embedded.test.ts │ │ ├── fixtures │ │ │ ├── expected │ │ │ │ ├── 19813-4spaces.html │ │ │ │ ├── 19813-tab.html │ │ │ │ ├── 19813.html │ │ │ │ └── 21634.html │ │ │ └── inputs │ │ │ │ ├── 19813.html │ │ │ │ └── 21634.html │ │ ├── folding.test.ts │ │ ├── formatting.test.ts │ │ ├── pathCompletionFixtures │ │ │ ├── .foo.js │ │ │ ├── about │ │ │ │ ├── about.css │ │ │ │ ├── about.html │ │ │ │ └── media │ │ │ │ │ └── icon.pic │ │ │ ├── index.html │ │ │ └── src │ │ │ │ ├── feature.js │ │ │ │ └── test.js │ │ ├── rename.test.ts │ │ ├── selectionRanges.test.ts │ │ ├── semanticTokens.test.ts │ │ └── words.test.ts │ └── utils │ │ ├── arrays.ts │ │ ├── documentContext.ts │ │ ├── positions.ts │ │ ├── runner.ts │ │ ├── strings.ts │ │ └── validation.ts └── tsconfig.json ├── snippets └── snippets.json ├── syntaxes └── smarty.tmLanguage.json ├── tsconfig.json └── tslint.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | ko_fi: aswinkumar863 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .vscode-test -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/package.json -------------------------------------------------------------------------------- /client/src/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/client.ts -------------------------------------------------------------------------------- /client/src/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/configuration.ts -------------------------------------------------------------------------------- /client/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/constants.ts -------------------------------------------------------------------------------- /client/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/extension.ts -------------------------------------------------------------------------------- /client/src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/interfaces.ts -------------------------------------------------------------------------------- /client/src/js-beautify/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/CHANGELOG.md -------------------------------------------------------------------------------- /client/src/js-beautify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/LICENSE -------------------------------------------------------------------------------- /client/src/js-beautify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/README.md -------------------------------------------------------------------------------- /client/src/js-beautify/js/bin/css-beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/bin/css-beautify.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/bin/html-beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/bin/html-beautify.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/bin/js-beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/bin/js-beautify.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/config/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/config/defaults.json -------------------------------------------------------------------------------- /client/src/js-beautify/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/index.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/lib/beautifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/lib/beautifier.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/lib/beautifier.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/lib/beautifier.js.map -------------------------------------------------------------------------------- /client/src/js-beautify/js/lib/beautifier.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/lib/beautifier.min.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/lib/beautifier.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/lib/beautifier.min.js.map -------------------------------------------------------------------------------- /client/src/js-beautify/js/lib/beautify-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/lib/beautify-css.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/lib/beautify-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/lib/beautify-html.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/lib/beautify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/lib/beautify.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/lib/cli.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/lib/unpackers/javascriptobfuscator_unpacker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/lib/unpackers/javascriptobfuscator_unpacker.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/lib/unpackers/myobfuscate_unpacker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/lib/unpackers/myobfuscate_unpacker.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/lib/unpackers/p_a_c_k_e_r_unpacker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/lib/unpackers/p_a_c_k_e_r_unpacker.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/lib/unpackers/urlencode_unpacker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/lib/unpackers/urlencode_unpacker.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/cli.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/core/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/core/directives.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/core/inputscanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/core/inputscanner.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/core/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/core/options.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/core/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/core/output.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/core/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/core/pattern.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/core/templatablepattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/core/templatablepattern.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/core/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/core/token.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/core/tokenizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/core/tokenizer.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/core/tokenstream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/core/tokenstream.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/core/whitespacepattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/core/whitespacepattern.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/css/beautifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/css/beautifier.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/css/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/css/index.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/css/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/css/options.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/css/tokenizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/css/tokenizer.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/html/beautifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/html/beautifier.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/html/index.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/html/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/html/options.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/html/tokenizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/html/tokenizer.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/index.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/javascript/acorn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/javascript/acorn.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/javascript/beautifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/javascript/beautifier.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/javascript/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/javascript/index.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/javascript/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/javascript/options.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/javascript/tokenizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/javascript/tokenizer.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/unpackers/javascriptobfuscator_unpacker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/unpackers/javascriptobfuscator_unpacker.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/unpackers/myobfuscate_unpacker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/unpackers/myobfuscate_unpacker.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/unpackers/p_a_c_k_e_r_unpacker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/unpackers/p_a_c_k_e_r_unpacker.js -------------------------------------------------------------------------------- /client/src/js-beautify/js/src/unpackers/urlencode_unpacker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/js/src/unpackers/urlencode_unpacker.js -------------------------------------------------------------------------------- /client/src/js-beautify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/js-beautify/package.json -------------------------------------------------------------------------------- /client/src/language/beautify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/language/beautify.ts -------------------------------------------------------------------------------- /client/src/language/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/language/configuration.ts -------------------------------------------------------------------------------- /client/src/language/decoration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/language/decoration.ts -------------------------------------------------------------------------------- /client/src/language/documentLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/language/documentLink.ts -------------------------------------------------------------------------------- /client/src/language/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/language/formatter.ts -------------------------------------------------------------------------------- /client/src/language/hover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/language/hover.ts -------------------------------------------------------------------------------- /client/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/src/utils.ts -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /extension-browser.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/extension-browser.webpack.config.js -------------------------------------------------------------------------------- /extension.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/extension.webpack.config.js -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/netbeans-theme-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/images/netbeans-theme-preview.png -------------------------------------------------------------------------------- /images/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/images/preview.gif -------------------------------------------------------------------------------- /images/settings-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/images/settings-preview.png -------------------------------------------------------------------------------- /language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/language-configuration.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/package.json -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/browser/htmlServerMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/browser/htmlServerMain.ts -------------------------------------------------------------------------------- /server/src/browser/htmlServerWorkerMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/browser/htmlServerWorkerMain.ts -------------------------------------------------------------------------------- /server/src/customData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/customData.ts -------------------------------------------------------------------------------- /server/src/htmlServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/htmlServer.ts -------------------------------------------------------------------------------- /server/src/languageModelCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/languageModelCache.ts -------------------------------------------------------------------------------- /server/src/modes/cssMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/modes/cssMode.ts -------------------------------------------------------------------------------- /server/src/modes/embeddedSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/modes/embeddedSupport.ts -------------------------------------------------------------------------------- /server/src/modes/formatting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/modes/formatting.ts -------------------------------------------------------------------------------- /server/src/modes/htmlFolding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/modes/htmlFolding.ts -------------------------------------------------------------------------------- /server/src/modes/htmlMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/modes/htmlMode.ts -------------------------------------------------------------------------------- /server/src/modes/javascriptLibs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/modes/javascriptLibs.ts -------------------------------------------------------------------------------- /server/src/modes/javascriptMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/modes/javascriptMode.ts -------------------------------------------------------------------------------- /server/src/modes/javascriptSemanticTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/modes/javascriptSemanticTokens.ts -------------------------------------------------------------------------------- /server/src/modes/languageModes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/modes/languageModes.ts -------------------------------------------------------------------------------- /server/src/modes/selectionRanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/modes/selectionRanges.ts -------------------------------------------------------------------------------- /server/src/modes/semanticTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/modes/semanticTokens.ts -------------------------------------------------------------------------------- /server/src/node/htmlServerMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/node/htmlServerMain.ts -------------------------------------------------------------------------------- /server/src/node/nodeFs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/node/nodeFs.ts -------------------------------------------------------------------------------- /server/src/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/requests.ts -------------------------------------------------------------------------------- /server/src/test/completions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/completions.test.ts -------------------------------------------------------------------------------- /server/src/test/documentContext.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/documentContext.test.ts -------------------------------------------------------------------------------- /server/src/test/embedded.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/embedded.test.ts -------------------------------------------------------------------------------- /server/src/test/fixtures/expected/19813-4spaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/fixtures/expected/19813-4spaces.html -------------------------------------------------------------------------------- /server/src/test/fixtures/expected/19813-tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/fixtures/expected/19813-tab.html -------------------------------------------------------------------------------- /server/src/test/fixtures/expected/19813.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/fixtures/expected/19813.html -------------------------------------------------------------------------------- /server/src/test/fixtures/expected/21634.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/fixtures/expected/21634.html -------------------------------------------------------------------------------- /server/src/test/fixtures/inputs/19813.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/fixtures/inputs/19813.html -------------------------------------------------------------------------------- /server/src/test/fixtures/inputs/21634.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/fixtures/inputs/21634.html -------------------------------------------------------------------------------- /server/src/test/folding.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/folding.test.ts -------------------------------------------------------------------------------- /server/src/test/formatting.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/formatting.test.ts -------------------------------------------------------------------------------- /server/src/test/pathCompletionFixtures/.foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/pathCompletionFixtures/.foo.js -------------------------------------------------------------------------------- /server/src/test/pathCompletionFixtures/about/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/pathCompletionFixtures/about/about.css -------------------------------------------------------------------------------- /server/src/test/pathCompletionFixtures/about/about.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/src/test/pathCompletionFixtures/about/media/icon.pic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/pathCompletionFixtures/about/media/icon.pic -------------------------------------------------------------------------------- /server/src/test/pathCompletionFixtures/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/src/test/pathCompletionFixtures/src/feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/pathCompletionFixtures/src/feature.js -------------------------------------------------------------------------------- /server/src/test/pathCompletionFixtures/src/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/pathCompletionFixtures/src/test.js -------------------------------------------------------------------------------- /server/src/test/rename.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/rename.test.ts -------------------------------------------------------------------------------- /server/src/test/selectionRanges.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/selectionRanges.test.ts -------------------------------------------------------------------------------- /server/src/test/semanticTokens.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/semanticTokens.test.ts -------------------------------------------------------------------------------- /server/src/test/words.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/test/words.test.ts -------------------------------------------------------------------------------- /server/src/utils/arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/utils/arrays.ts -------------------------------------------------------------------------------- /server/src/utils/documentContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/utils/documentContext.ts -------------------------------------------------------------------------------- /server/src/utils/positions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/utils/positions.ts -------------------------------------------------------------------------------- /server/src/utils/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/utils/runner.ts -------------------------------------------------------------------------------- /server/src/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/utils/strings.ts -------------------------------------------------------------------------------- /server/src/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/src/utils/validation.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /snippets/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/snippets/snippets.json -------------------------------------------------------------------------------- /syntaxes/smarty.tmLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/syntaxes/smarty.tmLanguage.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aswinkumar863/smarty-vscode-support/HEAD/tslint.json --------------------------------------------------------------------------------