├── .devcontainer ├── README.md ├── cache │ ├── .gitignore │ ├── before-cache.sh │ ├── build-cache-image.sh │ ├── cache-diff.sh │ ├── cache.Dockerfile │ └── restore-diff.sh ├── devcontainer.json └── prepare.sh ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── calendar.yml ├── classifier.json ├── commands.json ├── commands.yml ├── endgame │ └── insiders.yml ├── insiders.yml ├── pull_request_template.md ├── similarity.yml ├── subscribers.json └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .mailmap ├── .mention-bot ├── .vscode ├── cglicenses.schema.json ├── cgmanifest.schema.json ├── extensions.json ├── launch.json ├── notebooks │ ├── api.github-issues │ ├── endgame.github-issues │ ├── grooming-delta.github-issues │ ├── grooming.github-issues │ ├── inbox.github-issues │ ├── my-endgame.github-issues │ ├── my-work.github-issues │ ├── papercuts.github-issues │ └── verification.github-issues ├── searches │ ├── TrustedTypes.code-search │ └── ts36031.code-search ├── settings.json ├── shared.code-snippets └── tasks.json ├── .yarnrc ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.txt ├── cglicenses.json ├── cgmanifest.json ├── extensions ├── bat │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── snippets │ │ └── batchfile.code-snippets │ ├── syntaxes │ │ └── batchfile.tmLanguage.json │ └── yarn.lock ├── cgmanifest.json ├── clojure │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── clojure.tmLanguage.json │ └── yarn.lock ├── coffeescript │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── snippets │ │ └── coffeescript.code-snippets │ ├── syntaxes │ │ └── coffeescript.tmLanguage.json │ └── yarn.lock ├── configuration-editing │ ├── .vscodeignore │ ├── build │ │ ├── inline-allOf.ts │ │ └── tsconfig.json │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── images │ │ └── icon.png │ ├── package.json │ ├── package.nls.json │ ├── schemas │ │ ├── attachContainer.schema.json │ │ ├── devContainer.schema.generated.json │ │ └── devContainer.schema.src.json │ ├── src │ │ ├── configurationEditingMain.ts │ │ ├── extensionsProposals.ts │ │ ├── settingsDocumentHelper.ts │ │ └── typings │ │ │ └── ref.d.ts │ ├── tsconfig.json │ └── yarn.lock ├── cpp │ ├── .vscodeignore │ ├── build │ │ └── update-grammars.js │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── snippets │ │ ├── c.code-snippets │ │ └── cpp.code-snippets │ ├── syntaxes │ │ ├── c.tmLanguage.json │ │ ├── cpp.embedded.macro.tmLanguage.json │ │ ├── cpp.tmLanguage.json │ │ ├── cuda-cpp.tmLanguage.json │ │ └── platform.tmLanguage.json │ └── yarn.lock ├── csharp │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── snippets │ │ └── csharp.code-snippets │ ├── syntaxes │ │ └── csharp.tmLanguage.json │ └── yarn.lock ├── css-language-features │ ├── .vscode │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── CONTRIBUTING.md │ ├── README.md │ ├── client │ │ ├── src │ │ │ ├── browser │ │ │ │ └── cssClientMain.ts │ │ │ ├── cssClient.ts │ │ │ ├── customData.ts │ │ │ ├── node │ │ │ │ ├── cssClientMain.ts │ │ │ │ └── nodeFs.ts │ │ │ ├── requests.ts │ │ │ └── typings │ │ │ │ └── ref.d.ts │ │ └── tsconfig.json │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── icons │ │ └── css.png │ ├── package.json │ ├── package.nls.json │ ├── schemas │ │ └── package.schema.json │ ├── server │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── extension-browser.webpack.config.js │ │ ├── extension.webpack.config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── browser │ │ │ │ └── cssServerMain.ts │ │ │ ├── cssServer.ts │ │ │ ├── customData.ts │ │ │ ├── languageModelCache.ts │ │ │ ├── node │ │ │ │ ├── cssServerMain.ts │ │ │ │ └── nodeFs.ts │ │ │ ├── requests.ts │ │ │ ├── test │ │ │ │ ├── completion.test.ts │ │ │ │ └── links.test.ts │ │ │ └── utils │ │ │ │ ├── documentContext.ts │ │ │ │ ├── runner.ts │ │ │ │ └── strings.ts │ │ ├── test │ │ │ ├── index.js │ │ │ ├── linksTestFixtures │ │ │ │ ├── .gitignore │ │ │ │ └── node_modules │ │ │ │ │ └── foo │ │ │ │ │ └── package.json │ │ │ └── pathCompletionFixtures │ │ │ │ ├── .foo.js │ │ │ │ ├── about │ │ │ │ ├── about.css │ │ │ │ └── about.html │ │ │ │ ├── index.html │ │ │ │ ├── scss │ │ │ │ ├── _foo.scss │ │ │ │ └── main.scss │ │ │ │ └── src │ │ │ │ ├── data │ │ │ │ └── foo.asar │ │ │ │ ├── feature.js │ │ │ │ └── test.js │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── test │ │ └── mocha.opts │ └── yarn.lock ├── css │ ├── .vscode │ │ └── launch.json │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── css.tmLanguage.json │ └── yarn.lock ├── dart │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ └── syntaxes │ │ └── dart.tmLanguage.json ├── debug-auto-launch │ ├── .vscode │ │ └── launch.json │ ├── .vscodeignore │ ├── extension.webpack.config.js │ ├── media │ │ └── icon.png │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── extension.ts │ │ └── typings │ │ │ └── ref.d.ts │ ├── tsconfig.json │ └── yarn.lock ├── debug-server-ready │ ├── .vscode │ │ └── launch.json │ ├── .vscodeignore │ ├── extension.webpack.config.js │ ├── media │ │ └── icon.png │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── extension.ts │ │ └── typings │ │ │ └── ref.d.ts │ ├── tsconfig.json │ └── yarn.lock ├── docker │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── docker.tmLanguage.json │ └── yarn.lock ├── emmet │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── .vscodeignore │ ├── CONTRIBUTING.md │ ├── README.md │ ├── cgmanifest.json │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── images │ │ └── icon.png │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── abbreviationActions.ts │ │ ├── balance.ts │ │ ├── browser │ │ │ └── emmetBrowserMain.ts │ │ ├── bufferStream.ts │ │ ├── defaultCompletionProvider.ts │ │ ├── editPoint.ts │ │ ├── emmetCommon.ts │ │ ├── evaluateMathExpression.ts │ │ ├── imageSizeHelper.ts │ │ ├── incrementDecrement.ts │ │ ├── locateFile.ts │ │ ├── matchTag.ts │ │ ├── mergeLines.ts │ │ ├── node │ │ │ └── emmetNodeMain.ts │ │ ├── parseDocument.ts │ │ ├── reflectCssValue.ts │ │ ├── removeTag.ts │ │ ├── selectItem.ts │ │ ├── selectItemHTML.ts │ │ ├── selectItemStylesheet.ts │ │ ├── splitJoinTag.ts │ │ ├── test │ │ │ ├── abbreviationAction.test.ts │ │ │ ├── completion.test.ts │ │ │ ├── cssAbbreviationAction.test.ts │ │ │ ├── editPointSelectItemBalance.test.ts │ │ │ ├── evaluateMathExpression.test.ts │ │ │ ├── incrementDecrement.test.ts │ │ │ ├── index.ts │ │ │ ├── partialParsingStylesheet.test.ts │ │ │ ├── reflectCssValue.test.ts │ │ │ ├── tagActions.test.ts │ │ │ ├── testUtils.ts │ │ │ ├── toggleComment.test.ts │ │ │ ├── updateImageSize.test.ts │ │ │ └── wrapWithAbbreviation.test.ts │ │ ├── toggleComment.ts │ │ ├── typings │ │ │ ├── EmmetFlatNode.d.ts │ │ │ ├── EmmetNode.d.ts │ │ │ ├── emmetio__css-parser.d.ts │ │ │ ├── emmetio__html-matcher.d.ts │ │ │ ├── image-size.d.ts │ │ │ └── refs.d.ts │ │ ├── updateImageSize.ts │ │ ├── updateTag.ts │ │ └── util.ts │ ├── test-workspace │ │ └── .vscode │ │ │ └── settings.json │ ├── tsconfig.json │ └── yarn.lock ├── extension-editing │ ├── .vscodeignore │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── images │ │ └── icon.png │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── extensionEditingBrowserMain.ts │ │ ├── extensionEditingMain.ts │ │ ├── extensionLinter.ts │ │ ├── packageDocumentHelper.ts │ │ └── typings │ │ │ └── ref.d.ts │ ├── tsconfig.json │ └── yarn.lock ├── fsharp │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── snippets │ │ └── fsharp.code-snippets │ ├── syntaxes │ │ └── fsharp.tmLanguage.json │ └── yarn.lock ├── git │ ├── .vscodeignore │ ├── README.md │ ├── build │ │ ├── update-emoji.js │ │ └── update-grammars.js │ ├── cgmanifest.json │ ├── extension.webpack.config.js │ ├── languages │ │ ├── diff.language-configuration.json │ │ ├── git-commit.language-configuration.json │ │ ├── git-rebase.language-configuration.json │ │ └── ignore.language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── resources │ │ ├── emojis.json │ │ └── icons │ │ │ ├── dark │ │ │ ├── status-added.svg │ │ │ ├── status-conflict.svg │ │ │ ├── status-copied.svg │ │ │ ├── status-deleted.svg │ │ │ ├── status-ignored.svg │ │ │ ├── status-modified.svg │ │ │ ├── status-renamed.svg │ │ │ └── status-untracked.svg │ │ │ ├── git.png │ │ │ └── light │ │ │ ├── status-added.svg │ │ │ ├── status-conflict.svg │ │ │ ├── status-copied.svg │ │ │ ├── status-deleted.svg │ │ │ ├── status-ignored.svg │ │ │ ├── status-modified.svg │ │ │ ├── status-renamed.svg │ │ │ └── status-untracked.svg │ ├── src │ │ ├── api │ │ │ ├── api1.ts │ │ │ ├── extension.ts │ │ │ └── git.d.ts │ │ ├── askpass-empty.sh │ │ ├── askpass-main.ts │ │ ├── askpass.sh │ │ ├── askpass.ts │ │ ├── autofetch.ts │ │ ├── commands.ts │ │ ├── decorationProvider.ts │ │ ├── decorators.ts │ │ ├── emoji.ts │ │ ├── encoding.ts │ │ ├── fileSystemProvider.ts │ │ ├── git.ts │ │ ├── ipc │ │ │ ├── ipcClient.ts │ │ │ └── ipcServer.ts │ │ ├── log.ts │ │ ├── main.ts │ │ ├── model.ts │ │ ├── protocolHandler.ts │ │ ├── pushError.ts │ │ ├── remoteProvider.ts │ │ ├── remoteSource.ts │ │ ├── repository.ts │ │ ├── staging.ts │ │ ├── statusbar.ts │ │ ├── terminal.ts │ │ ├── test │ │ │ ├── git.test.ts │ │ │ ├── index.ts │ │ │ └── smoke.test.ts │ │ ├── timelineProvider.ts │ │ ├── typings │ │ │ └── refs.d.ts │ │ ├── uri.ts │ │ ├── util.ts │ │ └── watch.ts │ ├── syntaxes │ │ ├── diff.tmLanguage.json │ │ ├── git-commit.tmLanguage.json │ │ ├── git-rebase.tmLanguage.json │ │ └── ignore.tmLanguage.json │ ├── test │ │ ├── colorize-fixtures │ │ │ ├── COMMIT_EDITMSG │ │ │ ├── example.diff │ │ │ └── git-rebase-todo │ │ ├── colorize-results │ │ │ ├── COMMIT_EDITMSG.json │ │ │ ├── example_diff.json │ │ │ └── git-rebase-todo.json │ │ └── mocha.opts │ ├── tsconfig.json │ └── yarn.lock ├── github-authentication │ ├── .gitignore │ ├── .vscodeignore │ ├── README.md │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── images │ │ └── icon.png │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── common │ │ │ ├── keychain.ts │ │ │ ├── logger.ts │ │ │ └── utils.ts │ │ ├── experimentationService.ts │ │ ├── extension.ts │ │ ├── github.ts │ │ ├── githubServer.ts │ │ └── typings │ │ │ └── ref.d.ts │ ├── tsconfig.json │ └── yarn.lock ├── github │ ├── .vscodeignore │ ├── README.md │ ├── extension.webpack.config.js │ ├── images │ │ └── icon.png │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── auth.ts │ │ ├── commands.ts │ │ ├── credentialProvider.ts │ │ ├── extension.ts │ │ ├── publish.ts │ │ ├── pushErrorHandler.ts │ │ ├── remoteSourceProvider.ts │ │ ├── typings │ │ │ ├── git.d.ts │ │ │ └── ref.d.ts │ │ └── util.ts │ ├── tsconfig.json │ └── yarn.lock ├── go │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── go.tmLanguage.json │ └── yarn.lock ├── groovy │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── snippets │ │ └── groovy.code-snippets │ ├── syntaxes │ │ └── groovy.tmLanguage.json │ └── yarn.lock ├── grunt │ ├── .vscodeignore │ ├── README.md │ ├── extension.webpack.config.js │ ├── images │ │ └── grunt.png │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── main.ts │ │ └── typings │ │ │ └── refs.d.ts │ ├── tsconfig.json │ └── yarn.lock ├── gulp │ ├── .vscodeignore │ ├── README.md │ ├── extension.webpack.config.js │ ├── images │ │ └── gulp.png │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── main.ts │ │ └── typings │ │ │ └── refs.d.ts │ ├── tsconfig.json │ └── yarn.lock ├── handlebars │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── Handlebars.tmLanguage.json │ └── yarn.lock ├── hlsl │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── hlsl.tmLanguage.json │ └── yarn.lock ├── html-language-features │ ├── .vscode │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── CONTRIBUTING.md │ ├── README.md │ ├── build │ │ └── bundleTypeScriptLibraries.js │ ├── cgmanifest.json │ ├── client │ │ ├── src │ │ │ ├── browser │ │ │ │ └── htmlClientMain.ts │ │ │ ├── customData.ts │ │ │ ├── htmlClient.ts │ │ │ ├── htmlEmptyTagsShared.ts │ │ │ ├── node │ │ │ │ ├── htmlClientMain.ts │ │ │ │ └── nodeFs.ts │ │ │ ├── requests.ts │ │ │ ├── tagClosing.ts │ │ │ └── typings │ │ │ │ └── ref.d.ts │ │ └── tsconfig.json │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── icons │ │ └── html.png │ ├── package.json │ ├── package.nls.json │ ├── schemas │ │ └── package.schema.json │ ├── server │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── build │ │ │ └── javaScriptLibraryLoader.js │ │ ├── extension-browser.webpack.config.js │ │ ├── extension.webpack.config.js │ │ ├── lib │ │ │ ├── cgmanifest.json │ │ │ └── jquery.d.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── browser │ │ │ │ └── htmlServerMain.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 │ │ ├── test │ │ │ └── index.js │ │ ├── tsconfig.json │ │ └── yarn.lock │ └── yarn.lock ├── html │ ├── .vscodeignore │ ├── build │ │ └── update-grammar.js │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ ├── html-derivative.tmLanguage.json │ │ └── html.tmLanguage.json │ └── yarn.lock ├── image-preview │ ├── .vscodeignore │ ├── README.md │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── icon.png │ ├── icon.svg │ ├── media │ │ ├── loading-dark.svg │ │ ├── loading-hc.svg │ │ ├── loading.svg │ │ ├── main.css │ │ └── main.js │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── binarySizeStatusBarEntry.ts │ │ ├── dispose.ts │ │ ├── extension.ts │ │ ├── ownedStatusBarEntry.ts │ │ ├── preview.ts │ │ ├── sizeStatusBarEntry.ts │ │ ├── typings │ │ │ └── ref.d.ts │ │ └── zoomStatusBarEntry.ts │ ├── tsconfig.json │ └── yarn.lock ├── ini │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── ini.language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── properties.language-configuration.json │ ├── syntaxes │ │ └── ini.tmLanguage.json │ └── yarn.lock ├── jake │ ├── .vscodeignore │ ├── README.md │ ├── extension.webpack.config.js │ ├── images │ │ └── cowboy_hat.png │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── main.ts │ │ └── typings │ │ │ └── refs.d.ts │ ├── tsconfig.json │ └── yarn.lock ├── java │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── snippets │ │ └── java.code-snippets │ ├── syntaxes │ │ └── java.tmLanguage.json │ └── yarn.lock ├── javascript │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── javascript-language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── snippets │ │ └── javascript.code-snippets │ ├── syntaxes │ │ ├── JavaScript.tmLanguage.json │ │ ├── JavaScriptReact.tmLanguage.json │ │ ├── Readme.md │ │ └── Regular Expressions (JavaScript).tmLanguage │ ├── tags-language-configuration.json │ └── yarn.lock ├── json-language-features │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── CONTRIBUTING.md │ ├── README.md │ ├── client │ │ ├── src │ │ │ ├── browser │ │ │ │ └── jsonClientMain.ts │ │ │ ├── jsonClient.ts │ │ │ ├── node │ │ │ │ └── jsonClientMain.ts │ │ │ ├── requests.ts │ │ │ ├── typings │ │ │ │ └── ref.d.ts │ │ │ └── utils │ │ │ │ └── hash.ts │ │ └── tsconfig.json │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── icons │ │ └── json.png │ ├── package.json │ ├── package.nls.json │ ├── server │ │ ├── .npmignore │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── bin │ │ │ └── vscode-json-languageserver │ │ ├── extension-browser.webpack.config.js │ │ ├── extension.webpack.config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── browser │ │ │ │ └── jsonServerMain.ts │ │ │ ├── jsonServer.ts │ │ │ ├── languageModelCache.ts │ │ │ ├── node │ │ │ │ └── jsonServerMain.ts │ │ │ ├── requests.ts │ │ │ └── utils │ │ │ │ ├── runner.ts │ │ │ │ └── strings.ts │ │ ├── test │ │ │ └── mocha.opts │ │ ├── tsconfig.json │ │ └── yarn.lock │ └── yarn.lock ├── json │ ├── .vscodeignore │ ├── build │ │ └── update-grammars.js │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ ├── JSON.tmLanguage.json │ │ └── JSONC.tmLanguage.json │ └── yarn.lock ├── julia │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ └── syntaxes │ │ └── julia.tmLanguage.json ├── less │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── less.tmLanguage.json │ └── yarn.lock ├── log │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── log.tmLanguage.json │ └── yarn.lock ├── lua │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── lua.tmLanguage.json │ └── yarn.lock ├── make │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── make.tmLanguage.json │ └── yarn.lock ├── markdown-basics │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── snippets │ │ └── markdown.code-snippets │ ├── syntaxes │ │ └── markdown.tmLanguage.json │ └── yarn.lock ├── markdown-language-features │ ├── .gitignore │ ├── .vscodeignore │ ├── README.md │ ├── esbuild.js │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── icon.png │ ├── media │ │ ├── highlight.css │ │ ├── markdown.css │ │ ├── preview-dark.svg │ │ └── preview-light.svg │ ├── notebook │ │ ├── index.ts │ │ └── tsconfig.json │ ├── package.json │ ├── package.nls.json │ ├── preview-src │ │ ├── activeLineMarker.ts │ │ ├── csp.ts │ │ ├── events.ts │ │ ├── index.ts │ │ ├── loading.ts │ │ ├── messaging.ts │ │ ├── pre.ts │ │ ├── scroll-sync.ts │ │ ├── settings.ts │ │ ├── strings.ts │ │ └── tsconfig.json │ ├── schemas │ │ └── package.schema.json │ ├── src │ │ ├── commandManager.ts │ │ ├── commands │ │ │ ├── index.ts │ │ │ ├── moveCursorToPosition.ts │ │ │ ├── openDocumentLink.ts │ │ │ ├── refreshPreview.ts │ │ │ ├── renderDocument.ts │ │ │ ├── showPreview.ts │ │ │ ├── showPreviewSecuritySelector.ts │ │ │ ├── showSource.ts │ │ │ └── toggleLock.ts │ │ ├── extension.ts │ │ ├── features │ │ │ ├── documentLinkProvider.ts │ │ │ ├── documentSymbolProvider.ts │ │ │ ├── foldingProvider.ts │ │ │ ├── preview.ts │ │ │ ├── previewConfig.ts │ │ │ ├── previewContentProvider.ts │ │ │ ├── previewManager.ts │ │ │ ├── smartSelect.ts │ │ │ └── workspaceSymbolProvider.ts │ │ ├── logger.ts │ │ ├── markdownEngine.ts │ │ ├── markdownExtensions.ts │ │ ├── security.ts │ │ ├── slugify.ts │ │ ├── tableOfContentsProvider.ts │ │ ├── telemetryReporter.ts │ │ ├── test │ │ │ ├── documentLink.test.ts │ │ │ ├── documentLinkProvider.test.ts │ │ │ ├── documentSymbolProvider.test.ts │ │ │ ├── engine.test.ts │ │ │ ├── engine.ts │ │ │ ├── foldingProvider.test.ts │ │ │ ├── inMemoryDocument.ts │ │ │ ├── index.ts │ │ │ ├── smartSelect.test.ts │ │ │ ├── tableOfContentsProvider.test.ts │ │ │ ├── urlToUri.test.ts │ │ │ ├── util.ts │ │ │ └── workspaceSymbolProvider.test.ts │ │ ├── typings │ │ │ └── ref.d.ts │ │ └── util │ │ │ ├── arrays.ts │ │ │ ├── dispose.ts │ │ │ ├── file.ts │ │ │ ├── hash.ts │ │ │ ├── lazy.ts │ │ │ ├── links.ts │ │ │ ├── resources.ts │ │ │ ├── topmostLineMonitor.ts │ │ │ └── url.ts │ ├── test-workspace │ │ ├── a.md │ │ ├── b.md │ │ └── sub │ │ │ ├── c.md │ │ │ └── d.md │ ├── tsconfig.json │ ├── webpack.config.js │ └── yarn.lock ├── merge-conflict │ ├── .vscodeignore │ ├── README.md │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── media │ │ └── icon.png │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── codelensProvider.ts │ │ ├── commandHandler.ts │ │ ├── contentProvider.ts │ │ ├── delayer.ts │ │ ├── documentMergeConflict.ts │ │ ├── documentTracker.ts │ │ ├── interfaces.ts │ │ ├── mergeConflictMain.ts │ │ ├── mergeConflictParser.ts │ │ ├── mergeDecorator.ts │ │ ├── services.ts │ │ └── typings │ │ │ └── refs.d.ts │ ├── tsconfig.json │ └── yarn.lock ├── microsoft-authentication │ ├── .vscodeignore │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── media │ │ ├── auth.css │ │ ├── auth.html │ │ └── icon.png │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── AADHelper.ts │ │ ├── authServer.ts │ │ ├── env │ │ │ ├── browser │ │ │ │ ├── authServer.ts │ │ │ │ └── sha256.ts │ │ │ └── node │ │ │ │ └── sha256.ts │ │ ├── extension.ts │ │ ├── keychain.ts │ │ ├── logger.ts │ │ ├── microsoft-authentication.d.ts │ │ ├── typings │ │ │ └── refs.d.ts │ │ └── utils.ts │ ├── tsconfig.json │ └── yarn.lock ├── notebook-markdown-extensions │ ├── .gitignore │ ├── .vscodeignore │ ├── README.md │ ├── esbuild.js │ ├── icon.png │ ├── notebook │ │ ├── emoji.ts │ │ ├── katex.ts │ │ └── tsconfig.json │ ├── package.json │ ├── package.nls.json │ └── yarn.lock ├── npm │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── README.md │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── images │ │ ├── code.svg │ │ └── npm_icon.png │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── commands.ts │ │ ├── features │ │ │ ├── bowerJSONContribution.ts │ │ │ ├── jsonContributions.ts │ │ │ └── packageJSONContribution.ts │ │ ├── npmBrowserMain.ts │ │ ├── npmMain.ts │ │ ├── npmScriptLens.ts │ │ ├── npmView.ts │ │ ├── preferred-pm.ts │ │ ├── readScripts.ts │ │ ├── scriptHover.ts │ │ ├── tasks.ts │ │ └── typings │ │ │ └── refs.d.ts │ ├── tsconfig.json │ └── yarn.lock ├── objective-c │ ├── .vscodeignore │ ├── build │ │ └── update-grammars.js │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ ├── objective-c++.tmLanguage.json │ │ └── objective-c.tmLanguage.json │ └── yarn.lock ├── package.json ├── perl │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── package.json │ ├── package.nls.json │ ├── perl.language-configuration.json │ ├── perl6.language-configuration.json │ ├── syntaxes │ │ ├── perl.tmLanguage.json │ │ └── perl6.tmLanguage.json │ └── yarn.lock ├── php-language-features │ ├── .vscodeignore │ ├── README.md │ ├── extension.webpack.config.js │ ├── icons │ │ └── logo.png │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── features │ │ │ ├── completionItemProvider.ts │ │ │ ├── hoverProvider.ts │ │ │ ├── phpGlobalFunctions.ts │ │ │ ├── phpGlobals.ts │ │ │ ├── signatureHelpProvider.ts │ │ │ ├── utils │ │ │ │ ├── async.ts │ │ │ │ └── markedTextUtil.ts │ │ │ └── validationProvider.ts │ │ ├── phpMain.ts │ │ └── typings │ │ │ ├── node.additions.d.ts │ │ │ └── refs.d.ts │ ├── tsconfig.json │ └── yarn.lock ├── php │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── build │ │ └── update-grammar.js │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── snippets │ │ └── php.code-snippets │ ├── syntaxes │ │ ├── html.tmLanguage.json │ │ └── php.tmLanguage.json │ └── yarn.lock ├── postinstall.js ├── powershell │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── snippets │ │ └── powershell.code-snippets │ ├── syntaxes │ │ └── powershell.tmLanguage.json │ └── yarn.lock ├── pug │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── pug.tmLanguage.json │ └── yarn.lock ├── python │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ ├── MagicPython.tmLanguage.json │ │ └── MagicRegExp.tmLanguage.json │ ├── test │ │ ├── colorize-fixtures │ │ │ ├── test-freeze-56377.py │ │ │ └── test.py │ │ └── colorize-results │ │ │ ├── test-freeze-56377_py.json │ │ │ └── test_py.json │ └── yarn.lock ├── r │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── r.tmLanguage.json │ └── yarn.lock ├── razor │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── cshtml.tmLanguage.json │ └── yarn.lock ├── ruby │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── ruby.tmLanguage.json │ └── yarn.lock ├── rust │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── rust.tmLanguage.json │ └── yarn.lock ├── scss │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ ├── sassdoc.tmLanguage.json │ │ └── scss.tmLanguage.json │ └── yarn.lock ├── search-result │ ├── .vscodeignore │ ├── README.md │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── extension.ts │ │ ├── media │ │ │ ├── refresh-dark.svg │ │ │ └── refresh-light.svg │ │ └── typings │ │ │ └── refs.d.ts │ ├── syntaxes │ │ ├── generateTMLanguage.js │ │ └── searchResult.tmLanguage.json │ ├── tsconfig.json │ └── yarn.lock ├── shaderlab │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── shaderlab.tmLanguage.json │ └── yarn.lock ├── shared.webpack.config.js ├── shellscript │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── shell-unix-bash.tmLanguage.json │ └── yarn.lock ├── simple-browser │ ├── .gitignore │ ├── .vscodeignore │ ├── README.md │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── media │ │ ├── icon.png │ │ ├── main.css │ │ ├── preview-dark.svg │ │ └── preview-light.svg │ ├── package.json │ ├── package.nls.json │ ├── preview-src │ │ ├── events.ts │ │ ├── index.ts │ │ └── tsconfig.json │ ├── src │ │ ├── dispose.ts │ │ ├── extension.ts │ │ ├── simpleBrowserManager.ts │ │ ├── simpleBrowserView.ts │ │ └── typings │ │ │ └── ref.d.ts │ ├── tsconfig.json │ ├── webpack.config.js │ └── yarn.lock ├── sql │ ├── .vscodeignore │ ├── build │ │ └── update-grammar.js │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── sql.tmLanguage.json │ └── yarn.lock ├── swift │ ├── .vscodeignore │ ├── LICENSE.md │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── snippets │ │ └── swift.code-snippets │ ├── syntaxes │ │ └── swift.tmLanguage.json │ └── yarn.lock ├── testing-editor-contributions │ ├── .vscodeignore │ ├── README.md │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── media │ │ └── icon.png │ ├── package.json │ ├── package.nls.json │ ├── src │ │ ├── extension.ts │ │ └── typings │ │ │ └── refs.d.ts │ ├── tsconfig.json │ └── yarn.lock ├── theme-abyss │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── package.json │ ├── package.nls.json │ ├── themes │ │ └── abyss-color-theme.json │ └── yarn.lock ├── theme-defaults │ ├── fileicons │ │ ├── images │ │ │ ├── document-dark.svg │ │ │ ├── document-light.svg │ │ │ ├── folder-dark.svg │ │ │ ├── folder-light.svg │ │ │ ├── folder-open-dark.svg │ │ │ ├── folder-open-light.svg │ │ │ ├── root-folder-dark.svg │ │ │ ├── root-folder-light.svg │ │ │ ├── root-folder-open-dark.svg │ │ │ └── root-folder-open-light.svg │ │ └── vs_minimal-icon-theme.json │ ├── package.json │ ├── package.nls.json │ ├── themes │ │ ├── dark_plus.json │ │ ├── dark_vs.json │ │ ├── hc_black.json │ │ ├── light_plus.json │ │ └── light_vs.json │ └── yarn.lock ├── theme-kimbie-dark │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── package.json │ ├── package.nls.json │ ├── themes │ │ └── kimbie-dark-color-theme.json │ └── yarn.lock ├── theme-monokai-dimmed │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── package.json │ ├── package.nls.json │ ├── themes │ │ └── dimmed-monokai-color-theme.json │ └── yarn.lock ├── theme-monokai │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── package.json │ ├── package.nls.json │ ├── themes │ │ └── monokai-color-theme.json │ └── yarn.lock ├── theme-quietlight │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── package.json │ ├── package.nls.json │ ├── themes │ │ └── quietlight-color-theme.json │ └── yarn.lock ├── theme-red │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── package.json │ ├── package.nls.json │ ├── themes │ │ └── Red-color-theme.json │ └── yarn.lock ├── theme-seti │ ├── .vscodeignore │ ├── CONTRIBUTING.md │ ├── README.md │ ├── ThirdPartyNotices.txt │ ├── build │ │ └── update-icon-theme.js │ ├── cgmanifest.json │ ├── icons │ │ ├── preview.html │ │ ├── seti-circular-128x128.png │ │ ├── seti.woff │ │ └── vs-seti-icon-theme.json │ ├── package.json │ ├── package.nls.json │ └── yarn.lock ├── theme-solarized-dark │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── package.json │ ├── package.nls.json │ ├── themes │ │ └── solarized-dark-color-theme.json │ └── yarn.lock ├── theme-solarized-light │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── package.json │ ├── package.nls.json │ ├── themes │ │ └── solarized-light-color-theme.json │ └── yarn.lock ├── theme-tomorrow-night-blue │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── package.json │ ├── package.nls.json │ ├── themes │ │ └── tomorrow-night-blue-color-theme.json │ └── yarn.lock ├── tsconfig.base.json ├── types │ ├── lib.textEncoder.d.ts │ └── lib.url.d.ts ├── typescript-basics │ ├── .vscodeignore │ ├── build │ │ └── update-grammars.js │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── snippets │ │ └── typescript.code-snippets │ ├── syntaxes │ │ ├── Readme.md │ │ ├── TypeScript.tmLanguage.json │ │ ├── TypeScriptReact.tmLanguage.json │ │ ├── jsdoc.js.injection.tmLanguage.json │ │ └── jsdoc.ts.injection.tmLanguage.json │ └── yarn.lock ├── typescript-language-features │ ├── .eslintrc.json │ ├── .vscodeignore │ ├── README.md │ ├── cgmanifest.json │ ├── extension-browser.webpack.config.js │ ├── extension.webpack.config.js │ ├── language-configuration.json │ ├── media │ │ └── icon.png │ ├── package.json │ ├── package.nls.json │ ├── schemas │ │ ├── jsconfig.schema.json │ │ ├── package.schema.json │ │ └── tsconfig.schema.json │ ├── src │ │ ├── api.ts │ │ ├── commands │ │ │ ├── commandManager.ts │ │ │ ├── configurePlugin.ts │ │ │ ├── goToProjectConfiguration.ts │ │ │ ├── index.ts │ │ │ ├── learnMoreAboutRefactorings.ts │ │ │ ├── openTsServerLog.ts │ │ │ ├── reloadProject.ts │ │ │ ├── restartTsServer.ts │ │ │ └── selectTypeScriptVersion.ts │ │ ├── extension.browser.ts │ │ ├── extension.ts │ │ ├── languageFeatures │ │ │ ├── callHierarchy.ts │ │ │ ├── codeLens │ │ │ │ ├── baseCodeLensProvider.ts │ │ │ │ ├── implementationsCodeLens.ts │ │ │ │ └── referencesCodeLens.ts │ │ │ ├── completions.ts │ │ │ ├── definitionProviderBase.ts │ │ │ ├── definitions.ts │ │ │ ├── diagnostics.ts │ │ │ ├── directiveCommentCompletions.ts │ │ │ ├── documentHighlight.ts │ │ │ ├── documentSymbol.ts │ │ │ ├── fileConfigurationManager.ts │ │ │ ├── fileReferences.ts │ │ │ ├── fixAll.ts │ │ │ ├── folding.ts │ │ │ ├── formatting.ts │ │ │ ├── hover.ts │ │ │ ├── implementations.ts │ │ │ ├── jsDocCompletions.ts │ │ │ ├── languageConfiguration.ts │ │ │ ├── organizeImports.ts │ │ │ ├── quickFix.ts │ │ │ ├── refactor.ts │ │ │ ├── references.ts │ │ │ ├── rename.ts │ │ │ ├── semanticTokens.ts │ │ │ ├── signatureHelp.ts │ │ │ ├── smartSelect.ts │ │ │ ├── tagClosing.ts │ │ │ ├── tsconfig.ts │ │ │ ├── typeDefinitions.ts │ │ │ ├── updatePathsOnRename.ts │ │ │ └── workspaceSymbols.ts │ │ ├── languageProvider.ts │ │ ├── lazyClientHost.ts │ │ ├── protocol.const.ts │ │ ├── protocol.d.ts │ │ ├── task │ │ │ ├── taskProvider.ts │ │ │ └── tsconfigProvider.ts │ │ ├── test-all.ts │ │ ├── test │ │ │ ├── index.ts │ │ │ ├── smoke │ │ │ │ ├── completions.test.ts │ │ │ │ ├── fixAll.test.ts │ │ │ │ ├── index.ts │ │ │ │ ├── jsDocCompletions.test.ts │ │ │ │ ├── quickFix.test.ts │ │ │ │ └── referencesCodeLens.test.ts │ │ │ ├── suggestTestHelpers.ts │ │ │ ├── testUtils.ts │ │ │ └── unit │ │ │ │ ├── cachedResponse.test.ts │ │ │ │ ├── functionCallSnippet.test.ts │ │ │ │ ├── index.ts │ │ │ │ ├── jsdocSnippet.test.ts │ │ │ │ ├── onEnter.test.ts │ │ │ │ ├── previewer.test.ts │ │ │ │ ├── requestQueue.test.ts │ │ │ │ └── server.test.ts │ │ ├── tsServer │ │ │ ├── bufferSyncSupport.ts │ │ │ ├── cachedResponse.ts │ │ │ ├── callbackMap.ts │ │ │ ├── cancellation.electron.ts │ │ │ ├── cancellation.ts │ │ │ ├── logDirectoryProvider.electron.ts │ │ │ ├── logDirectoryProvider.ts │ │ │ ├── requestQueue.ts │ │ │ ├── server.ts │ │ │ ├── serverError.ts │ │ │ ├── serverProcess.browser.ts │ │ │ ├── serverProcess.electron.ts │ │ │ ├── spawner.ts │ │ │ ├── versionManager.ts │ │ │ ├── versionProvider.electron.ts │ │ │ ├── versionProvider.ts │ │ │ └── versionStatus.ts │ │ ├── typeScriptServiceClientHost.ts │ │ ├── typescriptService.ts │ │ ├── typescriptServiceClient.ts │ │ ├── typings │ │ │ └── ref.d.ts │ │ └── utils │ │ │ ├── activeJsTsEditorTracker.ts │ │ │ ├── api.ts │ │ │ ├── arrays.ts │ │ │ ├── async.ts │ │ │ ├── cancellation.ts │ │ │ ├── codeAction.ts │ │ │ ├── configuration.ts │ │ │ ├── dependentRegistration.ts │ │ │ ├── dispose.ts │ │ │ ├── documentSelector.ts │ │ │ ├── errorCodes.ts │ │ │ ├── fileSchemes.ts │ │ │ ├── fileSystem.electron.ts │ │ │ ├── fixNames.ts │ │ │ ├── fs.ts │ │ │ ├── languageDescription.ts │ │ │ ├── languageModeIds.ts │ │ │ ├── largeProjectStatus.ts │ │ │ ├── lazy.ts │ │ │ ├── logLevelMonitor.ts │ │ │ ├── logger.ts │ │ │ ├── managedFileContext.ts │ │ │ ├── memoize.ts │ │ │ ├── modifiers.ts │ │ │ ├── objects.ts │ │ │ ├── platform.ts │ │ │ ├── pluginPathsProvider.ts │ │ │ ├── plugins.ts │ │ │ ├── previewer.ts │ │ │ ├── regexp.ts │ │ │ ├── relativePathResolver.ts │ │ │ ├── resourceMap.ts │ │ │ ├── snippetForFunctionCall.ts │ │ │ ├── telemetry.ts │ │ │ ├── temp.electron.ts │ │ │ ├── tracer.ts │ │ │ ├── tsconfig.ts │ │ │ ├── typeConverters.ts │ │ │ └── typingsStatus.ts │ ├── test-workspace │ │ ├── bar.ts │ │ ├── foo.ts │ │ ├── foojs.js │ │ ├── index.ts │ │ └── tsconfig.json │ ├── tsconfig.json │ └── yarn.lock ├── vb │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── snippets │ │ └── vb.code-snippets │ ├── syntaxes │ │ └── asp-vb-net.tmlanguage.json │ └── yarn.lock ├── vscode-api-tests │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── media │ │ └── icon.png │ ├── package.json │ ├── src │ │ ├── extension.ts │ │ ├── memfs.ts │ │ ├── singlefolder-tests │ │ │ ├── commands.test.ts │ │ │ ├── configuration.test.ts │ │ │ ├── debug.test.ts │ │ │ ├── editor.test.ts │ │ │ ├── env.test.ts │ │ │ ├── extensions.test.ts │ │ │ ├── index.ts │ │ │ ├── languages.test.ts │ │ │ ├── notebook.document.test.ts │ │ │ ├── notebook.editor.test.ts │ │ │ ├── notebook.test.ts │ │ │ ├── quickInput.test.ts │ │ │ ├── rpc.test.ts │ │ │ ├── terminal.test.ts │ │ │ ├── types.test.ts │ │ │ ├── webview.test.ts │ │ │ ├── window.test.ts │ │ │ ├── workspace.event.test.ts │ │ │ ├── workspace.fs.test.ts │ │ │ ├── workspace.tasks.test.ts │ │ │ └── workspace.test.ts │ │ ├── typings │ │ │ └── ref.d.ts │ │ ├── utils.ts │ │ └── workspace-tests │ │ │ ├── index.ts │ │ │ └── workspace.test.ts │ ├── testWorkspace │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── settings.json │ │ ├── 10linefile.ts │ │ ├── 30linefile.ts │ │ ├── bower.json │ │ ├── debug.js │ │ ├── far.js │ │ ├── files-exclude │ │ │ └── file.txt │ │ ├── image%.png │ │ ├── image%02.png │ │ ├── image.png │ │ ├── lorem.txt │ │ ├── search-exclude │ │ │ └── file.txt │ │ ├── simple.txt │ │ └── sub │ │ │ └── image.png │ ├── testWorkspace2 │ │ ├── .vscode │ │ │ └── settings.json │ │ └── simple.txt │ ├── testworkspace.code-workspace │ ├── tsconfig.json │ └── yarn.lock ├── vscode-colorize-tests │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── media │ │ └── icon.png │ ├── package.json │ ├── producticons │ │ ├── ElegantIcons.woff │ │ ├── index.html │ │ ├── mit_license.txt │ │ └── test-product-icon-theme.json │ ├── src │ │ ├── colorizer.test.ts │ │ ├── colorizerTestMain.ts │ │ ├── index.ts │ │ └── typings │ │ │ └── ref.d.ts │ ├── test │ │ ├── colorize-fixtures │ │ │ ├── 12750.html │ │ │ ├── 13448.html │ │ │ ├── 14119.less │ │ │ ├── 25920.html │ │ │ ├── Dockerfile │ │ │ ├── basic.java │ │ │ ├── issue-1550.yaml │ │ │ ├── issue-28354.php │ │ │ ├── issue-4008.yaml │ │ │ ├── issue-6303.yaml │ │ │ ├── issue-76997.php │ │ │ ├── makefile │ │ │ ├── test-13777.go │ │ │ ├── test-23630.cpp │ │ │ ├── test-23850.cpp │ │ │ ├── test-33886.md │ │ │ ├── test-4287.pug │ │ │ ├── test-6611.rs │ │ │ ├── test-7115.xml │ │ │ ├── test-78769.cpp │ │ │ ├── test-80644.cpp │ │ │ ├── test-brackets.tsx │ │ │ ├── test-cssvariables.less │ │ │ ├── test-cssvariables.scss │ │ │ ├── test-embedding.html │ │ │ ├── test-freeze-56476.ps1 │ │ │ ├── test-function-inv.ts │ │ │ ├── test-issue11.ts │ │ │ ├── test-issue5431.ts │ │ │ ├── test-issue5465.ts │ │ │ ├── test-issue5566.ts │ │ │ ├── test-jsdoc-multiline-type.ts │ │ │ ├── test-keywords.ts │ │ │ ├── test-members.ts │ │ │ ├── test-object-literals.ts │ │ │ ├── test-regex.coffee │ │ │ ├── test-strings.ts │ │ │ ├── test-this.ts │ │ │ ├── test-variables.css │ │ │ ├── test.bat │ │ │ ├── test.c │ │ │ ├── test.cc │ │ │ ├── test.clj │ │ │ ├── test.coffee │ │ │ ├── test.cpp │ │ │ ├── test.cs │ │ │ ├── test.cshtml │ │ │ ├── test.css │ │ │ ├── test.cu │ │ │ ├── test.dart │ │ │ ├── test.fs │ │ │ ├── test.go │ │ │ ├── test.groovy │ │ │ ├── test.handlebars │ │ │ ├── test.hbs │ │ │ ├── test.hlsl │ │ │ ├── test.html │ │ │ ├── test.ini │ │ │ ├── test.jl │ │ │ ├── test.js │ │ │ ├── test.json │ │ │ ├── test.jsx │ │ │ ├── test.less │ │ │ ├── test.log │ │ │ ├── test.lua │ │ │ ├── test.m │ │ │ ├── test.md │ │ │ ├── test.mm │ │ │ ├── test.php │ │ │ ├── test.pl │ │ │ ├── test.ps1 │ │ │ ├── test.pug │ │ │ ├── test.r │ │ │ ├── test.rb │ │ │ ├── test.rs │ │ │ ├── test.scss │ │ │ ├── test.sh │ │ │ ├── test.shader │ │ │ ├── test.sql │ │ │ ├── test.swift │ │ │ ├── test.ts │ │ │ ├── test.vb │ │ │ ├── test.xml │ │ │ ├── test.yaml │ │ │ ├── test2.pl │ │ │ ├── test6916.js │ │ │ └── tsconfig_off.json │ │ ├── colorize-results │ │ │ ├── 12750_html.json │ │ │ ├── 13448_html.json │ │ │ ├── 14119_less.json │ │ │ ├── 25920_html.json │ │ │ ├── Dockerfile.json │ │ │ ├── basic_java.json │ │ │ ├── issue-1550_yaml.json │ │ │ ├── issue-28354_php.json │ │ │ ├── issue-4008_yaml.json │ │ │ ├── issue-6303_yaml.json │ │ │ ├── issue-76997_php.json │ │ │ ├── makefile.json │ │ │ ├── test-13777_go.json │ │ │ ├── test-23630_cpp.json │ │ │ ├── test-23850_cpp.json │ │ │ ├── test-33886_md.json │ │ │ ├── test-4287_pug.json │ │ │ ├── test-6611_rs.json │ │ │ ├── test-7115_xml.json │ │ │ ├── test-78769_cpp.json │ │ │ ├── test-80644_cpp.json │ │ │ ├── test-brackets_tsx.json │ │ │ ├── test-cssvariables_less.json │ │ │ ├── test-cssvariables_scss.json │ │ │ ├── test-embedding_html.json │ │ │ ├── test-freeze-56476_ps1.json │ │ │ ├── test-function-inv_ts.json │ │ │ ├── test-issue11_ts.json │ │ │ ├── test-issue5431_ts.json │ │ │ ├── test-issue5465_ts.json │ │ │ ├── test-issue5566_ts.json │ │ │ ├── test-jsdoc-multiline-type_ts.json │ │ │ ├── test-keywords_ts.json │ │ │ ├── test-members_ts.json │ │ │ ├── test-object-literals_ts.json │ │ │ ├── test-regex_coffee.json │ │ │ ├── test-strings_ts.json │ │ │ ├── test-this_ts.json │ │ │ ├── test-variables_css.json │ │ │ ├── test2_pl.json │ │ │ ├── test6916_js.json │ │ │ ├── test_bat.json │ │ │ ├── test_c.json │ │ │ ├── test_cc.json │ │ │ ├── test_clj.json │ │ │ ├── test_coffee.json │ │ │ ├── test_cpp.json │ │ │ ├── test_cs.json │ │ │ ├── test_cshtml.json │ │ │ ├── test_css.json │ │ │ ├── test_cu.json │ │ │ ├── test_dart.json │ │ │ ├── test_fs.json │ │ │ ├── test_go.json │ │ │ ├── test_groovy.json │ │ │ ├── test_handlebars.json │ │ │ ├── test_hbs.json │ │ │ ├── test_hlsl.json │ │ │ ├── test_html.json │ │ │ ├── test_ini.json │ │ │ ├── test_jl.json │ │ │ ├── test_js.json │ │ │ ├── test_json.json │ │ │ ├── test_jsx.json │ │ │ ├── test_less.json │ │ │ ├── test_log.json │ │ │ ├── test_lua.json │ │ │ ├── test_m.json │ │ │ ├── test_md.json │ │ │ ├── test_mm.json │ │ │ ├── test_php.json │ │ │ ├── test_pl.json │ │ │ ├── test_ps1.json │ │ │ ├── test_pug.json │ │ │ ├── test_r.json │ │ │ ├── test_rb.json │ │ │ ├── test_rs.json │ │ │ ├── test_scss.json │ │ │ ├── test_sh.json │ │ │ ├── test_shader.json │ │ │ ├── test_sql.json │ │ │ ├── test_swift.json │ │ │ ├── test_ts.json │ │ │ ├── test_vb.json │ │ │ ├── test_xml.json │ │ │ ├── test_yaml.json │ │ │ └── tsconfig_off_json.json │ │ └── semantic-test │ │ │ ├── .vscode │ │ │ └── settings.json │ │ │ └── semantic-test.json │ ├── tsconfig.json │ └── yarn.lock ├── vscode-custom-editor-tests │ ├── .vscodeignore │ ├── customEditorMedia │ │ └── textEditor.js │ ├── media │ │ └── icon.png │ ├── package.json │ ├── src │ │ ├── customTextEditor.ts │ │ ├── dispose.ts │ │ ├── extension.ts │ │ ├── test │ │ │ ├── customEditor.test.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ └── typings │ │ │ └── ref.d.ts │ ├── test-workspace │ │ └── index.abc │ ├── tsconfig.json │ └── yarn.lock ├── vscode-notebook-tests │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── media │ │ └── icon.png │ ├── package.json │ ├── src │ │ ├── customRenderer.js │ │ ├── extension.ts │ │ ├── index.ts │ │ ├── typings │ │ │ └── ref.d.ts │ │ └── utils.ts │ ├── test │ │ ├── customRenderer.vsctestnb │ │ ├── empty.vsctestnb │ │ ├── first.vsctestnb │ │ └── second.vsctestnb │ ├── tsconfig.json │ └── yarn.lock ├── vscode-test-resolver │ ├── .gitignore │ ├── .vscode │ │ └── launch.json │ ├── .vscodeignore │ ├── media │ │ └── icon.png │ ├── package.json │ ├── scripts │ │ └── terminateProcess.sh │ ├── src │ │ ├── download.ts │ │ ├── extension.ts │ │ ├── typings │ │ │ └── ref.d.ts │ │ └── util │ │ │ └── processes.ts │ ├── tsconfig.json │ └── yarn.lock ├── xml │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ ├── xml.tmLanguage.json │ │ └── xsl.tmLanguage.json │ ├── xml.language-configuration.json │ ├── xsl.language-configuration.json │ └── yarn.lock ├── yaml │ ├── .vscodeignore │ ├── cgmanifest.json │ ├── language-configuration.json │ ├── package.json │ ├── package.nls.json │ ├── syntaxes │ │ └── yaml.tmLanguage.json │ └── yarn.lock └── yarn.lock ├── gulpfile.js ├── package.json ├── product.json ├── remote ├── .yarnrc ├── package.json ├── web │ ├── package.json │ └── yarn.lock └── yarn.lock ├── resources ├── completions │ ├── bash │ │ └── code │ └── zsh │ │ └── _code ├── darwin │ ├── bat.icns │ ├── bin │ │ └── code.sh │ ├── bower.icns │ ├── c.icns │ ├── code.icns │ ├── config.icns │ ├── cpp.icns │ ├── csharp.icns │ ├── css.icns │ ├── default.icns │ ├── go.icns │ ├── html.icns │ ├── jade.icns │ ├── java.icns │ ├── javascript.icns │ ├── json.icns │ ├── less.icns │ ├── markdown.icns │ ├── php.icns │ ├── powershell.icns │ ├── python.icns │ ├── react.icns │ ├── ruby.icns │ ├── sass.icns │ ├── shell.icns │ ├── sql.icns │ ├── typescript.icns │ ├── vue.icns │ ├── xml.icns │ └── yaml.icns ├── linux │ ├── bin │ │ └── code.sh │ ├── code-url-handler.desktop │ ├── code-workspace.xml │ ├── code.appdata.xml │ ├── code.desktop │ ├── code.png │ ├── debian │ │ ├── control.template │ │ ├── postinst.template │ │ ├── postrm.template │ │ └── prerm.template │ ├── rpm │ │ ├── code.spec.template │ │ ├── code.xpm │ │ └── dependencies.json │ └── snap │ │ ├── electron-launch │ │ └── snapcraft.yaml ├── web │ ├── callback.html │ └── code-web.js └── win32 │ ├── VisualElementsManifest.xml │ ├── bin │ ├── code.cmd │ └── code.sh │ ├── bower.ico │ ├── c.ico │ ├── code.ico │ ├── code_150x150.png │ ├── code_70x70.png │ ├── config.ico │ ├── cpp.ico │ ├── csharp.ico │ ├── css.ico │ ├── default.ico │ ├── go.ico │ ├── html.ico │ ├── inno-big-100.bmp │ ├── inno-big-125.bmp │ ├── inno-big-150.bmp │ ├── inno-big-175.bmp │ ├── inno-big-200.bmp │ ├── inno-big-225.bmp │ ├── inno-big-250.bmp │ ├── inno-small-100.bmp │ ├── inno-small-125.bmp │ ├── inno-small-150.bmp │ ├── inno-small-175.bmp │ ├── inno-small-200.bmp │ ├── inno-small-225.bmp │ ├── inno-small-250.bmp │ ├── jade.ico │ ├── java.ico │ ├── javascript.ico │ ├── json.ico │ ├── less.ico │ ├── markdown.ico │ ├── php.ico │ ├── powershell.ico │ ├── python.ico │ ├── react.ico │ ├── ruby.ico │ ├── sass.ico │ ├── shell.ico │ ├── sql.ico │ ├── typescript.ico │ ├── vue.ico │ ├── xml.ico │ └── yaml.ico ├── scripts ├── code-cli.bat ├── code-cli.sh ├── code.bat ├── code.sh ├── generate-definitelytyped.sh ├── node-electron.bat ├── node-electron.sh ├── npm.bat ├── npm.sh ├── test-documentation.bat ├── test-documentation.sh ├── test-integration.bat ├── test-integration.sh ├── test.bat └── test.sh ├── src ├── bootstrap-amd.js ├── bootstrap-fork.js ├── bootstrap-node.js ├── bootstrap-window.js ├── bootstrap.js ├── buildfile.js ├── cli.js ├── main.js ├── tsconfig.base.json ├── tsconfig.json ├── tsconfig.monaco.json ├── tsconfig.tsec.json ├── tsec.exemptions.json ├── typings │ ├── require.d.ts │ └── thenable.d.ts └── vs │ ├── base │ ├── browser │ │ ├── browser.ts │ │ ├── canIUse.ts │ │ ├── contextmenu.ts │ │ ├── dnd.ts │ │ ├── dom.ts │ │ ├── event.ts │ │ ├── fastDomNode.ts │ │ ├── formattedTextRenderer.ts │ │ ├── globalMouseMoveMonitor.ts │ │ ├── hash.ts │ │ ├── history.ts │ │ ├── iframe.ts │ │ ├── keyboardEvent.ts │ │ ├── markdownRenderer.ts │ │ ├── mouseEvent.ts │ │ ├── touch.ts │ │ └── ui │ │ │ ├── actionbar │ │ │ ├── actionViewItems.ts │ │ │ ├── actionbar.css │ │ │ └── actionbar.ts │ │ │ ├── aria │ │ │ ├── aria.css │ │ │ └── aria.ts │ │ │ ├── breadcrumbs │ │ │ ├── breadcrumbsWidget.css │ │ │ └── breadcrumbsWidget.ts │ │ │ ├── button │ │ │ ├── button.css │ │ │ └── button.ts │ │ │ ├── centered │ │ │ └── centeredViewLayout.ts │ │ │ ├── checkbox │ │ │ ├── checkbox.css │ │ │ └── checkbox.ts │ │ │ ├── codicons │ │ │ ├── codicon │ │ │ │ ├── codicon-modifiers.css │ │ │ │ ├── codicon.css │ │ │ │ └── codicon.ttf │ │ │ └── codiconStyles.ts │ │ │ ├── contextview │ │ │ ├── contextview.css │ │ │ └── contextview.ts │ │ │ ├── countBadge │ │ │ ├── countBadge.css │ │ │ └── countBadge.ts │ │ │ ├── dialog │ │ │ ├── dialog.css │ │ │ └── dialog.ts │ │ │ ├── dropdown │ │ │ ├── dropdown.css │ │ │ ├── dropdown.ts │ │ │ └── dropdownActionViewItem.ts │ │ │ ├── findinput │ │ │ ├── findInput.css │ │ │ ├── findInput.ts │ │ │ ├── findInputCheckboxes.ts │ │ │ └── replaceInput.ts │ │ │ ├── grid │ │ │ ├── grid.ts │ │ │ ├── gridview.css │ │ │ └── gridview.ts │ │ │ ├── highlightedlabel │ │ │ └── highlightedLabel.ts │ │ │ ├── hover │ │ │ ├── hover.css │ │ │ └── hoverWidget.ts │ │ │ ├── iconLabel │ │ │ ├── iconHoverDelegate.ts │ │ │ ├── iconLabel.ts │ │ │ ├── iconLabelHover.ts │ │ │ ├── iconLabels.ts │ │ │ ├── iconlabel.css │ │ │ └── simpleIconLabel.ts │ │ │ ├── inputbox │ │ │ ├── inputBox.css │ │ │ └── inputBox.ts │ │ │ ├── keybindingLabel │ │ │ ├── keybindingLabel.css │ │ │ └── keybindingLabel.ts │ │ │ ├── list │ │ │ ├── list.css │ │ │ ├── list.ts │ │ │ ├── listPaging.ts │ │ │ ├── listView.ts │ │ │ ├── listWidget.ts │ │ │ ├── rangeMap.ts │ │ │ ├── rowCache.ts │ │ │ └── splice.ts │ │ │ ├── menu │ │ │ ├── menu.ts │ │ │ ├── menubar.css │ │ │ └── menubar.ts │ │ │ ├── mouseCursor │ │ │ ├── mouseCursor.css │ │ │ └── mouseCursor.ts │ │ │ ├── progressbar │ │ │ ├── progressbar.css │ │ │ └── progressbar.ts │ │ │ ├── sash │ │ │ ├── sash.css │ │ │ └── sash.ts │ │ │ ├── scrollbar │ │ │ ├── abstractScrollbar.ts │ │ │ ├── horizontalScrollbar.ts │ │ │ ├── media │ │ │ │ └── scrollbars.css │ │ │ ├── scrollableElement.ts │ │ │ ├── scrollableElementOptions.ts │ │ │ ├── scrollbarArrow.ts │ │ │ ├── scrollbarState.ts │ │ │ ├── scrollbarVisibilityController.ts │ │ │ └── verticalScrollbar.ts │ │ │ ├── selectBox │ │ │ ├── selectBox.css │ │ │ ├── selectBox.ts │ │ │ ├── selectBoxCustom.css │ │ │ ├── selectBoxCustom.ts │ │ │ └── selectBoxNative.ts │ │ │ ├── splitview │ │ │ ├── paneview.css │ │ │ ├── paneview.ts │ │ │ ├── splitview.css │ │ │ └── splitview.ts │ │ │ ├── table │ │ │ ├── table.css │ │ │ ├── table.ts │ │ │ └── tableWidget.ts │ │ │ ├── toolbar │ │ │ ├── toolbar.css │ │ │ └── toolbar.ts │ │ │ ├── tree │ │ │ ├── abstractTree.ts │ │ │ ├── asyncDataTree.ts │ │ │ ├── compressedObjectTreeModel.ts │ │ │ ├── dataTree.ts │ │ │ ├── indexTree.ts │ │ │ ├── indexTreeModel.ts │ │ │ ├── media │ │ │ │ ├── paneviewlet.css │ │ │ │ └── tree.css │ │ │ ├── objectTree.ts │ │ │ ├── objectTreeModel.ts │ │ │ ├── tree.ts │ │ │ ├── treeDefaults.ts │ │ │ └── treeIcons.ts │ │ │ └── widget.ts │ ├── common │ │ ├── actions.ts │ │ ├── amd.ts │ │ ├── arrays.ts │ │ ├── assert.ts │ │ ├── async.ts │ │ ├── buffer.ts │ │ ├── cache.ts │ │ ├── cancellation.ts │ │ ├── charCode.ts │ │ ├── codicons.ts │ │ ├── collections.ts │ │ ├── color.ts │ │ ├── comparers.ts │ │ ├── console.ts │ │ ├── date.ts │ │ ├── decorators.ts │ │ ├── diff │ │ │ ├── diff.ts │ │ │ └── diffChange.ts │ │ ├── errorMessage.ts │ │ ├── errors.ts │ │ ├── event.ts │ │ ├── extpath.ts │ │ ├── filters.ts │ │ ├── functional.ts │ │ ├── fuzzyScorer.ts │ │ ├── glob.ts │ │ ├── hash.ts │ │ ├── history.ts │ │ ├── htmlContent.ts │ │ ├── iconLabels.ts │ │ ├── idGenerator.ts │ │ ├── insane │ │ │ ├── cgmanifest.json │ │ │ ├── insane.d.ts │ │ │ ├── insane.js │ │ │ └── insane.license.txt │ │ ├── iterator.ts │ │ ├── json.ts │ │ ├── jsonEdit.ts │ │ ├── jsonErrorMessages.ts │ │ ├── jsonFormatter.ts │ │ ├── jsonSchema.ts │ │ ├── keyCodes.ts │ │ ├── keybindingLabels.ts │ │ ├── keybindingParser.ts │ │ ├── labels.ts │ │ ├── lazy.ts │ │ ├── lifecycle.ts │ │ ├── linkedList.ts │ │ ├── linkedText.ts │ │ ├── map.ts │ │ ├── marked │ │ │ ├── cgmanifest.json │ │ │ ├── marked.d.ts │ │ │ ├── marked.js │ │ │ └── marked.license.txt │ │ ├── marshalling.ts │ │ ├── mime.ts │ │ ├── navigator.ts │ │ ├── network.ts │ │ ├── normalization.ts │ │ ├── numbers.ts │ │ ├── objects.ts │ │ ├── paging.ts │ │ ├── parsers.ts │ │ ├── path.ts │ │ ├── performance.d.ts │ │ ├── performance.js │ │ ├── platform.ts │ │ ├── ports.ts │ │ ├── process.ts │ │ ├── processes.ts │ │ ├── product.ts │ │ ├── range.ts │ │ ├── resourceTree.ts │ │ ├── resources.ts │ │ ├── scanCode.ts │ │ ├── scrollable.ts │ │ ├── search.ts │ │ ├── semver │ │ │ ├── cgmanifest.json │ │ │ ├── semver.d.ts │ │ │ └── semver.js │ │ ├── sequence.ts │ │ ├── severity.ts │ │ ├── skipList.ts │ │ ├── stopwatch.ts │ │ ├── stream.ts │ │ ├── strings.ts │ │ ├── styler.ts │ │ ├── types.ts │ │ ├── uint.ts │ │ ├── uri.ts │ │ ├── uriIpc.ts │ │ ├── uuid.ts │ │ └── worker │ │ │ └── simpleWorker.ts │ ├── node │ │ ├── cpuUsage.sh │ │ ├── crypto.ts │ │ ├── decoder.ts │ │ ├── extpath.ts │ │ ├── id.ts │ │ ├── languagePacks.d.ts │ │ ├── languagePacks.js │ │ ├── macAddress.ts │ │ ├── pfs.ts │ │ ├── ports.ts │ │ ├── powershell.ts │ │ ├── processes.ts │ │ ├── ps.sh │ │ ├── ps.ts │ │ ├── shell.ts │ │ ├── terminalEncoding.ts │ │ ├── terminateProcess.sh │ │ ├── watcher.ts │ │ └── zip.ts │ ├── parts │ │ ├── contextmenu │ │ │ ├── common │ │ │ │ └── contextmenu.ts │ │ │ ├── electron-main │ │ │ │ └── contextmenu.ts │ │ │ └── electron-sandbox │ │ │ │ └── contextmenu.ts │ │ ├── ipc │ │ │ ├── browser │ │ │ │ └── ipc.mp.ts │ │ │ ├── common │ │ │ │ ├── ipc.electron.ts │ │ │ │ ├── ipc.mp.ts │ │ │ │ ├── ipc.net.ts │ │ │ │ └── ipc.ts │ │ │ ├── electron-browser │ │ │ │ └── ipc.mp.ts │ │ │ ├── electron-main │ │ │ │ ├── ipc.electron.ts │ │ │ │ └── ipc.mp.ts │ │ │ ├── electron-sandbox │ │ │ │ └── ipc.electron.ts │ │ │ ├── node │ │ │ │ ├── ipc.cp.ts │ │ │ │ └── ipc.net.ts │ │ │ └── test │ │ │ │ ├── browser │ │ │ │ └── ipc.mp.test.ts │ │ │ │ ├── common │ │ │ │ └── ipc.test.ts │ │ │ │ ├── electron-sandbox │ │ │ │ └── ipc.mp.test.ts │ │ │ │ └── node │ │ │ │ ├── ipc.cp.test.ts │ │ │ │ ├── ipc.net.test.ts │ │ │ │ ├── testApp.ts │ │ │ │ └── testService.ts │ │ ├── quickinput │ │ │ ├── browser │ │ │ │ ├── media │ │ │ │ │ └── quickInput.css │ │ │ │ ├── quickInput.ts │ │ │ │ ├── quickInputBox.ts │ │ │ │ ├── quickInputList.ts │ │ │ │ └── quickInputUtils.ts │ │ │ └── common │ │ │ │ └── quickInput.ts │ │ ├── request │ │ │ ├── browser │ │ │ │ └── request.ts │ │ │ └── common │ │ │ │ └── request.ts │ │ ├── sandbox │ │ │ ├── common │ │ │ │ ├── electronTypes.ts │ │ │ │ └── sandboxTypes.ts │ │ │ ├── electron-browser │ │ │ │ └── preload.js │ │ │ ├── electron-sandbox │ │ │ │ ├── electronTypes.ts │ │ │ │ └── globals.ts │ │ │ └── test │ │ │ │ └── electron-sandbox │ │ │ │ └── globals.test.ts │ │ └── storage │ │ │ ├── common │ │ │ └── storage.ts │ │ │ ├── node │ │ │ └── storage.ts │ │ │ └── test │ │ │ └── node │ │ │ └── storage.test.ts │ ├── test │ │ ├── browser │ │ │ ├── actionbar.test.ts │ │ │ ├── browser.test.ts │ │ │ ├── comparers.test.ts │ │ │ ├── dom.test.ts │ │ │ ├── formattedTextRenderer.test.ts │ │ │ ├── hash.test.ts │ │ │ ├── highlightedLabel.test.ts │ │ │ ├── iconLabels.test.ts │ │ │ ├── markdownRenderer.test.ts │ │ │ ├── progressBar.test.ts │ │ │ └── ui │ │ │ │ ├── contextview │ │ │ │ └── contextview.test.ts │ │ │ │ ├── grid │ │ │ │ ├── grid.test.ts │ │ │ │ ├── gridview.test.ts │ │ │ │ └── util.ts │ │ │ │ ├── list │ │ │ │ ├── listView.test.ts │ │ │ │ └── rangeMap.test.ts │ │ │ │ ├── menu │ │ │ │ └── menubar.test.ts │ │ │ │ ├── scrollbar │ │ │ │ ├── scrollableElement.test.ts │ │ │ │ └── scrollbarState.test.ts │ │ │ │ ├── splitview │ │ │ │ └── splitview.test.ts │ │ │ │ └── tree │ │ │ │ ├── asyncDataTree.test.ts │ │ │ │ ├── compressedObjectTreeModel.test.ts │ │ │ │ ├── dataTree.test.ts │ │ │ │ ├── indexTreeModel.test.ts │ │ │ │ ├── objectTree.test.ts │ │ │ │ └── objectTreeModel.test.ts │ │ ├── common │ │ │ ├── arrays.test.ts │ │ │ ├── assert.test.ts │ │ │ ├── async.test.ts │ │ │ ├── buffer.test.ts │ │ │ ├── cache.test.ts │ │ │ ├── cancellation.test.ts │ │ │ ├── charCode.test.ts │ │ │ ├── codicons.test.ts │ │ │ ├── collections.test.ts │ │ │ ├── color.test.ts │ │ │ ├── console.test.ts │ │ │ ├── decorators.test.ts │ │ │ ├── diff │ │ │ │ └── diff.test.ts │ │ │ ├── errors.test.ts │ │ │ ├── event.test.ts │ │ │ ├── extpath.test.ts │ │ │ ├── filters.perf.data.d.ts │ │ │ ├── filters.perf.data.js │ │ │ ├── filters.perf.test.ts │ │ │ ├── filters.test.ts │ │ │ ├── fuzzyScorer.test.ts │ │ │ ├── glob.test.ts │ │ │ ├── history.test.ts │ │ │ ├── iconLabels.test.ts │ │ │ ├── iterator.test.ts │ │ │ ├── json.test.ts │ │ │ ├── jsonEdit.test.ts │ │ │ ├── jsonFormatter.test.ts │ │ │ ├── keyCodes.test.ts │ │ │ ├── labels.test.ts │ │ │ ├── lazy.test.ts │ │ │ ├── lifecycle.test.ts │ │ │ ├── linkedList.test.ts │ │ │ ├── linkedText.test.ts │ │ │ ├── map.test.ts │ │ │ ├── markdownString.test.ts │ │ │ ├── marshalling.test.ts │ │ │ ├── mime.test.ts │ │ │ ├── mock.ts │ │ │ ├── network.test.ts │ │ │ ├── normalization.test.ts │ │ │ ├── objects.test.ts │ │ │ ├── paging.test.ts │ │ │ ├── path.test.ts │ │ │ ├── processes.test.ts │ │ │ ├── resourceTree.test.ts │ │ │ ├── resources.test.ts │ │ │ ├── scrollable.test.ts │ │ │ ├── skipList.test.ts │ │ │ ├── stream.test.ts │ │ │ ├── strings.test.ts │ │ │ ├── troubleshooting.ts │ │ │ ├── types.test.ts │ │ │ ├── uri.test.ts │ │ │ ├── utils.ts │ │ │ └── uuid.test.ts │ │ ├── node │ │ │ ├── crypto.test.ts │ │ │ ├── decoder.test.ts │ │ │ ├── extpath.test.ts │ │ │ ├── id.test.ts │ │ │ ├── keytar.test.ts │ │ │ ├── pfs │ │ │ │ ├── fixtures │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── company.jxs │ │ │ │ │ │ ├── conway.jxs │ │ │ │ │ │ ├── employee.jxs │ │ │ │ │ │ └── small.jxs │ │ │ │ │ ├── index.html │ │ │ │ │ └── site.css │ │ │ │ └── pfs.test.ts │ │ │ ├── port.test.ts │ │ │ ├── powershell.test.ts │ │ │ ├── processes │ │ │ │ ├── fixtures │ │ │ │ │ ├── fork.ts │ │ │ │ │ └── fork_large.ts │ │ │ │ └── processes.test.ts │ │ │ ├── testUtils.ts │ │ │ ├── uri.test.data.txt │ │ │ ├── uri.test.perf.ts │ │ │ └── zip │ │ │ │ ├── fixtures │ │ │ │ └── extract.zip │ │ │ │ └── zip.test.ts │ │ └── parts │ │ │ └── quickinput │ │ │ └── browser │ │ │ └── quickinput.test.ts │ └── worker │ │ ├── defaultWorkerFactory.ts │ │ └── workerMain.ts │ ├── code │ ├── browser │ │ └── workbench │ │ │ ├── callback.html │ │ │ ├── workbench-dev.html │ │ │ ├── workbench.html │ │ │ └── workbench.ts │ ├── buildfile.js │ ├── electron-browser │ │ ├── sharedProcess │ │ │ ├── contrib │ │ │ │ ├── deprecatedExtensionsCleaner.ts │ │ │ │ ├── languagePackCachedDataCleaner.ts │ │ │ │ ├── localizationsUpdater.ts │ │ │ │ ├── logsDataCleaner.ts │ │ │ │ ├── nodeCachedDataCleaner.ts │ │ │ │ └── storageDataCleaner.ts │ │ │ ├── sharedProcess.html │ │ │ ├── sharedProcess.js │ │ │ └── sharedProcessMain.ts │ │ └── workbench │ │ │ ├── workbench.html │ │ │ └── workbench.js │ ├── electron-main │ │ ├── app.ts │ │ ├── auth.ts │ │ └── main.ts │ ├── electron-sandbox │ │ ├── issue │ │ │ ├── issueReporter.html │ │ │ ├── issueReporter.js │ │ │ ├── issueReporterMain.ts │ │ │ ├── issueReporterModel.ts │ │ │ ├── issueReporterPage.ts │ │ │ ├── media │ │ │ │ └── issueReporter.css │ │ │ └── test │ │ │ │ └── testReporterModel.test.ts │ │ ├── processExplorer │ │ │ ├── media │ │ │ │ └── processExplorer.css │ │ │ ├── processExplorer.html │ │ │ ├── processExplorer.js │ │ │ └── processExplorerMain.ts │ │ └── workbench │ │ │ ├── workbench.html │ │ │ └── workbench.js │ └── node │ │ ├── cli.ts │ │ └── cliProcessMain.ts │ ├── css.build.js │ ├── css.d.ts │ ├── css.js │ ├── editor │ ├── browser │ │ ├── config │ │ │ ├── charWidthReader.ts │ │ │ ├── configuration.ts │ │ │ └── elementSizeObserver.ts │ │ ├── controller │ │ │ ├── coreCommands.ts │ │ │ ├── mouseHandler.ts │ │ │ ├── mouseTarget.ts │ │ │ ├── pointerHandler.ts │ │ │ ├── textAreaHandler.css │ │ │ ├── textAreaHandler.ts │ │ │ ├── textAreaInput.ts │ │ │ └── textAreaState.ts │ │ ├── core │ │ │ ├── editorState.ts │ │ │ ├── keybindingCancellation.ts │ │ │ └── markdownRenderer.ts │ │ ├── editorBrowser.ts │ │ ├── editorDom.ts │ │ ├── editorExtensions.ts │ │ ├── services │ │ │ ├── abstractCodeEditorService.ts │ │ │ ├── bulkEditService.ts │ │ │ ├── codeEditorService.ts │ │ │ ├── codeEditorServiceImpl.ts │ │ │ ├── markerDecorations.ts │ │ │ └── openerService.ts │ │ ├── view │ │ │ ├── domLineBreaksComputer.ts │ │ │ ├── dynamicViewOverlay.ts │ │ │ ├── viewController.ts │ │ │ ├── viewImpl.ts │ │ │ ├── viewLayer.ts │ │ │ ├── viewOverlays.ts │ │ │ ├── viewPart.ts │ │ │ └── viewUserInputEvents.ts │ │ ├── viewParts │ │ │ ├── contentWidgets │ │ │ │ └── contentWidgets.ts │ │ │ ├── currentLineHighlight │ │ │ │ ├── currentLineHighlight.css │ │ │ │ └── currentLineHighlight.ts │ │ │ ├── decorations │ │ │ │ ├── decorations.css │ │ │ │ └── decorations.ts │ │ │ ├── editorScrollbar │ │ │ │ └── editorScrollbar.ts │ │ │ ├── glyphMargin │ │ │ │ ├── glyphMargin.css │ │ │ │ └── glyphMargin.ts │ │ │ ├── indentGuides │ │ │ │ ├── indentGuides.css │ │ │ │ └── indentGuides.ts │ │ │ ├── lineNumbers │ │ │ │ ├── lineNumbers.css │ │ │ │ └── lineNumbers.ts │ │ │ ├── lines │ │ │ │ ├── rangeUtil.ts │ │ │ │ ├── viewLine.ts │ │ │ │ ├── viewLines.css │ │ │ │ └── viewLines.ts │ │ │ ├── linesDecorations │ │ │ │ ├── linesDecorations.css │ │ │ │ └── linesDecorations.ts │ │ │ ├── margin │ │ │ │ └── margin.ts │ │ │ ├── marginDecorations │ │ │ │ ├── marginDecorations.css │ │ │ │ └── marginDecorations.ts │ │ │ ├── minimap │ │ │ │ ├── minimap.css │ │ │ │ ├── minimap.ts │ │ │ │ ├── minimapCharRenderer.ts │ │ │ │ ├── minimapCharRendererFactory.ts │ │ │ │ ├── minimapCharSheet.ts │ │ │ │ └── minimapPreBaked.ts │ │ │ ├── overlayWidgets │ │ │ │ ├── overlayWidgets.css │ │ │ │ └── overlayWidgets.ts │ │ │ ├── overviewRuler │ │ │ │ ├── decorationsOverviewRuler.ts │ │ │ │ └── overviewRuler.ts │ │ │ ├── rulers │ │ │ │ ├── rulers.css │ │ │ │ └── rulers.ts │ │ │ ├── scrollDecoration │ │ │ │ ├── scrollDecoration.css │ │ │ │ └── scrollDecoration.ts │ │ │ ├── selections │ │ │ │ ├── selections.css │ │ │ │ └── selections.ts │ │ │ ├── viewCursors │ │ │ │ ├── viewCursor.ts │ │ │ │ ├── viewCursors.css │ │ │ │ └── viewCursors.ts │ │ │ └── viewZones │ │ │ │ └── viewZones.ts │ │ └── widget │ │ │ ├── codeEditorWidget.ts │ │ │ ├── diffEditorWidget.ts │ │ │ ├── diffNavigator.ts │ │ │ ├── diffReview.ts │ │ │ ├── embeddedCodeEditorWidget.ts │ │ │ ├── inlineDiffMargin.ts │ │ │ └── media │ │ │ ├── diffEditor.css │ │ │ ├── diffReview.css │ │ │ └── editor.css │ ├── common │ │ ├── commands │ │ │ ├── replaceCommand.ts │ │ │ ├── shiftCommand.ts │ │ │ ├── surroundSelectionCommand.ts │ │ │ └── trimTrailingWhitespaceCommand.ts │ │ ├── config │ │ │ ├── commonEditorConfig.ts │ │ │ ├── editorOptions.ts │ │ │ ├── editorZoom.ts │ │ │ └── fontInfo.ts │ │ ├── controller │ │ │ ├── cursor.ts │ │ │ ├── cursorAtomicMoveOperations.ts │ │ │ ├── cursorCollection.ts │ │ │ ├── cursorColumnSelection.ts │ │ │ ├── cursorCommon.ts │ │ │ ├── cursorDeleteOperations.ts │ │ │ ├── cursorEvents.ts │ │ │ ├── cursorMoveCommands.ts │ │ │ ├── cursorMoveOperations.ts │ │ │ ├── cursorTypeOperations.ts │ │ │ ├── cursorWordOperations.ts │ │ │ ├── oneCursor.ts │ │ │ └── wordCharacterClassifier.ts │ │ ├── core │ │ │ ├── characterClassifier.ts │ │ │ ├── editOperation.ts │ │ │ ├── lineTokens.ts │ │ │ ├── position.ts │ │ │ ├── range.ts │ │ │ ├── rgba.ts │ │ │ ├── selection.ts │ │ │ ├── stringBuilder.ts │ │ │ └── token.ts │ │ ├── diff │ │ │ └── diffComputer.ts │ │ ├── editorAction.ts │ │ ├── editorCommon.ts │ │ ├── editorContextKeys.ts │ │ ├── model.ts │ │ ├── model │ │ │ ├── editStack.ts │ │ │ ├── indentationGuesser.ts │ │ │ ├── intervalTree.ts │ │ │ ├── mirrorTextModel.ts │ │ │ ├── pieceTreeTextBuffer │ │ │ │ ├── pieceTreeBase.ts │ │ │ │ ├── pieceTreeTextBuffer.ts │ │ │ │ ├── pieceTreeTextBufferBuilder.ts │ │ │ │ └── rbTreeBase.ts │ │ │ ├── textChange.ts │ │ │ ├── textModel.ts │ │ │ ├── textModelEvents.ts │ │ │ ├── textModelSearch.ts │ │ │ ├── textModelTokens.ts │ │ │ ├── tokensStore.ts │ │ │ └── wordHelper.ts │ │ ├── modes.ts │ │ ├── modes │ │ │ ├── abstractMode.ts │ │ │ ├── languageConfiguration.ts │ │ │ ├── languageConfigurationRegistry.ts │ │ │ ├── languageFeatureRegistry.ts │ │ │ ├── languageSelector.ts │ │ │ ├── linkComputer.ts │ │ │ ├── modesRegistry.ts │ │ │ ├── nullMode.ts │ │ │ ├── supports.ts │ │ │ ├── supports │ │ │ │ ├── characterPair.ts │ │ │ │ ├── electricCharacter.ts │ │ │ │ ├── indentRules.ts │ │ │ │ ├── inplaceReplaceSupport.ts │ │ │ │ ├── onEnter.ts │ │ │ │ ├── richEditBrackets.ts │ │ │ │ └── tokenization.ts │ │ │ ├── textToHtmlTokenizer.ts │ │ │ ├── tokenization │ │ │ │ └── typescript.ts │ │ │ └── tokenizationRegistry.ts │ │ ├── services │ │ │ ├── editorSimpleWorker.ts │ │ │ ├── editorWorkerService.ts │ │ │ ├── editorWorkerServiceImpl.ts │ │ │ ├── getIconClasses.ts │ │ │ ├── getSemanticTokens.ts │ │ │ ├── languagesRegistry.ts │ │ │ ├── markerDecorationsServiceImpl.ts │ │ │ ├── markersDecorationService.ts │ │ │ ├── modeService.ts │ │ │ ├── modeServiceImpl.ts │ │ │ ├── modelService.ts │ │ │ ├── modelServiceImpl.ts │ │ │ ├── modelUndoRedoParticipant.ts │ │ │ ├── resolverService.ts │ │ │ ├── semanticTokensDto.ts │ │ │ ├── semanticTokensProviderStyling.ts │ │ │ ├── textResourceConfigurationService.ts │ │ │ ├── textResourceConfigurationServiceImpl.ts │ │ │ └── webWorker.ts │ │ ├── standalone │ │ │ ├── standaloneBase.ts │ │ │ └── standaloneEnums.ts │ │ ├── standaloneStrings.ts │ │ ├── view │ │ │ ├── editorColorRegistry.ts │ │ │ ├── overviewZoneManager.ts │ │ │ ├── renderingContext.ts │ │ │ ├── viewContext.ts │ │ │ └── viewEvents.ts │ │ ├── viewLayout │ │ │ ├── lineDecorations.ts │ │ │ ├── linesLayout.ts │ │ │ ├── viewLayout.ts │ │ │ ├── viewLineRenderer.ts │ │ │ └── viewLinesViewportData.ts │ │ └── viewModel │ │ │ ├── minimapTokensColorTracker.ts │ │ │ ├── monospaceLineBreaksComputer.ts │ │ │ ├── prefixSumComputer.ts │ │ │ ├── splitLinesCollection.ts │ │ │ ├── viewEventHandler.ts │ │ │ ├── viewModel.ts │ │ │ ├── viewModelDecorations.ts │ │ │ ├── viewModelEventDispatcher.ts │ │ │ └── viewModelImpl.ts │ ├── contrib │ │ ├── anchorSelect │ │ │ ├── anchorSelect.css │ │ │ └── anchorSelect.ts │ │ ├── bracketMatching │ │ │ ├── bracketMatching.css │ │ │ ├── bracketMatching.ts │ │ │ └── test │ │ │ │ └── bracketMatching.test.ts │ │ ├── caretOperations │ │ │ ├── caretOperations.ts │ │ │ ├── moveCaretCommand.ts │ │ │ ├── test │ │ │ │ └── moveCarretCommand.test.ts │ │ │ └── transpose.ts │ │ ├── clipboard │ │ │ └── clipboard.ts │ │ ├── codeAction │ │ │ ├── codeAction.ts │ │ │ ├── codeActionCommands.ts │ │ │ ├── codeActionContributions.ts │ │ │ ├── codeActionMenu.ts │ │ │ ├── codeActionModel.ts │ │ │ ├── codeActionUi.ts │ │ │ ├── lightBulbWidget.css │ │ │ ├── lightBulbWidget.ts │ │ │ ├── test │ │ │ │ ├── codeAction.test.ts │ │ │ │ ├── codeActionKeybindingResolver.test.ts │ │ │ │ └── codeActionModel.test.ts │ │ │ └── types.ts │ │ ├── codelens │ │ │ ├── codeLensCache.ts │ │ │ ├── codelens.ts │ │ │ ├── codelensController.ts │ │ │ ├── codelensWidget.css │ │ │ └── codelensWidget.ts │ │ ├── colorPicker │ │ │ ├── color.ts │ │ │ ├── colorContributions.ts │ │ │ ├── colorDetector.ts │ │ │ ├── colorPicker.css │ │ │ ├── colorPickerModel.ts │ │ │ ├── colorPickerWidget.ts │ │ │ └── images │ │ │ │ └── opacity-background.png │ │ ├── comment │ │ │ ├── blockCommentCommand.ts │ │ │ ├── comment.ts │ │ │ ├── lineCommentCommand.ts │ │ │ └── test │ │ │ │ ├── blockCommentCommand.test.ts │ │ │ │ └── lineCommentCommand.test.ts │ │ ├── contextmenu │ │ │ └── contextmenu.ts │ │ ├── cursorUndo │ │ │ ├── cursorUndo.ts │ │ │ └── test │ │ │ │ └── cursorUndo.test.ts │ │ ├── dnd │ │ │ ├── dnd.css │ │ │ ├── dnd.ts │ │ │ └── dragAndDropCommand.ts │ │ ├── documentSymbols │ │ │ ├── documentSymbols.ts │ │ │ ├── outlineModel.ts │ │ │ └── test │ │ │ │ └── outlineModel.test.ts │ │ ├── find │ │ │ ├── findController.ts │ │ │ ├── findDecorations.ts │ │ │ ├── findModel.ts │ │ │ ├── findOptionsWidget.ts │ │ │ ├── findState.ts │ │ │ ├── findWidget.css │ │ │ ├── findWidget.ts │ │ │ ├── replaceAllCommand.ts │ │ │ ├── replacePattern.ts │ │ │ └── test │ │ │ │ ├── find.test.ts │ │ │ │ ├── findController.test.ts │ │ │ │ ├── findModel.test.ts │ │ │ │ └── replacePattern.test.ts │ │ ├── folding │ │ │ ├── folding.css │ │ │ ├── folding.ts │ │ │ ├── foldingDecorations.ts │ │ │ ├── foldingModel.ts │ │ │ ├── foldingRanges.ts │ │ │ ├── hiddenRangeModel.ts │ │ │ ├── indentRangeProvider.ts │ │ │ ├── intializingRangeProvider.ts │ │ │ ├── syntaxRangeProvider.ts │ │ │ └── test │ │ │ │ ├── foldingModel.test.ts │ │ │ │ ├── foldingRanges.test.ts │ │ │ │ ├── hiddenRangeModel.test.ts │ │ │ │ ├── indentFold.test.ts │ │ │ │ ├── indentRangeProvider.test.ts │ │ │ │ └── syntaxFold.test.ts │ │ ├── fontZoom │ │ │ └── fontZoom.ts │ │ ├── format │ │ │ ├── format.ts │ │ │ ├── formatActions.ts │ │ │ └── formattingEdit.ts │ │ ├── gotoError │ │ │ ├── gotoError.ts │ │ │ ├── gotoErrorWidget.ts │ │ │ ├── markerNavigationService.ts │ │ │ └── media │ │ │ │ └── gotoErrorWidget.css │ │ ├── gotoSymbol │ │ │ ├── goToCommands.ts │ │ │ ├── goToSymbol.ts │ │ │ ├── link │ │ │ │ ├── clickLinkGesture.ts │ │ │ │ ├── goToDefinitionAtPosition.css │ │ │ │ └── goToDefinitionAtPosition.ts │ │ │ ├── peek │ │ │ │ ├── referencesController.ts │ │ │ │ ├── referencesTree.ts │ │ │ │ ├── referencesWidget.css │ │ │ │ └── referencesWidget.ts │ │ │ ├── referencesModel.ts │ │ │ ├── symbolNavigation.ts │ │ │ └── test │ │ │ │ └── referencesModel.test.ts │ │ ├── hover │ │ │ ├── colorHoverParticipant.ts │ │ │ ├── getHover.ts │ │ │ ├── hover.ts │ │ │ ├── hoverOperation.ts │ │ │ ├── hoverTypes.ts │ │ │ ├── hoverWidgets.ts │ │ │ ├── markdownHoverParticipant.ts │ │ │ ├── markerHoverParticipant.ts │ │ │ ├── modesContentHover.ts │ │ │ └── modesGlyphHover.ts │ │ ├── inPlaceReplace │ │ │ ├── inPlaceReplace.ts │ │ │ └── inPlaceReplaceCommand.ts │ │ ├── indentation │ │ │ ├── indentUtils.ts │ │ │ ├── indentation.ts │ │ │ └── test │ │ │ │ └── indentation.test.ts │ │ ├── inlayHints │ │ │ └── inlayHintsController.ts │ │ ├── inlineCompletions │ │ │ ├── ghostText.css │ │ │ ├── ghostTextController.ts │ │ │ ├── ghostTextWidget.ts │ │ │ ├── inlineCompletionsHoverParticipant.ts │ │ │ ├── inlineCompletionsModel.ts │ │ │ ├── suggestWidgetAdapterModel.ts │ │ │ └── utils.ts │ │ ├── linesOperations │ │ │ ├── copyLinesCommand.ts │ │ │ ├── linesOperations.ts │ │ │ ├── moveLinesCommand.ts │ │ │ ├── sortLinesCommand.ts │ │ │ └── test │ │ │ │ ├── copyLinesCommand.test.ts │ │ │ │ ├── linesOperations.test.ts │ │ │ │ ├── moveLinesCommand.test.ts │ │ │ │ └── sortLinesCommand.test.ts │ │ ├── linkedEditing │ │ │ ├── linkedEditing.ts │ │ │ └── test │ │ │ │ └── linkedEditing.test..ts │ │ ├── links │ │ │ ├── getLinks.ts │ │ │ ├── links.css │ │ │ └── links.ts │ │ ├── message │ │ │ ├── messageController.css │ │ │ └── messageController.ts │ │ ├── multicursor │ │ │ ├── multicursor.ts │ │ │ └── test │ │ │ │ └── multicursor.test.ts │ │ ├── parameterHints │ │ │ ├── parameterHints.css │ │ │ ├── parameterHints.ts │ │ │ ├── parameterHintsModel.ts │ │ │ ├── parameterHintsWidget.ts │ │ │ ├── provideSignatureHelp.ts │ │ │ └── test │ │ │ │ └── parameterHintsModel.test.ts │ │ ├── peekView │ │ │ ├── media │ │ │ │ └── peekViewWidget.css │ │ │ └── peekView.ts │ │ ├── quickAccess │ │ │ ├── commandsQuickAccess.ts │ │ │ ├── editorNavigationQuickAccess.ts │ │ │ ├── gotoLineQuickAccess.ts │ │ │ └── gotoSymbolQuickAccess.ts │ │ ├── rename │ │ │ ├── rename.ts │ │ │ ├── renameInputField.css │ │ │ └── renameInputField.ts │ │ ├── smartSelect │ │ │ ├── bracketSelections.ts │ │ │ ├── smartSelect.ts │ │ │ ├── test │ │ │ │ └── smartSelect.test.ts │ │ │ └── wordSelections.ts │ │ ├── snippet │ │ │ ├── snippet.md │ │ │ ├── snippetController2.ts │ │ │ ├── snippetParser.ts │ │ │ ├── snippetSession.css │ │ │ ├── snippetSession.ts │ │ │ ├── snippetVariables.ts │ │ │ └── test │ │ │ │ ├── snippetController2.old.test.ts │ │ │ │ ├── snippetController2.test.ts │ │ │ │ ├── snippetParser.test.ts │ │ │ │ ├── snippetSession.test.ts │ │ │ │ └── snippetVariables.test.ts │ │ ├── suggest │ │ │ ├── completionModel.ts │ │ │ ├── media │ │ │ │ └── suggest.css │ │ │ ├── resizable.ts │ │ │ ├── suggest.ts │ │ │ ├── suggestAlternatives.ts │ │ │ ├── suggestCommitCharacters.ts │ │ │ ├── suggestController.ts │ │ │ ├── suggestMemory.ts │ │ │ ├── suggestModel.ts │ │ │ ├── suggestOvertypingCapturer.ts │ │ │ ├── suggestWidget.ts │ │ │ ├── suggestWidgetDetails.ts │ │ │ ├── suggestWidgetRenderer.ts │ │ │ ├── suggestWidgetStatus.ts │ │ │ ├── test │ │ │ │ ├── completionModel.test.ts │ │ │ │ ├── suggest.test.ts │ │ │ │ ├── suggestController.test.ts │ │ │ │ ├── suggestMemory.test.ts │ │ │ │ ├── suggestModel.test.ts │ │ │ │ └── wordDistance.test.ts │ │ │ ├── wordContextKey.ts │ │ │ └── wordDistance.ts │ │ ├── symbolIcons │ │ │ └── symbolIcons.ts │ │ ├── toggleTabFocusMode │ │ │ └── toggleTabFocusMode.ts │ │ ├── tokenization │ │ │ └── tokenization.ts │ │ ├── unusualLineTerminators │ │ │ └── unusualLineTerminators.ts │ │ ├── viewportSemanticTokens │ │ │ └── viewportSemanticTokens.ts │ │ ├── wordHighlighter │ │ │ └── wordHighlighter.ts │ │ ├── wordOperations │ │ │ ├── test │ │ │ │ ├── wordOperations.test.ts │ │ │ │ └── wordTestUtils.ts │ │ │ └── wordOperations.ts │ │ ├── wordPartOperations │ │ │ ├── test │ │ │ │ └── wordPartOperations.test.ts │ │ │ └── wordPartOperations.ts │ │ └── zoneWidget │ │ │ ├── zoneWidget.css │ │ │ └── zoneWidget.ts │ ├── editor.all.ts │ ├── editor.api.ts │ ├── editor.main.ts │ ├── editor.worker.ts │ ├── standalone │ │ ├── browser │ │ │ ├── accessibilityHelp │ │ │ │ ├── accessibilityHelp.css │ │ │ │ └── accessibilityHelp.ts │ │ │ ├── colorizer.ts │ │ │ ├── iPadShowKeyboard │ │ │ │ ├── iPadShowKeyboard.css │ │ │ │ ├── iPadShowKeyboard.ts │ │ │ │ ├── keyboard-dark.svg │ │ │ │ └── keyboard-light.svg │ │ │ ├── inspectTokens │ │ │ │ ├── inspectTokens.css │ │ │ │ └── inspectTokens.ts │ │ │ ├── quickAccess │ │ │ │ ├── standaloneCommandsQuickAccess.ts │ │ │ │ ├── standaloneGotoLineQuickAccess.ts │ │ │ │ ├── standaloneGotoSymbolQuickAccess.ts │ │ │ │ └── standaloneHelpQuickAccess.ts │ │ │ ├── quickInput │ │ │ │ ├── standaloneQuickInput.css │ │ │ │ └── standaloneQuickInputServiceImpl.ts │ │ │ ├── referenceSearch │ │ │ │ └── standaloneReferenceSearch.ts │ │ │ ├── simpleServices.ts │ │ │ ├── standalone-tokens.css │ │ │ ├── standaloneCodeEditor.ts │ │ │ ├── standaloneCodeServiceImpl.ts │ │ │ ├── standaloneEditor.ts │ │ │ ├── standaloneLanguages.ts │ │ │ ├── standaloneServices.ts │ │ │ ├── standaloneThemeServiceImpl.ts │ │ │ └── toggleHighContrast │ │ │ │ └── toggleHighContrast.ts │ │ ├── common │ │ │ ├── monarch │ │ │ │ ├── monarchCommon.ts │ │ │ │ ├── monarchCompile.ts │ │ │ │ ├── monarchLexer.ts │ │ │ │ └── monarchTypes.ts │ │ │ ├── standaloneThemeService.ts │ │ │ └── themes.ts │ │ └── test │ │ │ ├── browser │ │ │ ├── simpleServices.test.ts │ │ │ └── standaloneLanguages.test.ts │ │ │ └── monarch │ │ │ └── monarch.test.ts │ └── test │ │ ├── browser │ │ ├── commands │ │ │ ├── shiftCommand.test.ts │ │ │ ├── sideEditing.test.ts │ │ │ └── trimTrailingWhitespaceCommand.test.ts │ │ ├── controller │ │ │ ├── cursor.test.ts │ │ │ ├── cursorMoveCommand.test.ts │ │ │ ├── imeTester.html │ │ │ ├── imeTester.ts │ │ │ ├── inputRecorder.html │ │ │ └── textAreaState.test.ts │ │ ├── core │ │ │ └── editorState.test.ts │ │ ├── editorTestServices.ts │ │ ├── services │ │ │ ├── decorationRenderOptions.test.ts │ │ │ └── openerService.test.ts │ │ ├── testCodeEditor.ts │ │ ├── testCommand.ts │ │ └── view │ │ │ ├── minimapCharRenderer.test.ts │ │ │ └── viewLayer.test.ts │ │ ├── common │ │ ├── commentMode.ts │ │ ├── config │ │ │ └── commonEditorConfig.test.ts │ │ ├── controller │ │ │ ├── cursorAtomicMoveOperations.test.ts │ │ │ └── cursorMoveHelper.test.ts │ │ ├── core │ │ │ ├── characterClassifier.test.ts │ │ │ ├── lineTokens.test.ts │ │ │ ├── range.test.ts │ │ │ ├── stringBuilder.test.ts │ │ │ └── viewLineToken.ts │ │ ├── diff │ │ │ └── diffComputer.test.ts │ │ ├── editorTestUtils.ts │ │ ├── mocks │ │ │ ├── mockMode.ts │ │ │ └── testConfiguration.ts │ │ ├── model │ │ │ ├── benchmark │ │ │ │ ├── benchmarkUtils.ts │ │ │ │ ├── bootstrap.js │ │ │ │ ├── entry.ts │ │ │ │ ├── modelbuilder.benchmark.ts │ │ │ │ ├── operations.benchmark.ts │ │ │ │ └── searchNReplace.benchmark.ts │ │ │ ├── editStack.test.ts │ │ │ ├── editableTextModel.test.ts │ │ │ ├── editableTextModelAuto.test.ts │ │ │ ├── editableTextModelTestUtils.ts │ │ │ ├── intervalTree.test.ts │ │ │ ├── linesTextBuffer │ │ │ │ ├── linesTextBuffer.test.ts │ │ │ │ ├── linesTextBufferBuilder.test.ts │ │ │ │ └── textBufferAutoTestUtils.ts │ │ │ ├── model.line.test.ts │ │ │ ├── model.modes.test.ts │ │ │ ├── model.test.ts │ │ │ ├── modelDecorations.test.ts │ │ │ ├── modelEditOperation.test.ts │ │ │ ├── pieceTreeTextBuffer │ │ │ │ └── pieceTreeTextBuffer.test.ts │ │ │ ├── textChange.test.ts │ │ │ ├── textModel.test.ts │ │ │ ├── textModelSearch.test.ts │ │ │ ├── textModelWithTokens.test.ts │ │ │ └── tokensStore.test.ts │ │ ├── modes │ │ │ ├── languageConfiguration.test.ts │ │ │ ├── languageSelector.test.ts │ │ │ ├── linkComputer.test.ts │ │ │ ├── supports │ │ │ │ ├── characterPair.test.ts │ │ │ │ ├── electricCharacter.test.ts │ │ │ │ ├── javascriptOnEnterRules.ts │ │ │ │ ├── onEnter.test.ts │ │ │ │ ├── richEditBrackets.test.ts │ │ │ │ └── tokenization.test.ts │ │ │ └── textToHtmlTokenizer.test.ts │ │ ├── modesTestUtils.ts │ │ ├── services │ │ │ ├── editorSimpleWorker.test.ts │ │ │ ├── languagesRegistry.test.ts │ │ │ ├── modelService.test.ts │ │ │ ├── semanticTokensDto.test.ts │ │ │ ├── testTextResourcePropertiesService.ts │ │ │ └── textResourceConfigurationService.test.ts │ │ ├── view │ │ │ └── overviewZoneManager.test.ts │ │ ├── viewLayout │ │ │ ├── editorLayoutProvider.test.ts │ │ │ ├── lineDecorations.test.ts │ │ │ ├── linesLayout.test.ts │ │ │ └── viewLineRenderer.test.ts │ │ └── viewModel │ │ │ ├── monospaceLineBreaksComputer.test.ts │ │ │ ├── prefixSumComputer.test.ts │ │ │ ├── splitLinesCollection.test.ts │ │ │ ├── testViewModel.ts │ │ │ ├── viewModelDecorations.test.ts │ │ │ └── viewModelImpl.test.ts │ │ └── node │ │ └── classification │ │ ├── typescript-test.ts │ │ └── typescript.test.ts │ ├── loader.js │ ├── monaco.d.ts │ ├── nls.build.js │ ├── nls.d.ts │ ├── nls.js │ ├── nls.mock.ts │ ├── platform │ ├── accessibility │ │ └── common │ │ │ ├── accessibility.ts │ │ │ └── accessibilityService.ts │ ├── actions │ │ ├── browser │ │ │ ├── dropdownWithPrimaryActionViewItem.ts │ │ │ ├── menuEntryActionViewItem.css │ │ │ └── menuEntryActionViewItem.ts │ │ ├── common │ │ │ ├── actions.ts │ │ │ └── menuService.ts │ │ └── test │ │ │ └── common │ │ │ └── menuService.test.ts │ ├── backup │ │ ├── electron-main │ │ │ ├── backup.ts │ │ │ └── backupMainService.ts │ │ ├── node │ │ │ └── backup.ts │ │ └── test │ │ │ └── electron-main │ │ │ └── backupMainService.test.ts │ ├── browser │ │ └── contextScopedHistoryWidget.ts │ ├── checksum │ │ ├── common │ │ │ └── checksumService.ts │ │ ├── electron-sandbox │ │ │ └── checksumService.ts │ │ ├── node │ │ │ └── checksumService.ts │ │ └── test │ │ │ └── node │ │ │ ├── checksumService.test.ts │ │ │ └── fixtures │ │ │ └── lorem.txt │ ├── clipboard │ │ ├── browser │ │ │ └── clipboardService.ts │ │ └── common │ │ │ └── clipboardService.ts │ ├── commands │ │ ├── common │ │ │ └── commands.ts │ │ └── test │ │ │ └── common │ │ │ └── commands.test.ts │ ├── configuration │ │ ├── common │ │ │ ├── configuration.ts │ │ │ ├── configurationModels.ts │ │ │ ├── configurationRegistry.ts │ │ │ └── configurationService.ts │ │ └── test │ │ │ └── common │ │ │ ├── configuration.test.ts │ │ │ ├── configurationModels.test.ts │ │ │ ├── configurationRegistry.test.ts │ │ │ ├── configurationService.test.ts │ │ │ └── testConfigurationService.ts │ ├── contextkey │ │ ├── browser │ │ │ └── contextKeyService.ts │ │ ├── common │ │ │ ├── contextkey.ts │ │ │ └── contextkeys.ts │ │ └── test │ │ │ ├── browser │ │ │ └── contextkey.test.ts │ │ │ └── common │ │ │ └── contextkey.test.ts │ ├── contextview │ │ └── browser │ │ │ ├── contextMenuHandler.css │ │ │ ├── contextMenuHandler.ts │ │ │ ├── contextMenuService.ts │ │ │ ├── contextView.ts │ │ │ └── contextViewService.ts │ ├── debug │ │ ├── common │ │ │ ├── extensionHostDebug.ts │ │ │ └── extensionHostDebugIpc.ts │ │ └── electron-main │ │ │ └── extensionHostDebugIpc.ts │ ├── diagnostics │ │ ├── common │ │ │ └── diagnostics.ts │ │ ├── electron-sandbox │ │ │ └── diagnosticsService.ts │ │ └── node │ │ │ └── diagnosticsService.ts │ ├── dialogs │ │ ├── common │ │ │ └── dialogs.ts │ │ ├── electron-main │ │ │ └── dialogMainService.ts │ │ └── test │ │ │ └── common │ │ │ └── testDialogService.ts │ ├── download │ │ └── common │ │ │ ├── download.ts │ │ │ ├── downloadIpc.ts │ │ │ └── downloadService.ts │ ├── driver │ │ ├── browser │ │ │ ├── baseDriver.ts │ │ │ └── driver.ts │ │ ├── common │ │ │ ├── driver.ts │ │ │ └── driverIpc.ts │ │ ├── electron-main │ │ │ └── driver.ts │ │ ├── electron-sandbox │ │ │ └── driver.ts │ │ └── node │ │ │ └── driver.ts │ ├── editor │ │ └── common │ │ │ └── editor.ts │ ├── encryption │ │ ├── common │ │ │ └── encryptionService.ts │ │ └── electron-main │ │ │ └── encryptionMainService.ts │ ├── environment │ │ ├── common │ │ │ ├── argv.ts │ │ │ ├── environment.ts │ │ │ └── environmentService.ts │ │ ├── electron-main │ │ │ └── environmentMainService.ts │ │ ├── node │ │ │ ├── argv.ts │ │ │ ├── argvHelper.ts │ │ │ ├── environmentService.ts │ │ │ ├── shellEnv.ts │ │ │ ├── stdin.ts │ │ │ ├── userDataPath.d.ts │ │ │ ├── userDataPath.js │ │ │ └── wait.ts │ │ └── test │ │ │ └── node │ │ │ ├── argv.test.ts │ │ │ ├── environmentService.test.ts │ │ │ ├── nativeModules.test.ts │ │ │ └── userDataPath.test.ts │ ├── extensionManagement │ │ ├── common │ │ │ ├── configRemotes.ts │ │ │ ├── extensionEnablementService.ts │ │ │ ├── extensionGalleryService.ts │ │ │ ├── extensionManagement.ts │ │ │ ├── extensionManagementCLIService.ts │ │ │ ├── extensionManagementIpc.ts │ │ │ ├── extensionManagementUtil.ts │ │ │ ├── extensionNls.ts │ │ │ ├── extensionTipsService.ts │ │ │ ├── extensionUrlTrust.ts │ │ │ └── media │ │ │ │ └── defaultIcon.png │ │ ├── electron-sandbox │ │ │ └── extensionTipsService.ts │ │ ├── node │ │ │ ├── extensionDownloader.ts │ │ │ ├── extensionLifecycle.ts │ │ │ ├── extensionManagementService.ts │ │ │ ├── extensionManagementUtil.ts │ │ │ ├── extensionUrlTrustService.ts │ │ │ ├── extensionsManifestCache.ts │ │ │ ├── extensionsScanner.ts │ │ │ └── extensionsWatcher.ts │ │ └── test │ │ │ └── common │ │ │ ├── configRemotes.test.ts │ │ │ ├── extensionGalleryService.test.ts │ │ │ └── extensionManagement.test.ts │ ├── extensionRecommendations │ │ ├── common │ │ │ └── extensionRecommendations.ts │ │ └── electron-sandbox │ │ │ └── extensionRecommendationsIpc.ts │ ├── extensions │ │ ├── common │ │ │ ├── extensionValidator.ts │ │ │ └── extensions.ts │ │ └── test │ │ │ └── common │ │ │ └── extensionValidator.test.ts │ ├── externalTerminal │ │ ├── common │ │ │ └── externalTerminal.ts │ │ ├── electron-main │ │ │ └── externalTerminalService.test.ts │ │ ├── electron-sandbox │ │ │ └── externalTerminalMainService.ts │ │ └── node │ │ │ └── externalTerminalService.ts │ ├── files │ │ ├── browser │ │ │ ├── htmlFileSystemProvider.ts │ │ │ └── indexedDBFileSystemProvider.ts │ │ ├── common │ │ │ ├── fileService.ts │ │ │ ├── files.ts │ │ │ ├── inMemoryFilesystemProvider.ts │ │ │ ├── io.ts │ │ │ └── ipcFileSystemProvider.ts │ │ ├── electron-browser │ │ │ └── diskFileSystemProvider.ts │ │ ├── node │ │ │ ├── diskFileSystemProvider.ts │ │ │ └── watcher │ │ │ │ ├── nodejs │ │ │ │ └── watcherService.ts │ │ │ │ ├── nsfw │ │ │ │ ├── nsfwWatcherService.ts │ │ │ │ ├── test │ │ │ │ │ └── nsfwWatcherService.test.ts │ │ │ │ ├── watcher.ts │ │ │ │ ├── watcherApp.ts │ │ │ │ └── watcherService.ts │ │ │ │ ├── unix │ │ │ │ ├── chokidarWatcherService.ts │ │ │ │ ├── test │ │ │ │ │ └── chockidarWatcherService.test.ts │ │ │ │ ├── watcher.ts │ │ │ │ ├── watcherApp.ts │ │ │ │ └── watcherService.ts │ │ │ │ ├── watcher.ts │ │ │ │ └── win32 │ │ │ │ ├── CodeHelper.exe │ │ │ │ ├── CodeHelper.md │ │ │ │ ├── csharpWatcherService.ts │ │ │ │ └── watcherService.ts │ │ └── test │ │ │ ├── browser │ │ │ ├── fileService.test.ts │ │ │ └── indexedDBFileService.test.ts │ │ │ ├── common │ │ │ ├── files.test.ts │ │ │ └── nullFileSystemProvider.ts │ │ │ └── electron-browser │ │ │ ├── diskFileService.test.ts │ │ │ ├── fixtures │ │ │ ├── resolver │ │ │ │ ├── examples │ │ │ │ │ ├── company.js │ │ │ │ │ ├── conway.js │ │ │ │ │ ├── employee.js │ │ │ │ │ └── small.js │ │ │ │ ├── index.html │ │ │ │ ├── other │ │ │ │ │ └── deep │ │ │ │ │ │ ├── company.js │ │ │ │ │ │ ├── conway.js │ │ │ │ │ │ ├── employee.js │ │ │ │ │ │ └── small.js │ │ │ │ └── site.css │ │ │ └── service │ │ │ │ ├── binary.txt │ │ │ │ ├── deep │ │ │ │ ├── company.js │ │ │ │ ├── conway.js │ │ │ │ ├── employee.js │ │ │ │ └── small.js │ │ │ │ ├── index.html │ │ │ │ ├── lorem.txt │ │ │ │ ├── small.txt │ │ │ │ ├── small_umlaut.txt │ │ │ │ ├── some_utf16le.css │ │ │ │ └── some_utf8_bom.txt │ │ │ └── normalizer.test.ts │ ├── instantiation │ │ ├── common │ │ │ ├── descriptors.ts │ │ │ ├── extensions.ts │ │ │ ├── graph.ts │ │ │ ├── instantiation.ts │ │ │ ├── instantiationService.ts │ │ │ └── serviceCollection.ts │ │ └── test │ │ │ └── common │ │ │ ├── graph.test.ts │ │ │ ├── instantiationService.test.ts │ │ │ └── instantiationServiceMock.ts │ ├── ipc │ │ ├── electron-browser │ │ │ └── mainProcessService.ts │ │ └── electron-sandbox │ │ │ ├── mainProcessService.ts │ │ │ └── services.ts │ ├── issue │ │ ├── common │ │ │ ├── issue.ts │ │ │ └── issueReporterUtil.ts │ │ ├── electron-main │ │ │ └── issueMainService.ts │ │ └── electron-sandbox │ │ │ └── issue.ts │ ├── jsonschemas │ │ └── common │ │ │ └── jsonContributionRegistry.ts │ ├── keybinding │ │ ├── common │ │ │ ├── abstractKeybindingService.ts │ │ │ ├── baseResolvedKeybinding.ts │ │ │ ├── keybinding.ts │ │ │ ├── keybindingResolver.ts │ │ │ ├── keybindingsRegistry.ts │ │ │ ├── resolvedKeybindingItem.ts │ │ │ └── usLayoutResolvedKeybinding.ts │ │ └── test │ │ │ └── common │ │ │ ├── abstractKeybindingService.test.ts │ │ │ ├── keybindingLabels.test.ts │ │ │ ├── keybindingResolver.test.ts │ │ │ └── mockKeybindingService.ts │ ├── keyboardLayout │ │ ├── common │ │ │ ├── dispatchConfig.ts │ │ │ ├── keyboardLayout.ts │ │ │ ├── keyboardLayoutService.ts │ │ │ └── keyboardMapper.ts │ │ └── electron-main │ │ │ └── keyboardLayoutMainService.ts │ ├── label │ │ └── common │ │ │ └── label.ts │ ├── launch │ │ ├── common │ │ │ └── launch.ts │ │ └── electron-main │ │ │ └── launchMainService.ts │ ├── layout │ │ └── browser │ │ │ └── layoutService.ts │ ├── lifecycle │ │ ├── common │ │ │ └── lifecycle.ts │ │ └── electron-main │ │ │ └── lifecycleMainService.ts │ ├── list │ │ └── browser │ │ │ └── listService.ts │ ├── localizations │ │ ├── common │ │ │ └── localizations.ts │ │ └── node │ │ │ └── localizations.ts │ ├── log │ │ ├── browser │ │ │ └── log.ts │ │ ├── common │ │ │ ├── bufferLog.ts │ │ │ ├── fileLog.ts │ │ │ ├── log.ts │ │ │ └── logIpc.ts │ │ └── node │ │ │ ├── loggerService.ts │ │ │ └── spdlogLog.ts │ ├── markers │ │ ├── common │ │ │ ├── markerService.ts │ │ │ └── markers.ts │ │ └── test │ │ │ └── common │ │ │ └── markerService.test.ts │ ├── menubar │ │ ├── common │ │ │ └── menubar.ts │ │ ├── electron-main │ │ │ ├── menubar.ts │ │ │ └── menubarMainService.ts │ │ └── electron-sandbox │ │ │ └── menubar.ts │ ├── native │ │ ├── common │ │ │ └── native.ts │ │ ├── electron-main │ │ │ └── nativeHostMainService.ts │ │ └── electron-sandbox │ │ │ ├── native.ts │ │ │ └── nativeHostService.ts │ ├── notification │ │ ├── common │ │ │ └── notification.ts │ │ └── test │ │ │ └── common │ │ │ └── testNotificationService.ts │ ├── opener │ │ ├── browser │ │ │ └── link.ts │ │ └── common │ │ │ └── opener.ts │ ├── product │ │ └── common │ │ │ ├── product.ts │ │ │ └── productService.ts │ ├── progress │ │ └── common │ │ │ └── progress.ts │ ├── protocol │ │ └── electron-main │ │ │ ├── protocol.ts │ │ │ └── protocolMainService.ts │ ├── quickinput │ │ ├── browser │ │ │ ├── commandsQuickAccess.ts │ │ │ ├── helpQuickAccess.ts │ │ │ ├── pickerQuickAccess.ts │ │ │ ├── quickAccess.ts │ │ │ └── quickInput.ts │ │ └── common │ │ │ ├── quickAccess.ts │ │ │ └── quickInput.ts │ ├── registry │ │ ├── common │ │ │ └── platform.ts │ │ └── test │ │ │ └── common │ │ │ └── platform.test.ts │ ├── remote │ │ ├── browser │ │ │ ├── browserSocketFactory.ts │ │ │ └── remoteAuthorityResolverService.ts │ │ ├── common │ │ │ ├── remoteAgentConnection.ts │ │ │ ├── remoteAgentEnvironment.ts │ │ │ ├── remoteAuthorityResolver.ts │ │ │ ├── remoteHosts.ts │ │ │ └── tunnel.ts │ │ ├── electron-sandbox │ │ │ └── remoteAuthorityResolverService.ts │ │ └── node │ │ │ ├── nodeSocketFactory.ts │ │ │ └── tunnelService.ts │ ├── request │ │ ├── browser │ │ │ └── requestService.ts │ │ ├── common │ │ │ ├── request.ts │ │ │ └── requestIpc.ts │ │ ├── electron-main │ │ │ └── requestMainService.ts │ │ └── node │ │ │ ├── proxy.ts │ │ │ └── requestService.ts │ ├── serviceMachineId │ │ └── common │ │ │ └── serviceMachineId.ts │ ├── severityIcon │ │ └── common │ │ │ └── severityIcon.ts │ ├── sharedProcess │ │ ├── electron-main │ │ │ └── sharedProcess.ts │ │ └── node │ │ │ └── sharedProcess.ts │ ├── sign │ │ ├── browser │ │ │ └── signService.ts │ │ ├── common │ │ │ └── sign.ts │ │ └── node │ │ │ └── signService.ts │ ├── state │ │ ├── electron-main │ │ │ ├── state.ts │ │ │ └── stateMainService.ts │ │ └── test │ │ │ └── electron-main │ │ │ └── state.test.ts │ ├── storage │ │ ├── browser │ │ │ └── storageService.ts │ │ ├── common │ │ │ ├── storage.ts │ │ │ └── storageIpc.ts │ │ ├── electron-main │ │ │ ├── storageIpc.ts │ │ │ ├── storageMain.ts │ │ │ └── storageMainService.ts │ │ ├── electron-sandbox │ │ │ └── storageService.ts │ │ └── test │ │ │ ├── browser │ │ │ └── storageService.test.ts │ │ │ ├── common │ │ │ └── storageService.test.ts │ │ │ └── electron-main │ │ │ └── storageMainService.test.ts │ ├── telemetry │ │ ├── browser │ │ │ └── errorTelemetry.ts │ │ ├── common │ │ │ ├── commonProperties.ts │ │ │ ├── errorTelemetry.ts │ │ │ ├── gdprTypings.ts │ │ │ ├── telemetry.ts │ │ │ ├── telemetryIpc.ts │ │ │ ├── telemetryLogAppender.ts │ │ │ ├── telemetryService.ts │ │ │ └── telemetryUtils.ts │ │ ├── electron-sandbox │ │ │ └── customEndpointTelemetryService.ts │ │ ├── node │ │ │ ├── appInsightsAppender.ts │ │ │ ├── customEndpointTelemetryService.ts │ │ │ ├── errorTelemetry.ts │ │ │ └── telemetry.ts │ │ └── test │ │ │ ├── browser │ │ │ └── telemetryService.test.ts │ │ │ ├── common │ │ │ └── telemetryLogAppender.test.ts │ │ │ └── electron-browser │ │ │ └── appInsightsAppender.test.ts │ ├── terminal │ │ ├── common │ │ │ ├── environmentVariable.ts │ │ │ ├── terminal.ts │ │ │ ├── terminalDataBuffering.ts │ │ │ ├── terminalEnvironment.ts │ │ │ ├── terminalPlatformConfiguration.ts │ │ │ ├── terminalProcess.ts │ │ │ └── terminalRecorder.ts │ │ ├── electron-sandbox │ │ │ └── terminal.ts │ │ ├── node │ │ │ ├── heartbeatService.ts │ │ │ ├── ptyHostMain.ts │ │ │ ├── ptyHostService.ts │ │ │ ├── ptyService.ts │ │ │ ├── terminalEnvironment.ts │ │ │ ├── terminalProcess.ts │ │ │ ├── terminalProfiles.ts │ │ │ └── windowsShellHelper.ts │ │ └── test │ │ │ └── common │ │ │ └── terminalRecorder.test.ts │ ├── theme │ │ ├── browser │ │ │ └── iconsStyleSheet.ts │ │ ├── common │ │ │ ├── colorRegistry.ts │ │ │ ├── iconRegistry.ts │ │ │ ├── styler.ts │ │ │ ├── theme.ts │ │ │ ├── themeService.ts │ │ │ └── tokenClassificationRegistry.ts │ │ ├── electron-main │ │ │ └── themeMainService.ts │ │ └── test │ │ │ └── common │ │ │ └── testThemeService.ts │ ├── undoRedo │ │ ├── common │ │ │ ├── undoRedo.ts │ │ │ └── undoRedoService.ts │ │ └── test │ │ │ └── common │ │ │ └── undoRedoService.test.ts │ ├── update │ │ ├── common │ │ │ ├── update.config.contribution.ts │ │ │ ├── update.ts │ │ │ └── updateIpc.ts │ │ └── electron-main │ │ │ ├── abstractUpdateService.ts │ │ │ ├── updateService.darwin.ts │ │ │ ├── updateService.linux.ts │ │ │ ├── updateService.snap.ts │ │ │ └── updateService.win32.ts │ ├── url │ │ ├── common │ │ │ ├── url.ts │ │ │ ├── urlIpc.ts │ │ │ └── urlService.ts │ │ └── electron-main │ │ │ └── electronUrlListener.ts │ ├── userDataSync │ │ ├── common │ │ │ ├── abstractSynchronizer.ts │ │ │ ├── content.ts │ │ │ ├── extensionsMerge.ts │ │ │ ├── extensionsStorageSync.ts │ │ │ ├── extensionsSync.ts │ │ │ ├── globalStateMerge.ts │ │ │ ├── globalStateSync.ts │ │ │ ├── ignoredExtensions.ts │ │ │ ├── keybindingsMerge.ts │ │ │ ├── keybindingsSync.ts │ │ │ ├── settingsMerge.ts │ │ │ ├── settingsSync.ts │ │ │ ├── snippetsMerge.ts │ │ │ ├── snippetsSync.ts │ │ │ ├── userDataAutoSyncService.ts │ │ │ ├── userDataSync.ts │ │ │ ├── userDataSyncAccount.ts │ │ │ ├── userDataSyncBackupStoreService.ts │ │ │ ├── userDataSyncIpc.ts │ │ │ ├── userDataSyncLog.ts │ │ │ ├── userDataSyncMachines.ts │ │ │ ├── userDataSyncResourceEnablementService.ts │ │ │ ├── userDataSyncService.ts │ │ │ ├── userDataSyncServiceIpc.ts │ │ │ └── userDataSyncStoreService.ts │ │ ├── electron-sandbox │ │ │ └── userDataAutoSyncService.ts │ │ └── test │ │ │ └── common │ │ │ ├── extensionsMerge.test.ts │ │ │ ├── globalStateMerge.test.ts │ │ │ ├── globalStateSync.test.ts │ │ │ ├── keybindingsMerge.test.ts │ │ │ ├── keybindingsSync.test.ts │ │ │ ├── settingsMerge.test.ts │ │ │ ├── settingsSync.test.ts │ │ │ ├── snippetsMerge.test.ts │ │ │ ├── snippetsSync.test.ts │ │ │ ├── synchronizer.test.ts │ │ │ ├── userDataAutoSyncService.test.ts │ │ │ ├── userDataSyncClient.ts │ │ │ ├── userDataSyncService.test.ts │ │ │ └── userDataSyncStoreService.test.ts │ ├── webview │ │ ├── common │ │ │ ├── mimeTypes.ts │ │ │ ├── webviewManagerService.ts │ │ │ └── webviewPortMapping.ts │ │ └── electron-main │ │ │ ├── webviewMainService.ts │ │ │ └── webviewProtocolProvider.ts │ ├── windows │ │ ├── common │ │ │ └── windows.ts │ │ ├── electron-main │ │ │ ├── window.ts │ │ │ ├── windows.ts │ │ │ ├── windowsFinder.ts │ │ │ ├── windowsMainService.ts │ │ │ └── windowsStateHandler.ts │ │ ├── electron-sandbox │ │ │ └── window.ts │ │ ├── node │ │ │ └── windowTracker.ts │ │ └── test │ │ │ └── electron-main │ │ │ ├── windowsFinder.test.ts │ │ │ └── windowsStateHandler.test.ts │ ├── workspace │ │ ├── common │ │ │ ├── workspace.ts │ │ │ └── workspaceTrust.ts │ │ └── test │ │ │ └── common │ │ │ ├── testWorkspace.ts │ │ │ └── workspace.test.ts │ └── workspaces │ │ ├── common │ │ └── workspaces.ts │ │ ├── electron-main │ │ ├── workspacesHistoryMainService.ts │ │ ├── workspacesMainService.ts │ │ └── workspacesManagementMainService.ts │ │ └── test │ │ ├── common │ │ └── workspaces.test.ts │ │ └── electron-main │ │ ├── workspacesHistoryStorage.test.ts │ │ └── workspacesManagementMainService.test.ts │ ├── vscode.d.ts │ ├── vscode.proposed.d.ts │ └── workbench │ ├── api │ ├── browser │ │ ├── apiCommands.ts │ │ ├── extensionHost.contribution.ts │ │ ├── mainThreadAuthentication.ts │ │ ├── mainThreadBulkEdits.ts │ │ ├── mainThreadCLICommands.ts │ │ ├── mainThreadClipboard.ts │ │ ├── mainThreadCodeInsets.ts │ │ ├── mainThreadCommands.ts │ │ ├── mainThreadComments.ts │ │ ├── mainThreadConfiguration.ts │ │ ├── mainThreadConsole.ts │ │ ├── mainThreadCustomEditors.ts │ │ ├── mainThreadDebugService.ts │ │ ├── mainThreadDecorations.ts │ │ ├── mainThreadDiagnostics.ts │ │ ├── mainThreadDialogs.ts │ │ ├── mainThreadDocumentContentProviders.ts │ │ ├── mainThreadDocuments.ts │ │ ├── mainThreadDocumentsAndEditors.ts │ │ ├── mainThreadDownloadService.ts │ │ ├── mainThreadEditor.ts │ │ ├── mainThreadEditorTabs.ts │ │ ├── mainThreadEditors.ts │ │ ├── mainThreadErrors.ts │ │ ├── mainThreadExtensionService.ts │ │ ├── mainThreadFileSystem.ts │ │ ├── mainThreadFileSystemEventService.ts │ │ ├── mainThreadKeytar.ts │ │ ├── mainThreadLabelService.ts │ │ ├── mainThreadLanguageFeatures.ts │ │ ├── mainThreadLanguages.ts │ │ ├── mainThreadLogService.ts │ │ ├── mainThreadMessageService.ts │ │ ├── mainThreadNotebook.ts │ │ ├── mainThreadNotebookDocuments.ts │ │ ├── mainThreadNotebookDocumentsAndEditors.ts │ │ ├── mainThreadNotebookEditors.ts │ │ ├── mainThreadNotebookKernels.ts │ │ ├── mainThreadNotebookRenderers.ts │ │ ├── mainThreadOutputService.ts │ │ ├── mainThreadProgress.ts │ │ ├── mainThreadQuickOpen.ts │ │ ├── mainThreadRemoteConnectionData.ts │ │ ├── mainThreadSCM.ts │ │ ├── mainThreadSaveParticipant.ts │ │ ├── mainThreadSearch.ts │ │ ├── mainThreadSecretState.ts │ │ ├── mainThreadStatusBar.ts │ │ ├── mainThreadStorage.ts │ │ ├── mainThreadTask.ts │ │ ├── mainThreadTelemetry.ts │ │ ├── mainThreadTerminalService.ts │ │ ├── mainThreadTesting.ts │ │ ├── mainThreadTheming.ts │ │ ├── mainThreadTimeline.ts │ │ ├── mainThreadTreeViews.ts │ │ ├── mainThreadTunnelService.ts │ │ ├── mainThreadUriOpeners.ts │ │ ├── mainThreadUrls.ts │ │ ├── mainThreadWebviewManager.ts │ │ ├── mainThreadWebviewPanels.ts │ │ ├── mainThreadWebviewViews.ts │ │ ├── mainThreadWebviews.ts │ │ ├── mainThreadWindow.ts │ │ ├── mainThreadWorkspace.ts │ │ └── viewsExtensionPoint.ts │ ├── common │ │ ├── apiCommands.ts │ │ ├── cache.ts │ │ ├── configurationExtensionPoint.ts │ │ ├── exHostSecretState.ts │ │ ├── extHost.api.impl.ts │ │ ├── extHost.common.services.ts │ │ ├── extHost.protocol.ts │ │ ├── extHostApiCommands.ts │ │ ├── extHostApiDeprecationService.ts │ │ ├── extHostAuthentication.ts │ │ ├── extHostBulkEdits.ts │ │ ├── extHostClipboard.ts │ │ ├── extHostCodeInsets.ts │ │ ├── extHostCommands.ts │ │ ├── extHostComments.ts │ │ ├── extHostConfiguration.ts │ │ ├── extHostCustomEditors.ts │ │ ├── extHostCustomers.ts │ │ ├── extHostDebugService.ts │ │ ├── extHostDecorations.ts │ │ ├── extHostDiagnostics.ts │ │ ├── extHostDialogs.ts │ │ ├── extHostDocumentContentProviders.ts │ │ ├── extHostDocumentData.ts │ │ ├── extHostDocumentSaveParticipant.ts │ │ ├── extHostDocuments.ts │ │ ├── extHostDocumentsAndEditors.ts │ │ ├── extHostEditorTabs.ts │ │ ├── extHostExtensionActivator.ts │ │ ├── extHostExtensionService.ts │ │ ├── extHostFileSystem.ts │ │ ├── extHostFileSystemConsumer.ts │ │ ├── extHostFileSystemEventService.ts │ │ ├── extHostFileSystemInfo.ts │ │ ├── extHostInitDataService.ts │ │ ├── extHostLabelService.ts │ │ ├── extHostLanguageFeatures.ts │ │ ├── extHostLanguages.ts │ │ ├── extHostMemento.ts │ │ ├── extHostMessageService.ts │ │ ├── extHostNotebook.ts │ │ ├── extHostNotebookConcatDocument.ts │ │ ├── extHostNotebookDocument.ts │ │ ├── extHostNotebookEditor.ts │ │ ├── extHostNotebookKernels.ts │ │ ├── extHostNotebookRenderers.ts │ │ ├── extHostOutput.ts │ │ ├── extHostProgress.ts │ │ ├── extHostQuickOpen.ts │ │ ├── extHostRequireInterceptor.ts │ │ ├── extHostRpcService.ts │ │ ├── extHostSCM.ts │ │ ├── extHostSearch.ts │ │ ├── extHostSecrets.ts │ │ ├── extHostStatusBar.ts │ │ ├── extHostStorage.ts │ │ ├── extHostStoragePaths.ts │ │ ├── extHostTask.ts │ │ ├── extHostTelemetry.ts │ │ ├── extHostTerminalService.ts │ │ ├── extHostTesting.ts │ │ ├── extHostTestingPrivateApi.ts │ │ ├── extHostTextEditor.ts │ │ ├── extHostTextEditors.ts │ │ ├── extHostTheming.ts │ │ ├── extHostTimeline.ts │ │ ├── extHostTreeViews.ts │ │ ├── extHostTunnelService.ts │ │ ├── extHostTypeConverters.ts │ │ ├── extHostTypes.ts │ │ ├── extHostUriOpener.ts │ │ ├── extHostUriTransformerService.ts │ │ ├── extHostUrls.ts │ │ ├── extHostWebview.ts │ │ ├── extHostWebviewMessaging.ts │ │ ├── extHostWebviewPanels.ts │ │ ├── extHostWebviewView.ts │ │ ├── extHostWindow.ts │ │ ├── extHostWorkspace.ts │ │ ├── jsonValidationExtensionPoint.ts │ │ ├── menusExtensionPoint.ts │ │ └── shared │ │ │ ├── tasks.ts │ │ │ ├── webview.ts │ │ │ └── workspaceContains.ts │ ├── node │ │ ├── extHost.node.services.ts │ │ ├── extHostCLIServer.ts │ │ ├── extHostDebugService.ts │ │ ├── extHostDownloadService.ts │ │ ├── extHostExtensionService.ts │ │ ├── extHostLogService.ts │ │ ├── extHostOutputService.ts │ │ ├── extHostSearch.ts │ │ ├── extHostTask.ts │ │ ├── extHostTerminalService.ts │ │ └── extHostTunnelService.ts │ └── worker │ │ ├── extHost.worker.services.ts │ │ ├── extHostExtensionService.ts │ │ └── extHostLogService.ts │ ├── browser │ ├── actions.ts │ ├── actions │ │ ├── developerActions.ts │ │ ├── helpActions.ts │ │ ├── layoutActions.ts │ │ ├── listCommands.ts │ │ ├── media │ │ │ └── actions.css │ │ ├── navigationActions.ts │ │ ├── quickAccessActions.ts │ │ ├── textInputActions.ts │ │ ├── windowActions.ts │ │ ├── workspaceActions.ts │ │ └── workspaceCommands.ts │ ├── codeeditor.ts │ ├── composite.ts │ ├── contextkeys.ts │ ├── dnd.ts │ ├── editor.ts │ ├── labels.ts │ ├── layout.ts │ ├── media │ │ ├── code-icon.svg │ │ ├── part.css │ │ └── style.css │ ├── panecomposite.ts │ ├── panel.ts │ ├── part.ts │ ├── parts │ │ ├── activitybar │ │ │ ├── activitybarActions.ts │ │ │ ├── activitybarPart.ts │ │ │ └── media │ │ │ │ ├── activityaction.css │ │ │ │ └── activitybarpart.css │ │ ├── banner │ │ │ ├── bannerPart.ts │ │ │ └── media │ │ │ │ └── bannerpart.css │ │ ├── compositeBar.ts │ │ ├── compositeBarActions.ts │ │ ├── compositePart.ts │ │ ├── dialogs │ │ │ ├── dialog.web.contribution.ts │ │ │ └── dialogHandler.ts │ │ ├── editor │ │ │ ├── binaryDiffEditor.ts │ │ │ ├── binaryEditor.ts │ │ │ ├── breadcrumbs.ts │ │ │ ├── breadcrumbsControl.ts │ │ │ ├── breadcrumbsModel.ts │ │ │ ├── breadcrumbsPicker.ts │ │ │ ├── editor.contribution.ts │ │ │ ├── editor.ts │ │ │ ├── editorActions.ts │ │ │ ├── editorAutoSave.ts │ │ │ ├── editorCommands.ts │ │ │ ├── editorControl.ts │ │ │ ├── editorDropTarget.ts │ │ │ ├── editorGroupView.ts │ │ │ ├── editorPane.ts │ │ │ ├── editorPart.ts │ │ │ ├── editorQuickAccess.ts │ │ │ ├── editorStatus.ts │ │ │ ├── editorsObserver.ts │ │ │ ├── media │ │ │ │ ├── back-tb.png │ │ │ │ ├── binaryeditor.css │ │ │ │ ├── breadcrumbscontrol.css │ │ │ │ ├── editordroptarget.css │ │ │ │ ├── editorgroupview.css │ │ │ │ ├── editorquickaccess.css │ │ │ │ ├── editorstatus.css │ │ │ │ ├── forward-tb.png │ │ │ │ ├── letterpress-dark.svg │ │ │ │ ├── letterpress-hc.svg │ │ │ │ ├── letterpress.svg │ │ │ │ ├── notabstitlecontrol.css │ │ │ │ ├── tabstitlecontrol.css │ │ │ │ ├── titlecontrol.css │ │ │ │ └── workspacetrusteditor.css │ │ │ ├── noTabsTitleControl.ts │ │ │ ├── sideBySideEditor.ts │ │ │ ├── tabsTitleControl.ts │ │ │ ├── textDiffEditor.ts │ │ │ ├── textEditor.ts │ │ │ ├── textResourceEditor.ts │ │ │ ├── titleControl.ts │ │ │ └── workspaceTrustRequiredEditor.ts │ │ ├── media │ │ │ └── compositepart.css │ │ ├── notifications │ │ │ ├── media │ │ │ │ ├── notificationsActions.css │ │ │ │ ├── notificationsCenter.css │ │ │ │ ├── notificationsList.css │ │ │ │ └── notificationsToasts.css │ │ │ ├── notificationsActions.ts │ │ │ ├── notificationsAlerts.ts │ │ │ ├── notificationsCenter.ts │ │ │ ├── notificationsCommands.ts │ │ │ ├── notificationsList.ts │ │ │ ├── notificationsStatus.ts │ │ │ ├── notificationsTelemetry.ts │ │ │ ├── notificationsToasts.ts │ │ │ └── notificationsViewer.ts │ │ ├── panel │ │ │ ├── media │ │ │ │ └── panelpart.css │ │ │ ├── panelActions.ts │ │ │ └── panelPart.ts │ │ ├── sidebar │ │ │ ├── media │ │ │ │ └── sidebarpart.css │ │ │ └── sidebarPart.ts │ │ ├── statusbar │ │ │ ├── media │ │ │ │ └── statusbarpart.css │ │ │ └── statusbarPart.ts │ │ ├── titlebar │ │ │ ├── media │ │ │ │ └── titlebarpart.css │ │ │ ├── menubarControl.ts │ │ │ └── titlebarPart.ts │ │ └── views │ │ │ ├── media │ │ │ ├── paneviewlet.css │ │ │ └── views.css │ │ │ ├── treeView.ts │ │ │ ├── viewPane.ts │ │ │ ├── viewPaneContainer.ts │ │ │ ├── viewsService.ts │ │ │ └── viewsViewlet.ts │ ├── quickaccess.ts │ ├── style.ts │ ├── viewlet.ts │ ├── web.main.ts │ ├── window.ts │ ├── workbench.contribution.ts │ └── workbench.ts │ ├── buildfile.desktop.js │ ├── buildfile.web.js │ ├── common │ ├── actions.ts │ ├── activity.ts │ ├── component.ts │ ├── composite.ts │ ├── configuration.ts │ ├── contributions.ts │ ├── dialogs.ts │ ├── editor.ts │ ├── editor │ │ ├── binaryEditorModel.ts │ │ ├── diffEditorInput.ts │ │ ├── diffEditorModel.ts │ │ ├── editorGroupModel.ts │ │ ├── editorInput.ts │ │ ├── editorModel.ts │ │ ├── editorOptions.ts │ │ ├── resourceEditorInput.ts │ │ ├── sideBySideEditorInput.ts │ │ ├── textDiffEditorModel.ts │ │ ├── textEditorModel.ts │ │ ├── textResourceEditorInput.ts │ │ └── textResourceEditorModel.ts │ ├── memento.ts │ ├── notifications.ts │ ├── panecomposite.ts │ ├── panel.ts │ ├── resources.ts │ ├── theme.ts │ ├── viewlet.ts │ └── views.ts │ ├── contrib │ ├── bulkEdit │ │ ├── browser │ │ │ ├── bulkCellEdits.ts │ │ │ ├── bulkEditService.ts │ │ │ ├── bulkFileEdits.ts │ │ │ ├── bulkTextEdits.ts │ │ │ ├── conflicts.ts │ │ │ └── preview │ │ │ │ ├── bulkEdit.contribution.ts │ │ │ │ ├── bulkEdit.css │ │ │ │ ├── bulkEditPane.ts │ │ │ │ ├── bulkEditPreview.ts │ │ │ │ └── bulkEditTree.ts │ │ └── test │ │ │ └── browser │ │ │ └── bulkEditPreview.test.ts │ ├── callHierarchy │ │ ├── browser │ │ │ ├── callHierarchy.contribution.ts │ │ │ ├── callHierarchyPeek.ts │ │ │ ├── callHierarchyTree.ts │ │ │ └── media │ │ │ │ └── callHierarchy.css │ │ └── common │ │ │ └── callHierarchy.ts │ ├── codeActions │ │ └── common │ │ │ ├── codeActions.contribution.ts │ │ │ ├── codeActionsContribution.ts │ │ │ ├── codeActionsExtensionPoint.ts │ │ │ ├── documentationContribution.ts │ │ │ └── documentationExtensionPoint.ts │ ├── codeEditor │ │ ├── browser │ │ │ ├── accessibility │ │ │ │ ├── accessibility.css │ │ │ │ └── accessibility.ts │ │ │ ├── codeEditor.contribution.ts │ │ │ ├── diffEditorHelper.ts │ │ │ ├── find │ │ │ │ ├── simpleFindReplaceWidget.css │ │ │ │ ├── simpleFindReplaceWidget.ts │ │ │ │ ├── simpleFindWidget.css │ │ │ │ └── simpleFindWidget.ts │ │ │ ├── inspectEditorTokens │ │ │ │ ├── inspectEditorTokens.css │ │ │ │ └── inspectEditorTokens.ts │ │ │ ├── inspectKeybindings.ts │ │ │ ├── languageConfigurationExtensionPoint.ts │ │ │ ├── largeFileOptimizations.ts │ │ │ ├── menuPreventer.ts │ │ │ ├── outline │ │ │ │ ├── documentSymbolsOutline.ts │ │ │ │ ├── documentSymbolsTree.css │ │ │ │ └── documentSymbolsTree.ts │ │ │ ├── quickaccess │ │ │ │ ├── gotoLineQuickAccess.ts │ │ │ │ └── gotoSymbolQuickAccess.ts │ │ │ ├── saveParticipants.ts │ │ │ ├── selectionClipboard.ts │ │ │ ├── simpleEditorOptions.ts │ │ │ ├── suggestEnabledInput │ │ │ │ ├── suggestEnabledInput.css │ │ │ │ └── suggestEnabledInput.ts │ │ │ ├── toggleColumnSelection.ts │ │ │ ├── toggleMinimap.ts │ │ │ ├── toggleMultiCursorModifier.ts │ │ │ ├── toggleRenderControlCharacter.ts │ │ │ ├── toggleRenderWhitespace.ts │ │ │ ├── toggleWordWrap.ts │ │ │ ├── untitledTextEditorHint.ts │ │ │ └── workbenchReferenceSearch.ts │ │ ├── electron-sandbox │ │ │ ├── codeEditor.contribution.ts │ │ │ ├── displayChangeRemeasureFonts.ts │ │ │ ├── inputClipboardActions.ts │ │ │ ├── selectionClipboard.ts │ │ │ ├── sleepResumeRepaintMinimap.ts │ │ │ └── startDebugTextMate.ts │ │ └── test │ │ │ └── browser │ │ │ └── saveParticipant.test.ts │ ├── comments │ │ ├── browser │ │ │ ├── commentFormActions.ts │ │ │ ├── commentGlyphWidget.ts │ │ │ ├── commentMenus.ts │ │ │ ├── commentNode.ts │ │ │ ├── commentService.ts │ │ │ ├── commentThreadWidget.ts │ │ │ ├── comments.contribution.ts │ │ │ ├── commentsEditorContribution.ts │ │ │ ├── commentsTreeViewer.ts │ │ │ ├── commentsView.ts │ │ │ ├── media │ │ │ │ ├── panel.css │ │ │ │ └── review.css │ │ │ ├── reactionsAction.ts │ │ │ └── simpleCommentEditor.ts │ │ └── common │ │ │ ├── commentContextKeys.ts │ │ │ ├── commentModel.ts │ │ │ └── commentThreadWidget.ts │ ├── configExporter │ │ └── electron-sandbox │ │ │ ├── configurationExportHelper.contribution.ts │ │ │ └── configurationExportHelper.ts │ ├── customEditor │ │ ├── browser │ │ │ ├── customEditor.contribution.ts │ │ │ ├── customEditorInput.ts │ │ │ ├── customEditorInputFactory.ts │ │ │ └── customEditors.ts │ │ └── common │ │ │ ├── contributedCustomEditors.ts │ │ │ ├── customEditor.ts │ │ │ ├── customEditorModelManager.ts │ │ │ ├── customTextEditorModel.ts │ │ │ └── extensionPoint.ts │ ├── debug │ │ ├── browser │ │ │ ├── baseDebugView.ts │ │ │ ├── breakpointEditorContribution.ts │ │ │ ├── breakpointWidget.ts │ │ │ ├── breakpointsView.ts │ │ │ ├── callStackEditorContribution.ts │ │ │ ├── callStackView.ts │ │ │ ├── debug.contribution.ts │ │ │ ├── debugANSIHandling.ts │ │ │ ├── debugActionViewItems.ts │ │ │ ├── debugAdapterManager.ts │ │ │ ├── debugColors.ts │ │ │ ├── debugCommands.ts │ │ │ ├── debugConfigurationManager.ts │ │ │ ├── debugEditorActions.ts │ │ │ ├── debugEditorContribution.ts │ │ │ ├── debugHover.ts │ │ │ ├── debugIcons.ts │ │ │ ├── debugProgress.ts │ │ │ ├── debugQuickAccess.ts │ │ │ ├── debugService.ts │ │ │ ├── debugSession.ts │ │ │ ├── debugStatus.ts │ │ │ ├── debugTaskRunner.ts │ │ │ ├── debugTitle.ts │ │ │ ├── debugToolBar.ts │ │ │ ├── debugViewlet.ts │ │ │ ├── exceptionWidget.ts │ │ │ ├── extensionHostDebugService.ts │ │ │ ├── linkDetector.ts │ │ │ ├── loadedScriptsView.ts │ │ │ ├── media │ │ │ │ ├── breakpointWidget.css │ │ │ │ ├── continue-tb.png │ │ │ │ ├── continue-without-debugging-tb.png │ │ │ │ ├── debug.contribution.css │ │ │ │ ├── debugHover.css │ │ │ │ ├── debugToolBar.css │ │ │ │ ├── debugViewlet.css │ │ │ │ ├── exceptionWidget.css │ │ │ │ ├── pause-tb.png │ │ │ │ ├── repl.css │ │ │ │ ├── restart-tb.png │ │ │ │ ├── stepinto-tb.png │ │ │ │ ├── stepout-tb.png │ │ │ │ ├── stepover-tb.png │ │ │ │ └── stop-tb.png │ │ │ ├── rawDebugSession.ts │ │ │ ├── repl.ts │ │ │ ├── replFilter.ts │ │ │ ├── replViewer.ts │ │ │ ├── statusbarColorProvider.ts │ │ │ ├── variablesView.ts │ │ │ ├── watchExpressionsView.ts │ │ │ └── welcomeView.ts │ │ ├── common │ │ │ ├── abstractDebugAdapter.ts │ │ │ ├── debug.ts │ │ │ ├── debugCompoundRoot.ts │ │ │ ├── debugContentProvider.ts │ │ │ ├── debugModel.ts │ │ │ ├── debugProtocol.d.ts │ │ │ ├── debugSchemas.ts │ │ │ ├── debugSource.ts │ │ │ ├── debugStorage.ts │ │ │ ├── debugTelemetry.ts │ │ │ ├── debugUtils.ts │ │ │ ├── debugViewModel.ts │ │ │ ├── debugger.ts │ │ │ └── replModel.ts │ │ ├── electron-sandbox │ │ │ └── extensionHostDebugService.ts │ │ ├── node │ │ │ ├── debugAdapter.ts │ │ │ ├── telemetryApp.ts │ │ │ └── terminals.ts │ │ └── test │ │ │ ├── browser │ │ │ ├── baseDebugView.test.ts │ │ │ ├── breakpoints.test.ts │ │ │ ├── callStack.test.ts │ │ │ ├── debugANSIHandling.test.ts │ │ │ ├── debugHover.test.ts │ │ │ ├── debugSource.test.ts │ │ │ ├── debugUtils.test.ts │ │ │ ├── debugViewModel.test.ts │ │ │ ├── linkDetector.test.ts │ │ │ ├── mockDebug.ts │ │ │ ├── rawDebugSession.test.ts │ │ │ ├── repl.test.ts │ │ │ └── watch.test.ts │ │ │ └── node │ │ │ ├── debugger.test.ts │ │ │ └── streamDebugAdapter.test.ts │ ├── emmet │ │ ├── browser │ │ │ ├── actions │ │ │ │ └── expandAbbreviation.ts │ │ │ ├── emmet.contribution.ts │ │ │ └── emmetActions.ts │ │ └── test │ │ │ └── browser │ │ │ └── emmetAction.test.ts │ ├── experiments │ │ ├── browser │ │ │ ├── experimentalPrompt.ts │ │ │ └── experiments.contribution.ts │ │ ├── common │ │ │ └── experimentService.ts │ │ └── test │ │ │ └── electron-browser │ │ │ ├── experimentService.test.ts │ │ │ └── experimentalPrompts.test.ts │ ├── extensions │ │ ├── browser │ │ │ ├── abstractRuntimeExtensionsEditor.ts │ │ │ ├── browserRuntimeExtensionsEditor.ts │ │ │ ├── configBasedRecommendations.ts │ │ │ ├── dynamicWorkspaceRecommendations.ts │ │ │ ├── exeBasedRecommendations.ts │ │ │ ├── experimentalRecommendations.ts │ │ │ ├── extensionEditor.ts │ │ │ ├── extensionEnablementWorkspaceTrustTransitionParticipant.ts │ │ │ ├── extensionRecommendationNotificationService.ts │ │ │ ├── extensionRecommendations.ts │ │ │ ├── extensionRecommendationsService.ts │ │ │ ├── extensions.contribution.ts │ │ │ ├── extensions.web.contribution.ts │ │ │ ├── extensionsActions.ts │ │ │ ├── extensionsActivationProgress.ts │ │ │ ├── extensionsCompletionItemsProvider.ts │ │ │ ├── extensionsDependencyChecker.ts │ │ │ ├── extensionsIcons.ts │ │ │ ├── extensionsList.ts │ │ │ ├── extensionsQuickAccess.ts │ │ │ ├── extensionsViewer.ts │ │ │ ├── extensionsViewlet.ts │ │ │ ├── extensionsViews.ts │ │ │ ├── extensionsWidgets.ts │ │ │ ├── extensionsWorkbenchService.ts │ │ │ ├── fileBasedRecommendations.ts │ │ │ ├── keymapRecommendations.ts │ │ │ ├── languageRecommendations.ts │ │ │ ├── media │ │ │ │ ├── extension.css │ │ │ │ ├── extensionActions.css │ │ │ │ ├── extensionEditor.css │ │ │ │ ├── extensionsViewlet.css │ │ │ │ ├── extensionsWidgets.css │ │ │ │ ├── language-icon.svg │ │ │ │ ├── loading.svg │ │ │ │ ├── runtimeExtensionsEditor.css │ │ │ │ └── theme-icon.png │ │ │ └── workspaceRecommendations.ts │ │ ├── common │ │ │ ├── extensionQuery.ts │ │ │ ├── extensions.ts │ │ │ ├── extensionsFileTemplate.ts │ │ │ ├── extensionsInput.ts │ │ │ ├── extensionsUtils.ts │ │ │ └── runtimeExtensionsInput.ts │ │ ├── electron-browser │ │ │ ├── extensionProfileService.ts │ │ │ ├── extensions.contribution.ts │ │ │ └── extensionsAutoProfiler.ts │ │ ├── electron-sandbox │ │ │ ├── debugExtensionHostAction.ts │ │ │ ├── extensions.contribution.ts │ │ │ ├── extensionsActions.ts │ │ │ ├── extensionsSlowActions.ts │ │ │ ├── reportExtensionIssueAction.ts │ │ │ └── runtimeExtensionsEditor.ts │ │ └── test │ │ │ ├── common │ │ │ └── extensionQuery.test.ts │ │ │ └── electron-browser │ │ │ ├── extensionRecommendationsService.test.ts │ │ │ ├── extensionsActions.test.ts │ │ │ ├── extensionsViews.test.ts │ │ │ └── extensionsWorkbenchService.test.ts │ ├── externalTerminal │ │ ├── browser │ │ │ └── externalTerminal.contribution.ts │ │ ├── electron-sandbox │ │ │ └── externalTerminal.contribution.ts │ │ └── node │ │ │ ├── TerminalHelper.scpt │ │ │ └── iTermHelper.scpt │ ├── externalUriOpener │ │ ├── common │ │ │ ├── configuration.ts │ │ │ ├── contributedOpeners.ts │ │ │ ├── externalUriOpener.contribution.ts │ │ │ └── externalUriOpenerService.ts │ │ └── test │ │ │ └── common │ │ │ └── externalUriOpenerService.test.ts │ ├── feedback │ │ └── browser │ │ │ ├── feedback.contribution.ts │ │ │ ├── feedback.ts │ │ │ ├── feedbackStatusbarItem.ts │ │ │ └── media │ │ │ ├── feedback.css │ │ │ ├── happy.svg │ │ │ └── sad.svg │ ├── files │ │ ├── browser │ │ │ ├── editors │ │ │ │ ├── binaryFileEditor.ts │ │ │ │ ├── fileEditorHandler.ts │ │ │ │ ├── fileEditorInput.ts │ │ │ │ ├── textFileEditor.ts │ │ │ │ ├── textFileEditorTracker.ts │ │ │ │ └── textFileSaveErrorHandler.ts │ │ │ ├── explorerService.ts │ │ │ ├── explorerViewlet.ts │ │ │ ├── fileActions.contribution.ts │ │ │ ├── fileActions.ts │ │ │ ├── fileCommands.ts │ │ │ ├── fileImportExport.ts │ │ │ ├── files.contribution.ts │ │ │ ├── files.ts │ │ │ ├── files.web.contribution.ts │ │ │ ├── media │ │ │ │ └── explorerviewlet.css │ │ │ └── views │ │ │ │ ├── emptyView.ts │ │ │ │ ├── explorerDecorationsProvider.ts │ │ │ │ ├── explorerView.ts │ │ │ │ ├── explorerViewer.ts │ │ │ │ ├── media │ │ │ │ └── openeditors.css │ │ │ │ └── openEditorsView.ts │ │ ├── common │ │ │ ├── dirtyFilesIndicator.ts │ │ │ ├── explorerModel.ts │ │ │ ├── files.ts │ │ │ └── workspaceWatcher.ts │ │ ├── electron-sandbox │ │ │ ├── fileActions.contribution.ts │ │ │ ├── fileCommands.ts │ │ │ ├── files.contribution.ts │ │ │ └── textFileEditor.ts │ │ └── test │ │ │ └── browser │ │ │ ├── editorAutoSave.test.ts │ │ │ ├── explorerModel.test.ts │ │ │ ├── explorerView.test.ts │ │ │ ├── fileActions.test.ts │ │ │ ├── fileEditorInput.test.ts │ │ │ ├── fileOnDiskProvider.test.ts │ │ │ └── textFileEditorTracker.test.ts │ ├── format │ │ └── browser │ │ │ ├── format.contribution.ts │ │ │ ├── formatActionsMultiple.ts │ │ │ ├── formatActionsNone.ts │ │ │ └── formatModified.ts │ ├── issue │ │ ├── browser │ │ │ ├── issue.web.contribution.ts │ │ │ └── issueService.ts │ │ ├── common │ │ │ └── commands.ts │ │ └── electron-sandbox │ │ │ ├── issue.contribution.ts │ │ │ └── issueActions.ts │ ├── keybindings │ │ └── browser │ │ │ └── keybindings.contribution.ts │ ├── localizations │ │ └── browser │ │ │ ├── localizations.contribution.ts │ │ │ ├── localizationsActions.ts │ │ │ └── minimalTranslations.ts │ ├── logs │ │ ├── common │ │ │ ├── logConstants.ts │ │ │ ├── logs.contribution.ts │ │ │ ├── logsActions.ts │ │ │ └── logsDataCleaner.ts │ │ └── electron-sandbox │ │ │ ├── logs.contribution.ts │ │ │ └── logsActions.ts │ ├── markdown │ │ └── common │ │ │ └── markdownDocumentRenderer.ts │ ├── markers │ │ ├── browser │ │ │ ├── constants.ts │ │ │ ├── markers.contribution.ts │ │ │ ├── markers.ts │ │ │ ├── markersFileDecorations.ts │ │ │ ├── markersFilterOptions.ts │ │ │ ├── markersModel.ts │ │ │ ├── markersTreeViewer.ts │ │ │ ├── markersView.ts │ │ │ ├── markersViewActions.ts │ │ │ ├── media │ │ │ │ └── markers.css │ │ │ └── messages.ts │ │ └── test │ │ │ └── browser │ │ │ └── markersModel.test.ts │ ├── notebook │ │ ├── browser │ │ │ ├── contrib │ │ │ │ ├── cellOperations │ │ │ │ │ ├── cellOperations.ts │ │ │ │ │ └── test │ │ │ │ │ │ └── cellOperations.test.ts │ │ │ │ ├── clipboard │ │ │ │ │ ├── notebookClipboard.ts │ │ │ │ │ └── test │ │ │ │ │ │ └── notebookClipboard.test.ts │ │ │ │ ├── coreActions.ts │ │ │ │ ├── find │ │ │ │ │ ├── findController.ts │ │ │ │ │ ├── findModel.ts │ │ │ │ │ ├── media │ │ │ │ │ │ └── notebookFind.css │ │ │ │ │ └── test │ │ │ │ │ │ └── find.test.ts │ │ │ │ ├── fold │ │ │ │ │ ├── folding.ts │ │ │ │ │ ├── foldingModel.ts │ │ │ │ │ └── test │ │ │ │ │ │ └── notebookFolding.test.ts │ │ │ │ ├── format │ │ │ │ │ └── formatting.ts │ │ │ │ ├── gettingStarted │ │ │ │ │ └── notebookGettingStarted.ts │ │ │ │ ├── layout │ │ │ │ │ ├── layoutActions.ts │ │ │ │ │ └── test │ │ │ │ │ │ └── layoutActions.test.ts │ │ │ │ ├── marker │ │ │ │ │ └── markerProvider.ts │ │ │ │ ├── navigation │ │ │ │ │ └── arrow.ts │ │ │ │ ├── outline │ │ │ │ │ ├── notebookOutline.css │ │ │ │ │ ├── notebookOutline.ts │ │ │ │ │ └── test │ │ │ │ │ │ └── notebookOutline.test.ts │ │ │ │ ├── profile │ │ │ │ │ └── notebookProfile.ts │ │ │ │ ├── status │ │ │ │ │ └── editorStatus.ts │ │ │ │ ├── statusBar │ │ │ │ │ ├── contributedStatusBarItemController.ts │ │ │ │ │ ├── executionStatusBarItemController.ts │ │ │ │ │ ├── notebookVisibleCellObserver.ts │ │ │ │ │ └── statusBarProviders.ts │ │ │ │ ├── troubleshoot │ │ │ │ │ └── layout.ts │ │ │ │ ├── undoRedo │ │ │ │ │ ├── notebookUndoRedo.ts │ │ │ │ │ └── test │ │ │ │ │ │ └── notebookUndoRedo.test.ts │ │ │ │ └── viewportCustomMarkdown │ │ │ │ │ └── viewportCustomMarkdown.ts │ │ │ ├── diff │ │ │ │ ├── diffComponents.ts │ │ │ │ ├── diffElementOutputs.ts │ │ │ │ ├── diffElementViewModel.ts │ │ │ │ ├── diffNestedCellViewModel.ts │ │ │ │ ├── eventDispatcher.ts │ │ │ │ ├── notebookDiff.css │ │ │ │ ├── notebookDiffActions.ts │ │ │ │ ├── notebookDiffEditorBrowser.ts │ │ │ │ ├── notebookTextDiffEditor.ts │ │ │ │ └── notebookTextDiffList.ts │ │ │ ├── extensionPoint.ts │ │ │ ├── media │ │ │ │ ├── notebook.css │ │ │ │ └── notebookKernelActionViewItem.css │ │ │ ├── notebook.contribution.ts │ │ │ ├── notebookBrowser.ts │ │ │ ├── notebookCellStatusBarServiceImpl.ts │ │ │ ├── notebookDiffEditorInput.ts │ │ │ ├── notebookEditor.ts │ │ │ ├── notebookEditorDecorations.ts │ │ │ ├── notebookEditorExtensions.ts │ │ │ ├── notebookEditorKernelManager.ts │ │ │ ├── notebookEditorService.ts │ │ │ ├── notebookEditorServiceImpl.ts │ │ │ ├── notebookEditorToolbar.ts │ │ │ ├── notebookEditorWidget.ts │ │ │ ├── notebookEditorWidgetContextKeys.ts │ │ │ ├── notebookIcons.ts │ │ │ ├── notebookKernelActionViewItem.ts │ │ │ ├── notebookKernelServiceImpl.ts │ │ │ ├── notebookRendererMessagingServiceImpl.ts │ │ │ ├── notebookServiceImpl.ts │ │ │ ├── view │ │ │ │ ├── notebookCellList.ts │ │ │ │ ├── output │ │ │ │ │ ├── outputRenderer.ts │ │ │ │ │ ├── rendererRegistry.ts │ │ │ │ │ └── transforms │ │ │ │ │ │ ├── richTransform.ts │ │ │ │ │ │ └── textHelper.ts │ │ │ │ └── renderers │ │ │ │ │ ├── backLayerWebView.ts │ │ │ │ │ ├── cellActionView.ts │ │ │ │ │ ├── cellContextKeys.ts │ │ │ │ │ ├── cellDnd.ts │ │ │ │ │ ├── cellEditorOptions.ts │ │ │ │ │ ├── cellMenus.ts │ │ │ │ │ ├── cellOutput.ts │ │ │ │ │ ├── cellRenderer.ts │ │ │ │ │ ├── cellWidgets.ts │ │ │ │ │ ├── codeCell.ts │ │ │ │ │ ├── markdownCell.ts │ │ │ │ │ ├── webviewPreloads.ts │ │ │ │ │ └── webviewThemeMapping.ts │ │ │ └── viewModel │ │ │ │ ├── baseCellViewModel.ts │ │ │ │ ├── cellEdit.ts │ │ │ │ ├── cellOutputViewModel.ts │ │ │ │ ├── cellSelectionCollection.ts │ │ │ │ ├── codeCellViewModel.ts │ │ │ │ ├── eventDispatcher.ts │ │ │ │ ├── markdownCellViewModel.ts │ │ │ │ ├── notebookViewModel.ts │ │ │ │ └── viewContext.ts │ │ ├── common │ │ │ ├── model │ │ │ │ ├── cellEdit.ts │ │ │ │ ├── notebookCellOutputTextModel.ts │ │ │ │ ├── notebookCellTextModel.ts │ │ │ │ └── notebookTextModel.ts │ │ │ ├── notebookCellStatusBarService.ts │ │ │ ├── notebookCommon.ts │ │ │ ├── notebookEditorInput.ts │ │ │ ├── notebookEditorModel.ts │ │ │ ├── notebookEditorModelResolverService.ts │ │ │ ├── notebookEditorModelResolverServiceImpl.ts │ │ │ ├── notebookKernelService.ts │ │ │ ├── notebookOptions.ts │ │ │ ├── notebookOutputRenderer.ts │ │ │ ├── notebookPerformance.ts │ │ │ ├── notebookProvider.ts │ │ │ ├── notebookRange.ts │ │ │ ├── notebookRendererMessagingService.ts │ │ │ ├── notebookService.ts │ │ │ └── services │ │ │ │ ├── notebookSimpleWorker.ts │ │ │ │ ├── notebookWorkerService.ts │ │ │ │ └── notebookWorkerServiceImpl.ts │ │ └── test │ │ │ ├── notebookBrowser.test.ts │ │ │ ├── notebookCellList.test.ts │ │ │ ├── notebookCommon.test.ts │ │ │ ├── notebookDiff.test.ts │ │ │ ├── notebookEditor.test.ts │ │ │ ├── notebookEditorKernelManager.test.ts │ │ │ ├── notebookEditorModel.test.ts │ │ │ ├── notebookKernelService.test.ts │ │ │ ├── notebookRendererMessagingService.test.ts │ │ │ ├── notebookSelection.test.ts │ │ │ ├── notebookServiceImpl.test.ts │ │ │ ├── notebookTextModel.test.ts │ │ │ ├── notebookViewModel.test.ts │ │ │ └── testNotebookEditor.ts │ ├── outline │ │ └── browser │ │ │ ├── outline.contribution.ts │ │ │ ├── outlinePane.css │ │ │ ├── outlinePane.ts │ │ │ └── outlineViewState.ts │ ├── output │ │ ├── browser │ │ │ ├── logViewer.ts │ │ │ ├── media │ │ │ │ └── output.css │ │ │ ├── output.contribution.ts │ │ │ ├── outputServices.ts │ │ │ └── outputView.ts │ │ ├── common │ │ │ ├── output.ts │ │ │ ├── outputChannelModel.ts │ │ │ ├── outputChannelModelService.ts │ │ │ ├── outputLinkComputer.ts │ │ │ └── outputLinkProvider.ts │ │ ├── electron-sandbox │ │ │ └── outputChannelModelService.ts │ │ └── test │ │ │ └── browser │ │ │ └── outputLinkProvider.test.ts │ ├── performance │ │ ├── browser │ │ │ ├── performance.contribution.ts │ │ │ └── perfviewEditor.ts │ │ └── electron-sandbox │ │ │ ├── performance.contribution.ts │ │ │ ├── startupProfiler.ts │ │ │ └── startupTimings.ts │ ├── preferences │ │ ├── browser │ │ │ ├── keybindingWidgets.ts │ │ │ ├── keybindingsEditor.ts │ │ │ ├── keybindingsEditorContribution.ts │ │ │ ├── keyboardLayoutPicker.ts │ │ │ ├── media │ │ │ │ ├── keybindings.css │ │ │ │ ├── keybindingsEditor.css │ │ │ │ ├── preferences.css │ │ │ │ ├── settingsEditor2.css │ │ │ │ └── settingsWidgets.css │ │ │ ├── preferences.contribution.ts │ │ │ ├── preferencesActions.ts │ │ │ ├── preferencesEditor.ts │ │ │ ├── preferencesIcons.ts │ │ │ ├── preferencesRenderers.ts │ │ │ ├── preferencesSearch.ts │ │ │ ├── preferencesWidgets.ts │ │ │ ├── settingsEditor2.ts │ │ │ ├── settingsLayout.ts │ │ │ ├── settingsTree.ts │ │ │ ├── settingsTreeModels.ts │ │ │ ├── settingsWidgets.ts │ │ │ └── tocTree.ts │ │ ├── common │ │ │ ├── preferences.ts │ │ │ ├── preferencesContribution.ts │ │ │ └── smartSnippetInserter.ts │ │ └── test │ │ │ ├── browser │ │ │ ├── keybindingsEditorContribution.test.ts │ │ │ └── settingsTreeModels.test.ts │ │ │ └── common │ │ │ └── smartSnippetInserter.test.ts │ ├── quickaccess │ │ └── browser │ │ │ ├── commandsQuickAccess.ts │ │ │ ├── quickAccess.contribution.ts │ │ │ └── viewQuickAccess.ts │ ├── relauncher │ │ └── browser │ │ │ └── relauncher.contribution.ts │ ├── remote │ │ ├── browser │ │ │ ├── explorerViewItems.ts │ │ │ ├── media │ │ │ │ ├── remoteViewlet.css │ │ │ │ └── tunnelView.css │ │ │ ├── remote.ts │ │ │ ├── remoteExplorer.ts │ │ │ ├── remoteIcons.ts │ │ │ ├── remoteIndicator.ts │ │ │ ├── tunnelView.ts │ │ │ └── urlFinder.ts │ │ ├── common │ │ │ ├── remote.contribution.ts │ │ │ ├── showCandidate.ts │ │ │ └── tunnelFactory.ts │ │ └── electron-sandbox │ │ │ └── remote.contribution.ts │ ├── sash │ │ └── browser │ │ │ ├── sash.contribution.ts │ │ │ └── sash.ts │ ├── scm │ │ ├── browser │ │ │ ├── activity.ts │ │ │ ├── dirtydiffDecorator.ts │ │ │ ├── media │ │ │ │ ├── dirtydiffDecorator.css │ │ │ │ └── scm.css │ │ │ ├── menus.ts │ │ │ ├── scm.contribution.ts │ │ │ ├── scmRepositoriesViewPane.ts │ │ │ ├── scmRepositoryRenderer.ts │ │ │ ├── scmViewPane.ts │ │ │ ├── scmViewPaneContainer.ts │ │ │ ├── scmViewService.ts │ │ │ └── util.ts │ │ └── common │ │ │ ├── scm.ts │ │ │ └── scmService.ts │ ├── search │ │ ├── browser │ │ │ ├── anythingQuickAccess.ts │ │ │ ├── media │ │ │ │ ├── anythingQuickAccess.css │ │ │ │ ├── searchEditor.css │ │ │ │ └── searchview.css │ │ │ ├── patternInputWidget.ts │ │ │ ├── replaceContributions.ts │ │ │ ├── replaceService.ts │ │ │ ├── search.contribution.ts │ │ │ ├── searchActions.ts │ │ │ ├── searchIcons.ts │ │ │ ├── searchResultsView.ts │ │ │ ├── searchView.ts │ │ │ ├── searchWidget.ts │ │ │ └── symbolsQuickAccess.ts │ │ ├── common │ │ │ ├── cacheState.ts │ │ │ ├── constants.ts │ │ │ ├── queryBuilder.ts │ │ │ ├── replace.ts │ │ │ ├── search.ts │ │ │ ├── searchHistoryService.ts │ │ │ └── searchModel.ts │ │ └── test │ │ │ ├── browser │ │ │ ├── mockSearchTree.ts │ │ │ ├── queryBuilder.test.ts │ │ │ ├── searchActions.test.ts │ │ │ └── searchViewlet.test.ts │ │ │ ├── common │ │ │ ├── cacheState.test.ts │ │ │ ├── extractRange.test.ts │ │ │ ├── searchModel.test.ts │ │ │ └── searchResult.test.ts │ │ │ └── electron-browser │ │ │ └── queryBuilder.test.ts │ ├── searchEditor │ │ └── browser │ │ │ ├── constants.ts │ │ │ ├── media │ │ │ └── searchEditor.css │ │ │ ├── searchEditor.contribution.ts │ │ │ ├── searchEditor.ts │ │ │ ├── searchEditorActions.ts │ │ │ ├── searchEditorInput.ts │ │ │ ├── searchEditorModel.ts │ │ │ └── searchEditorSerialization.ts │ ├── snippets │ │ ├── browser │ │ │ ├── configureSnippets.ts │ │ │ ├── insertSnippet.ts │ │ │ ├── snippetCompletionProvider.ts │ │ │ ├── snippets.contribution.ts │ │ │ ├── snippetsFile.ts │ │ │ ├── snippetsService.ts │ │ │ └── tabCompletion.ts │ │ └── test │ │ │ └── browser │ │ │ ├── snippetFile.test.ts │ │ │ ├── snippetsRegistry.test.ts │ │ │ ├── snippetsRewrite.test.ts │ │ │ └── snippetsService.test.ts │ ├── surveys │ │ └── browser │ │ │ ├── ces.contribution.ts │ │ │ ├── languageSurveys.contribution.ts │ │ │ └── nps.contribution.ts │ ├── tags │ │ ├── browser │ │ │ └── workspaceTagsService.ts │ │ ├── common │ │ │ ├── javaWorkspaceTags.ts │ │ │ └── workspaceTags.ts │ │ ├── electron-sandbox │ │ │ ├── tags.contribution.ts │ │ │ ├── workspaceTags.ts │ │ │ └── workspaceTagsService.ts │ │ └── test │ │ │ └── electron-browser │ │ │ └── workspaceTags.test.ts │ ├── tasks │ │ ├── browser │ │ │ ├── abstractTaskService.ts │ │ │ ├── runAutomaticTasks.ts │ │ │ ├── task.contribution.ts │ │ │ ├── taskQuickPick.ts │ │ │ ├── taskService.ts │ │ │ ├── taskTerminalStatus.ts │ │ │ ├── tasksQuickAccess.ts │ │ │ └── terminalTaskSystem.ts │ │ ├── common │ │ │ ├── jsonSchemaCommon.ts │ │ │ ├── jsonSchema_v1.ts │ │ │ ├── jsonSchema_v2.ts │ │ │ ├── problemCollectors.ts │ │ │ ├── problemMatcher.ts │ │ │ ├── taskConfiguration.ts │ │ │ ├── taskDefinitionRegistry.ts │ │ │ ├── taskService.ts │ │ │ ├── taskSystem.ts │ │ │ ├── taskTemplates.ts │ │ │ └── tasks.ts │ │ ├── electron-sandbox │ │ │ └── taskService.ts │ │ └── test │ │ │ └── common │ │ │ ├── configuration.test.ts │ │ │ └── problemMatcher.test.ts │ ├── telemetry │ │ └── browser │ │ │ └── telemetry.contribution.ts │ ├── terminal │ │ ├── .eslintrc.json │ │ ├── browser │ │ │ ├── addons │ │ │ │ ├── commandTrackerAddon.ts │ │ │ │ └── navigationModeAddon.ts │ │ │ ├── environmentVariableInfo.ts │ │ │ ├── links │ │ │ │ ├── terminalBaseLinkProvider.ts │ │ │ │ ├── terminalExternalLinkProviderAdapter.ts │ │ │ │ ├── terminalLink.ts │ │ │ │ ├── terminalLinkHelpers.ts │ │ │ │ ├── terminalLinkManager.ts │ │ │ │ ├── terminalProtocolLinkProvider.ts │ │ │ │ ├── terminalValidatedLocalLinkProvider.ts │ │ │ │ └── terminalWordLinkProvider.ts │ │ │ ├── media │ │ │ │ ├── scrollbar.css │ │ │ │ ├── terminal.css │ │ │ │ ├── widgets.css │ │ │ │ └── xterm.css │ │ │ ├── remotePty.ts │ │ │ ├── remoteTerminalService.ts │ │ │ ├── terminal.contribution.ts │ │ │ ├── terminal.ts │ │ │ ├── terminal.web.contribution.ts │ │ │ ├── terminalActions.ts │ │ │ ├── terminalCommands.ts │ │ │ ├── terminalConfigHelper.ts │ │ │ ├── terminalDecorationsProvider.ts │ │ │ ├── terminalFindWidget.ts │ │ │ ├── terminalGroup.ts │ │ │ ├── terminalIcon.ts │ │ │ ├── terminalIcons.ts │ │ │ ├── terminalInstance.ts │ │ │ ├── terminalInstanceService.ts │ │ │ ├── terminalMenus.ts │ │ │ ├── terminalProcessExtHostProxy.ts │ │ │ ├── terminalProcessManager.ts │ │ │ ├── terminalProfileResolverService.ts │ │ │ ├── terminalQuickAccess.ts │ │ │ ├── terminalService.ts │ │ │ ├── terminalStatusList.ts │ │ │ ├── terminalTabbedView.ts │ │ │ ├── terminalTabsList.ts │ │ │ ├── terminalTypeAheadAddon.ts │ │ │ ├── terminalView.ts │ │ │ ├── widgets │ │ │ │ ├── environmentVariableInfoWidget.ts │ │ │ │ ├── terminalHoverWidget.ts │ │ │ │ ├── widgetManager.ts │ │ │ │ └── widgets.ts │ │ │ └── xterm-private.d.ts │ │ ├── common │ │ │ ├── environmentVariable.contribution.ts │ │ │ ├── environmentVariable.ts │ │ │ ├── environmentVariableCollection.ts │ │ │ ├── environmentVariableService.ts │ │ │ ├── environmentVariableShared.ts │ │ │ ├── remoteTerminalChannel.ts │ │ │ ├── terminal.ts │ │ │ ├── terminalColorRegistry.ts │ │ │ ├── terminalConfiguration.ts │ │ │ ├── terminalEnvironment.ts │ │ │ ├── terminalExtensionPoints.contribution.ts │ │ │ ├── terminalExtensionPoints.ts │ │ │ └── terminalStrings.ts │ │ ├── electron-sandbox │ │ │ ├── localPty.ts │ │ │ ├── localTerminalService.ts │ │ │ ├── terminal.contribution.ts │ │ │ ├── terminalNativeContribution.ts │ │ │ ├── terminalProfileResolverService.ts │ │ │ └── terminalRemote.ts │ │ └── test │ │ │ ├── browser │ │ │ ├── links │ │ │ │ ├── terminalLinkHelpers.test.ts │ │ │ │ ├── terminalProtocolLinkProvider.test.ts │ │ │ │ ├── terminalValidatedLocalLinkProvider.test.ts │ │ │ │ └── terminalWordLinkProvider.test.ts │ │ │ ├── terminalCommandTracker.test.ts │ │ │ ├── terminalConfigHelper.test.ts │ │ │ ├── terminalProcessManager.test.ts │ │ │ ├── terminalStatusList.test.ts │ │ │ └── terminalTypeahead.test.ts │ │ │ ├── common │ │ │ ├── environmentVariableCollection.test.ts │ │ │ ├── environmentVariableService.test.ts │ │ │ ├── environmentVariableShared.test.ts │ │ │ ├── terminalColorRegistry.test.ts │ │ │ ├── terminalDataBuffering.test.ts │ │ │ └── terminalEnvironment.test.ts │ │ │ └── node │ │ │ └── terminalProfiles.test.ts │ ├── testing │ │ ├── browser │ │ │ ├── explorerProjections │ │ │ │ ├── display.ts │ │ │ │ ├── hierarchalByLocation.ts │ │ │ │ ├── hierarchalByName.ts │ │ │ │ ├── hierarchalNodes.ts │ │ │ │ ├── index.ts │ │ │ │ └── nodeHelper.ts │ │ │ ├── icons.ts │ │ │ ├── media │ │ │ │ └── testing.css │ │ │ ├── testExplorerActions.ts │ │ │ ├── testing.contribution.ts │ │ │ ├── testingDecorations.ts │ │ │ ├── testingExplorerFilter.ts │ │ │ ├── testingExplorerView.ts │ │ │ ├── testingOutputPeek.ts │ │ │ ├── testingOutputTerminalService.ts │ │ │ ├── testingProgressUiService.ts │ │ │ ├── testingViewPaneContainer.ts │ │ │ └── theme.ts │ │ ├── common │ │ │ ├── configuration.ts │ │ │ ├── constants.ts │ │ │ ├── getComputedState.ts │ │ │ ├── observableValue.ts │ │ │ ├── ownedTestCollection.ts │ │ │ ├── storedValue.ts │ │ │ ├── testCollection.ts │ │ │ ├── testResult.ts │ │ │ ├── testResultService.ts │ │ │ ├── testResultStorage.ts │ │ │ ├── testService.ts │ │ │ ├── testServiceImpl.ts │ │ │ ├── testStubs.ts │ │ │ ├── testingAutoRun.ts │ │ │ ├── testingContentProvider.ts │ │ │ ├── testingContextKeys.ts │ │ │ ├── testingPeekOpener.ts │ │ │ ├── testingStates.ts │ │ │ ├── testingUri.ts │ │ │ └── workspaceTestCollectionService.ts │ │ └── test │ │ │ ├── browser │ │ │ ├── explorerProjections │ │ │ │ ├── hierarchalByLocation.test.ts │ │ │ │ └── hierarchalByName.test.ts │ │ │ └── testObjectTree.ts │ │ │ └── common │ │ │ ├── ownedTestCollection.ts │ │ │ ├── testResultService.test.ts │ │ │ ├── testResultStorage.test.ts │ │ │ └── testingUri.test.ts │ ├── themes │ │ └── browser │ │ │ ├── themes.contribution.ts │ │ │ └── themes.test.contribution.ts │ ├── timeline │ │ ├── browser │ │ │ ├── media │ │ │ │ └── timelinePane.css │ │ │ ├── timeline.contribution.ts │ │ │ └── timelinePane.ts │ │ └── common │ │ │ ├── timeline.ts │ │ │ └── timelineService.ts │ ├── update │ │ ├── browser │ │ │ ├── media │ │ │ │ └── releasenoteseditor.css │ │ │ ├── releaseNotesEditor.ts │ │ │ ├── update.contribution.ts │ │ │ └── update.ts │ │ └── common │ │ │ └── update.ts │ ├── url │ │ ├── browser │ │ │ ├── externalUriResolver.ts │ │ │ ├── trustedDomains.ts │ │ │ ├── trustedDomainsFileSystemProvider.ts │ │ │ ├── trustedDomainsValidator.ts │ │ │ └── url.contribution.ts │ │ ├── common │ │ │ └── urlGlob.ts │ │ └── test │ │ │ └── browser │ │ │ └── trustedDomains.test.ts │ ├── userDataSync │ │ ├── browser │ │ │ ├── media │ │ │ │ └── userDataSyncViews.css │ │ │ ├── userDataSync.contribution.ts │ │ │ ├── userDataSync.ts │ │ │ ├── userDataSyncMergesView.ts │ │ │ ├── userDataSyncTrigger.ts │ │ │ └── userDataSyncViews.ts │ │ └── electron-sandbox │ │ │ └── userDataSync.contribution.ts │ ├── watermark │ │ └── browser │ │ │ ├── watermark.css │ │ │ └── watermark.ts │ ├── webview │ │ ├── browser │ │ │ ├── baseWebviewElement.ts │ │ │ ├── dynamicWebviewEditorOverlay.ts │ │ │ ├── pre │ │ │ │ ├── fake.html │ │ │ │ ├── host.js │ │ │ │ ├── index.html │ │ │ │ ├── main.js │ │ │ │ └── service-worker.js │ │ │ ├── resourceLoading.ts │ │ │ ├── themeing.ts │ │ │ ├── webview.contribution.ts │ │ │ ├── webview.ts │ │ │ ├── webview.web.contribution.ts │ │ │ ├── webviewElement.ts │ │ │ ├── webviewFindWidget.ts │ │ │ ├── webviewService.ts │ │ │ └── webviewWindowDragMonitor.ts │ │ ├── electron-browser │ │ │ ├── pre │ │ │ │ ├── electron-index.js │ │ │ │ └── index.html │ │ │ ├── webview.contribution.ts │ │ │ ├── webviewCommands.ts │ │ │ ├── webviewElement.ts │ │ │ ├── webviewIgnoreMenuShortcutsManager.ts │ │ │ └── webviewService.ts │ │ └── electron-sandbox │ │ │ ├── iframeWebviewElement.ts │ │ │ └── windowIgnoreMenuShortcutsManager.ts │ ├── webviewPanel │ │ └── browser │ │ │ ├── webviewCommands.ts │ │ │ ├── webviewEditor.ts │ │ │ ├── webviewEditorInput.ts │ │ │ ├── webviewEditorInputSerializer.ts │ │ │ ├── webviewIconManager.ts │ │ │ ├── webviewPanel.contribution.ts │ │ │ └── webviewWorkbenchService.ts │ ├── webviewView │ │ └── browser │ │ │ ├── webviewView.contribution.ts │ │ │ ├── webviewViewPane.ts │ │ │ └── webviewViewService.ts │ ├── welcome │ │ ├── common │ │ │ ├── viewsWelcome.contribution.ts │ │ │ ├── viewsWelcomeContribution.ts │ │ │ └── viewsWelcomeExtensionPoint.ts │ │ ├── gettingStarted │ │ │ ├── browser │ │ │ │ ├── gettingStarted.contribution.ts │ │ │ │ ├── gettingStarted.css │ │ │ │ ├── gettingStarted.ts │ │ │ │ ├── gettingStartedExtensionPoint.ts │ │ │ │ ├── gettingStartedIcons.ts │ │ │ │ ├── gettingStartedInput.ts │ │ │ │ └── gettingStartedService.ts │ │ │ └── common │ │ │ │ ├── gettingStartedContent.ts │ │ │ │ └── media │ │ │ │ ├── colorTheme.png │ │ │ │ ├── dark.png │ │ │ │ ├── dark │ │ │ │ ├── commandPalette.png │ │ │ │ ├── debug.png │ │ │ │ ├── extensions.png │ │ │ │ ├── languageExtensions.png │ │ │ │ ├── openFolder.png │ │ │ │ ├── playground.png │ │ │ │ ├── scm.png │ │ │ │ ├── settings.png │ │ │ │ ├── settingsSync.png │ │ │ │ ├── shortcuts.png │ │ │ │ ├── splitview.png │ │ │ │ ├── tasks.png │ │ │ │ ├── terminal.png │ │ │ │ └── workspaceTrust.svg │ │ │ │ ├── example_markdown_media.ts │ │ │ │ ├── github.png │ │ │ │ ├── hc │ │ │ │ ├── commandPalette.png │ │ │ │ ├── extensions.png │ │ │ │ ├── languageExtensions.png │ │ │ │ ├── openFolder.png │ │ │ │ ├── settings.png │ │ │ │ ├── settingsSync.png │ │ │ │ └── terminal.png │ │ │ │ ├── light.png │ │ │ │ ├── light │ │ │ │ ├── commandPalette.png │ │ │ │ ├── debug.png │ │ │ │ ├── extensions.png │ │ │ │ ├── languageExtensions.png │ │ │ │ ├── openFolder.png │ │ │ │ ├── playground.png │ │ │ │ ├── scm.png │ │ │ │ ├── settings.png │ │ │ │ ├── settingsSync.png │ │ │ │ ├── shortcuts.png │ │ │ │ ├── splitview.png │ │ │ │ ├── tasks.png │ │ │ │ ├── terminal.png │ │ │ │ └── workspaceTrust.svg │ │ │ │ ├── monokai.png │ │ │ │ ├── more.png │ │ │ │ ├── notebookProfile.ts │ │ │ │ ├── notebookThemes │ │ │ │ ├── colab.png │ │ │ │ ├── default.png │ │ │ │ └── jupyter.png │ │ │ │ ├── quiet-light.png │ │ │ │ └── tutorialVideo.png │ │ ├── overlay │ │ │ └── browser │ │ │ │ ├── media │ │ │ │ ├── commandpalette-dark.svg │ │ │ │ └── commandpalette.svg │ │ │ │ ├── welcomeOverlay.css │ │ │ │ └── welcomeOverlay.ts │ │ ├── page │ │ │ └── browser │ │ │ │ ├── vs_code_welcome_page.ts │ │ │ │ ├── welcomePage.contribution.ts │ │ │ │ ├── welcomePage.css │ │ │ │ ├── welcomePage.ts │ │ │ │ └── welcomePageColors.ts │ │ ├── telemetryOptOut │ │ │ ├── browser │ │ │ │ ├── telemetryOptOut.contribution.ts │ │ │ │ └── telemetryOptOut.ts │ │ │ └── electron-sandbox │ │ │ │ ├── telemetryOptOut.contribution.ts │ │ │ │ └── telemetryOptOut.ts │ │ └── walkThrough │ │ │ ├── browser │ │ │ ├── editor │ │ │ │ ├── editorWalkThrough.ts │ │ │ │ └── vs_code_editor_walkthrough.ts │ │ │ ├── walkThrough.contribution.ts │ │ │ ├── walkThroughActions.ts │ │ │ ├── walkThroughInput.ts │ │ │ ├── walkThroughPart.css │ │ │ └── walkThroughPart.ts │ │ │ └── common │ │ │ ├── walkThroughContentProvider.ts │ │ │ └── walkThroughUtils.ts │ ├── workspace │ │ └── browser │ │ │ ├── media │ │ │ ├── trusted-badge.png │ │ │ └── untrusted-status.png │ │ │ ├── workspace.contribution.ts │ │ │ ├── workspaceTrustEditor.css │ │ │ └── workspaceTrustEditor.ts │ └── workspaces │ │ └── browser │ │ └── workspaces.contribution.ts │ ├── electron-browser │ └── desktop.main.ts │ ├── electron-sandbox │ ├── actions │ │ ├── developerActions.ts │ │ ├── installActions.ts │ │ ├── media │ │ │ └── actions.css │ │ └── windowActions.ts │ ├── desktop.contribution.ts │ ├── desktop.main.ts │ ├── parts │ │ ├── dialogs │ │ │ ├── dialog.contribution.ts │ │ │ └── dialogHandler.ts │ │ └── titlebar │ │ │ ├── menubarControl.ts │ │ │ └── titlebarPart.ts │ ├── sandbox.simpleservices.ts │ ├── shared.desktop.main.ts │ ├── splash.ts │ └── window.ts │ ├── services │ ├── accessibility │ │ └── electron-sandbox │ │ │ └── accessibilityService.ts │ ├── activity │ │ ├── browser │ │ │ └── activityService.ts │ │ └── common │ │ │ └── activity.ts │ ├── activityBar │ │ └── browser │ │ │ └── activityBarService.ts │ ├── authentication │ │ └── browser │ │ │ └── authenticationService.ts │ ├── banner │ │ └── browser │ │ │ └── bannerService.ts │ ├── clipboard │ │ ├── browser │ │ │ └── clipboardService.ts │ │ └── electron-sandbox │ │ │ └── clipboardService.ts │ ├── commands │ │ ├── common │ │ │ └── commandService.ts │ │ └── test │ │ │ └── common │ │ │ └── commandService.test.ts │ ├── configuration │ │ ├── browser │ │ │ ├── configuration.ts │ │ │ ├── configurationCache.ts │ │ │ └── configurationService.ts │ │ ├── common │ │ │ ├── configuration.ts │ │ │ ├── configurationEditingService.ts │ │ │ ├── configurationModels.ts │ │ │ ├── jsonEditing.ts │ │ │ └── jsonEditingService.ts │ │ ├── electron-sandbox │ │ │ └── configurationCache.ts │ │ └── test │ │ │ ├── browser │ │ │ ├── configurationEditingService.test.ts │ │ │ └── configurationService.test.ts │ │ │ └── common │ │ │ ├── configurationModels.test.ts │ │ │ └── testServices.ts │ ├── configurationResolver │ │ ├── browser │ │ │ └── configurationResolverService.ts │ │ ├── common │ │ │ ├── configurationResolver.ts │ │ │ ├── configurationResolverSchema.ts │ │ │ ├── configurationResolverUtils.ts │ │ │ └── variableResolver.ts │ │ ├── electron-sandbox │ │ │ └── configurationResolverService.ts │ │ └── test │ │ │ └── electron-browser │ │ │ └── configurationResolverService.test.ts │ ├── contextmenu │ │ └── electron-sandbox │ │ │ └── contextmenuService.ts │ ├── credentials │ │ ├── browser │ │ │ └── credentialsService.ts │ │ ├── common │ │ │ └── credentials.ts │ │ └── electron-sandbox │ │ │ └── credentialsService.ts │ ├── decorations │ │ ├── browser │ │ │ ├── decorations.ts │ │ │ └── decorationsService.ts │ │ └── test │ │ │ └── browser │ │ │ └── decorationsService.test.ts │ ├── dialogs │ │ ├── browser │ │ │ ├── abstractFileDialogService.ts │ │ │ ├── fileDialogService.ts │ │ │ └── simpleFileDialog.ts │ │ ├── common │ │ │ └── dialogService.ts │ │ └── electron-sandbox │ │ │ └── fileDialogService.ts │ ├── editor │ │ ├── browser │ │ │ ├── codeEditorService.ts │ │ │ ├── editorDropService.ts │ │ │ ├── editorOverrideService.ts │ │ │ └── editorService.ts │ │ ├── common │ │ │ ├── editorGroupsService.ts │ │ │ ├── editorOverrideService.ts │ │ │ └── editorService.ts │ │ └── test │ │ │ └── browser │ │ │ ├── editorGroupsService.test.ts │ │ │ ├── editorService.test.ts │ │ │ └── editorsObserver.test.ts │ ├── encryption │ │ ├── browser │ │ │ └── encryptionService.ts │ │ ├── common │ │ │ └── encryptionService.ts │ │ └── electron-sandbox │ │ │ └── encryptionService.ts │ ├── environment │ │ ├── browser │ │ │ └── environmentService.ts │ │ ├── common │ │ │ └── environmentService.ts │ │ └── electron-sandbox │ │ │ ├── environmentService.ts │ │ │ └── shellEnvironmentService.ts │ ├── experiment │ │ └── common │ │ │ └── experimentService.ts │ ├── extensionManagement │ │ ├── browser │ │ │ ├── builtinExtensionsScannerService.ts │ │ │ ├── extensionBisect.ts │ │ │ ├── extensionEnablementService.ts │ │ │ └── extensionUrlTrustService.ts │ │ ├── common │ │ │ ├── extensionManagement.ts │ │ │ ├── extensionManagementServerService.ts │ │ │ ├── extensionManagementService.ts │ │ │ ├── remoteExtensionManagementService.ts │ │ │ ├── webExtensionManagementService.ts │ │ │ └── webExtensionsScannerService.ts │ │ ├── electron-sandbox │ │ │ ├── extensionManagementServerService.ts │ │ │ ├── extensionManagementService.ts │ │ │ ├── extensionTipsService.ts │ │ │ ├── extensionUrlTrustService.ts │ │ │ └── remoteExtensionManagementService.ts │ │ └── test │ │ │ └── browser │ │ │ └── extensionEnablementService.test.ts │ ├── extensionRecommendations │ │ └── common │ │ │ ├── extensionIgnoredRecommendationsService.ts │ │ │ ├── extensionRecommendations.ts │ │ │ └── workspaceExtensionsConfig.ts │ ├── extensionResourceLoader │ │ ├── browser │ │ │ └── extensionResourceLoaderService.ts │ │ ├── common │ │ │ └── extensionResourceLoader.ts │ │ └── electron-sandbox │ │ │ └── extensionResourceLoaderService.ts │ ├── extensions │ │ ├── browser │ │ │ ├── extensionService.ts │ │ │ ├── extensionUrlHandler.ts │ │ │ ├── webWorkerExtensionHost.ts │ │ │ └── webWorkerFileSystemProvider.ts │ │ ├── common │ │ │ ├── abstractExtensionService.ts │ │ │ ├── extensionDescriptionRegistry.ts │ │ │ ├── extensionDevOptions.ts │ │ │ ├── extensionHostMain.ts │ │ │ ├── extensionHostManager.ts │ │ │ ├── extensionHostProtocol.ts │ │ │ ├── extensionManifestPropertiesService.ts │ │ │ ├── extensionPoints.ts │ │ │ ├── extensions.ts │ │ │ ├── extensionsRegistry.ts │ │ │ ├── extensionsUtil.ts │ │ │ ├── lazyPromise.ts │ │ │ ├── polyfillNestedWorker.protocol.ts │ │ │ ├── proxyIdentifier.ts │ │ │ ├── remoteConsoleUtil.ts │ │ │ ├── remoteExtensionHost.ts │ │ │ └── rpcProtocol.ts │ │ ├── electron-browser │ │ │ ├── cachedExtensionScanner.ts │ │ │ ├── extensionHostProfiler.ts │ │ │ ├── extensionService.ts │ │ │ └── localProcessExtensionHost.ts │ │ ├── node │ │ │ ├── extensionHostProcess.ts │ │ │ ├── extensionHostProcessSetup.ts │ │ │ ├── extensionPoints.ts │ │ │ └── proxyResolver.ts │ │ ├── test │ │ │ ├── browser │ │ │ │ └── extensionService.test.ts │ │ │ └── common │ │ │ │ ├── extensionManifestPropertiesService.test.ts │ │ │ │ └── rpcProtocol.test.ts │ │ └── worker │ │ │ ├── extensionHostWorker.ts │ │ │ ├── extensionHostWorkerMain.ts │ │ │ ├── httpWebWorkerExtensionHostIframe.html │ │ │ ├── httpsWebWorkerExtensionHostIframe.html │ │ │ └── polyfillNestedWorker.ts │ ├── files │ │ ├── browser │ │ │ └── elevatedFileService.ts │ │ ├── common │ │ │ └── elevatedFileService.ts │ │ └── electron-sandbox │ │ │ └── elevatedFileService.ts │ ├── filesConfiguration │ │ └── common │ │ │ └── filesConfigurationService.ts │ ├── history │ │ ├── browser │ │ │ └── history.ts │ │ ├── common │ │ │ └── history.ts │ │ └── test │ │ │ └── browser │ │ │ └── history.test.ts │ ├── host │ │ ├── browser │ │ │ ├── browserHostService.ts │ │ │ └── host.ts │ │ └── electron-sandbox │ │ │ └── nativeHostService.ts │ ├── hover │ │ └── browser │ │ │ ├── hover.ts │ │ │ ├── hoverService.ts │ │ │ ├── hoverWidget.ts │ │ │ └── media │ │ │ └── hover.css │ ├── integrity │ │ ├── browser │ │ │ └── integrityService.ts │ │ ├── common │ │ │ └── integrity.ts │ │ └── electron-sandbox │ │ │ └── integrityService.ts │ ├── ipc │ │ └── electron-sandbox │ │ │ └── sharedProcessService.ts │ ├── issue │ │ ├── common │ │ │ └── issue.ts │ │ └── electron-sandbox │ │ │ └── issueService.ts │ ├── keybinding │ │ ├── browser │ │ │ ├── keybindingService.ts │ │ │ ├── keyboardLayoutService.ts │ │ │ ├── keyboardLayouts │ │ │ │ ├── _.contribution.ts │ │ │ │ ├── cz.win.ts │ │ │ │ ├── de-swiss.win.ts │ │ │ │ ├── de.darwin.ts │ │ │ │ ├── de.linux.ts │ │ │ │ ├── de.win.ts │ │ │ │ ├── dk.win.ts │ │ │ │ ├── dvorak.darwin.ts │ │ │ │ ├── en-belgian.win.ts │ │ │ │ ├── en-ext.darwin.ts │ │ │ │ ├── en-in.win.ts │ │ │ │ ├── en-intl.darwin.ts │ │ │ │ ├── en-intl.win.ts │ │ │ │ ├── en-uk.darwin.ts │ │ │ │ ├── en-uk.win.ts │ │ │ │ ├── en.darwin.ts │ │ │ │ ├── en.linux.ts │ │ │ │ ├── en.win.ts │ │ │ │ ├── es-latin.win.ts │ │ │ │ ├── es.darwin.ts │ │ │ │ ├── es.linux.ts │ │ │ │ ├── es.win.ts │ │ │ │ ├── fr.darwin.ts │ │ │ │ ├── fr.linux.ts │ │ │ │ ├── fr.win.ts │ │ │ │ ├── hu.win.ts │ │ │ │ ├── it.darwin.ts │ │ │ │ ├── it.win.ts │ │ │ │ ├── jp-roman.darwin.ts │ │ │ │ ├── jp.darwin.ts │ │ │ │ ├── ko.darwin.ts │ │ │ │ ├── layout.contribution.darwin.ts │ │ │ │ ├── layout.contribution.linux.ts │ │ │ │ ├── layout.contribution.win.ts │ │ │ │ ├── no.win.ts │ │ │ │ ├── pl.darwin.ts │ │ │ │ ├── pl.win.ts │ │ │ │ ├── pt-br.win.ts │ │ │ │ ├── pt.darwin.ts │ │ │ │ ├── pt.win.ts │ │ │ │ ├── ru.darwin.ts │ │ │ │ ├── ru.linux.ts │ │ │ │ ├── ru.win.ts │ │ │ │ ├── sv.darwin.ts │ │ │ │ ├── sv.win.ts │ │ │ │ ├── thai.win.ts │ │ │ │ ├── tr.win.ts │ │ │ │ └── zh-hans.darwin.ts │ │ │ ├── navigatorKeyboard.ts │ │ │ └── unboundCommands.ts │ │ ├── common │ │ │ ├── keybindingEditing.ts │ │ │ ├── keybindingIO.ts │ │ │ ├── keymapInfo.ts │ │ │ ├── macLinuxFallbackKeyboardMapper.ts │ │ │ ├── macLinuxKeyboardMapper.ts │ │ │ └── windowsKeyboardMapper.ts │ │ ├── electron-sandbox │ │ │ └── nativeKeyboardLayout.ts │ │ └── test │ │ │ ├── browser │ │ │ ├── browserKeyboardMapper.test.ts │ │ │ ├── keybindingEditing.test.ts │ │ │ └── keybindingIO.test.ts │ │ │ └── electron-browser │ │ │ ├── keyboardMapperTestUtils.ts │ │ │ ├── linux_de_ch.js │ │ │ ├── linux_de_ch.txt │ │ │ ├── linux_en_uk.js │ │ │ ├── linux_en_uk.txt │ │ │ ├── linux_en_us.js │ │ │ ├── linux_en_us.txt │ │ │ ├── linux_ru.js │ │ │ ├── linux_ru.txt │ │ │ ├── macLinuxFallbackKeyboardMapper.test.ts │ │ │ ├── macLinuxKeyboardMapper.test.ts │ │ │ ├── mac_de_ch.js │ │ │ ├── mac_de_ch.txt │ │ │ ├── mac_en_us.js │ │ │ ├── mac_en_us.txt │ │ │ ├── mac_zh_hant.js │ │ │ ├── mac_zh_hant.txt │ │ │ ├── win_de_ch.js │ │ │ ├── win_de_ch.txt │ │ │ ├── win_en_us.js │ │ │ ├── win_en_us.txt │ │ │ ├── win_por_ptb.js │ │ │ ├── win_por_ptb.txt │ │ │ ├── win_ru.js │ │ │ ├── win_ru.txt │ │ │ └── windowsKeyboardMapper.test.ts │ ├── label │ │ ├── common │ │ │ └── labelService.ts │ │ └── test │ │ │ ├── browser │ │ │ └── label.test.ts │ │ │ └── electron-browser │ │ │ └── label.test.ts │ ├── layout │ │ └── browser │ │ │ └── layoutService.ts │ ├── lifecycle │ │ ├── browser │ │ │ └── lifecycleService.ts │ │ ├── common │ │ │ ├── lifecycle.ts │ │ │ └── lifecycleService.ts │ │ └── electron-sandbox │ │ │ └── lifecycleService.ts │ ├── localizations │ │ └── electron-sandbox │ │ │ └── localizationsService.ts │ ├── log │ │ └── electron-sandbox │ │ │ └── logService.ts │ ├── menubar │ │ └── electron-sandbox │ │ │ └── menubarService.ts │ ├── mode │ │ └── common │ │ │ └── workbenchModeService.ts │ ├── notification │ │ └── common │ │ │ └── notificationService.ts │ ├── outline │ │ └── browser │ │ │ ├── outline.ts │ │ │ └── outlineService.ts │ ├── output │ │ └── common │ │ │ └── output.ts │ ├── panel │ │ └── common │ │ │ └── panelService.ts │ ├── path │ │ ├── browser │ │ │ └── pathService.ts │ │ ├── common │ │ │ └── pathService.ts │ │ └── electron-sandbox │ │ │ └── pathService.ts │ ├── preferences │ │ ├── browser │ │ │ ├── keybindingsEditorInput.ts │ │ │ ├── keybindingsEditorModel.ts │ │ │ └── preferencesService.ts │ │ ├── common │ │ │ ├── preferences.ts │ │ │ ├── preferencesEditorInput.ts │ │ │ ├── preferencesModels.ts │ │ │ └── preferencesValidation.ts │ │ └── test │ │ │ ├── browser │ │ │ ├── keybindingsEditorModel.test.ts │ │ │ └── preferencesService.test.ts │ │ │ └── common │ │ │ └── preferencesValidation.test.ts │ ├── progress │ │ ├── browser │ │ │ ├── media │ │ │ │ └── progressService.css │ │ │ ├── progressIndicator.ts │ │ │ └── progressService.ts │ │ └── test │ │ │ └── browser │ │ │ └── progressIndicator.test.ts │ ├── quickinput │ │ └── browser │ │ │ └── quickInputService.ts │ ├── remote │ │ ├── browser │ │ │ ├── remoteAgentServiceImpl.ts │ │ │ └── tunnelServiceImpl.ts │ │ ├── common │ │ │ ├── abstractRemoteAgentService.ts │ │ │ ├── remoteAgentEnvironmentChannel.ts │ │ │ ├── remoteAgentFileSystemChannel.ts │ │ │ ├── remoteAgentService.ts │ │ │ └── remoteExplorerService.ts │ │ ├── electron-browser │ │ │ └── tunnelServiceImpl.ts │ │ ├── electron-sandbox │ │ │ └── remoteAgentServiceImpl.ts │ │ └── test │ │ │ └── common │ │ │ └── testServices.ts │ ├── request │ │ ├── browser │ │ │ └── requestService.ts │ │ └── electron-sandbox │ │ │ └── requestService.ts │ ├── search │ │ ├── browser │ │ │ └── searchService.ts │ │ ├── common │ │ │ ├── fileSearchManager.ts │ │ │ ├── replace.ts │ │ │ ├── search.ts │ │ │ ├── searchExtTypes.ts │ │ │ ├── searchHelpers.ts │ │ │ ├── searchService.ts │ │ │ └── textSearchManager.ts │ │ ├── electron-browser │ │ │ └── searchService.ts │ │ ├── node │ │ │ ├── fileSearch.ts │ │ │ ├── rawSearchService.ts │ │ │ ├── ripgrepFileSearch.ts │ │ │ ├── ripgrepSearchProvider.ts │ │ │ ├── ripgrepSearchUtils.ts │ │ │ ├── ripgrepTextSearchEngine.ts │ │ │ ├── searchApp.ts │ │ │ ├── searchIpc.ts │ │ │ ├── textSearchAdapter.ts │ │ │ └── textSearchManager.ts │ │ └── test │ │ │ ├── common │ │ │ ├── replace.test.ts │ │ │ ├── search.test.ts │ │ │ └── searchHelpers.test.ts │ │ │ ├── electron-browser │ │ │ └── rawSearchService.test.ts │ │ │ └── node │ │ │ ├── fileSearch.integrationTest.ts │ │ │ ├── fixtures │ │ │ ├── binary.wuff │ │ │ ├── examples │ │ │ │ ├── NullPoinderException.js │ │ │ │ ├── company.js │ │ │ │ ├── employee.js │ │ │ │ ├── small.js │ │ │ │ └── subfolder │ │ │ │ │ ├── anotherfolder │ │ │ │ │ └── anotherfile.txt │ │ │ │ │ └── subfile.txt │ │ │ ├── index.html │ │ │ ├── more │ │ │ │ └── file.txt │ │ │ ├── site.css │ │ │ ├── site.less │ │ │ ├── some_utf16be.css │ │ │ ├── some_utf16le.css │ │ │ └── üm laut汉语 │ │ │ │ └── 汉语.txt │ │ │ ├── fixtures2 │ │ │ └── 36438 │ │ │ │ ├── modules │ │ │ │ └── do-not-find.txt │ │ │ │ └── more │ │ │ │ └── modules │ │ │ │ └── find.txt │ │ │ ├── ripgrepFileSearch.test.ts │ │ │ ├── ripgrepTextSearchEngine.test.ts │ │ │ ├── search.test.ts │ │ │ ├── textSearch.integrationTest.ts │ │ │ └── textSearchManager.test.ts │ ├── statusbar │ │ └── common │ │ │ └── statusbar.ts │ ├── telemetry │ │ ├── browser │ │ │ ├── telemetryService.ts │ │ │ └── workbenchCommonProperties.ts │ │ ├── electron-sandbox │ │ │ ├── telemetryService.ts │ │ │ └── workbenchCommonProperties.ts │ │ └── test │ │ │ ├── browser │ │ │ └── commonProperties.test.ts │ │ │ └── electron-browser │ │ │ └── commonProperties.test.ts │ ├── textMate │ │ ├── browser │ │ │ ├── abstractTextMateService.ts │ │ │ └── textMateService.ts │ │ ├── common │ │ │ ├── TMGrammarFactory.ts │ │ │ ├── TMGrammars.ts │ │ │ ├── TMHelper.ts │ │ │ ├── TMScopeRegistry.ts │ │ │ ├── cgmanifest.json │ │ │ └── textMateService.ts │ │ └── electron-sandbox │ │ │ ├── textMateService.ts │ │ │ └── textMateWorker.ts │ ├── textfile │ │ ├── browser │ │ │ ├── browserTextFileService.ts │ │ │ └── textFileService.ts │ │ ├── common │ │ │ ├── encoding.ts │ │ │ ├── textFileEditorModel.ts │ │ │ ├── textFileEditorModelManager.ts │ │ │ ├── textFileSaveParticipant.ts │ │ │ └── textfiles.ts │ │ ├── electron-sandbox │ │ │ └── nativeTextFileService.ts │ │ └── test │ │ │ ├── browser │ │ │ ├── browserTextFileService.io.test.ts │ │ │ ├── fixtures │ │ │ │ └── files.ts │ │ │ ├── textFileEditorModel.test.ts │ │ │ ├── textFileEditorModelManager.test.ts │ │ │ └── textFileService.test.ts │ │ │ ├── common │ │ │ └── textFileService.io.test.ts │ │ │ ├── electron-browser │ │ │ ├── fixtures │ │ │ │ ├── binary.txt │ │ │ │ ├── index.html │ │ │ │ ├── lorem.txt │ │ │ │ ├── lorem_big5.txt │ │ │ │ ├── lorem_cp1252.txt │ │ │ │ ├── lorem_cp866.txt │ │ │ │ ├── lorem_gbk.txt │ │ │ │ ├── lorem_shiftjis.txt │ │ │ │ ├── lorem_utf16be.txt │ │ │ │ ├── lorem_utf16le.txt │ │ │ │ ├── lorem_utf8bom.txt │ │ │ │ ├── small.txt │ │ │ │ ├── small_umlaut.txt │ │ │ │ ├── some.utf16le │ │ │ │ ├── some_big5.txt │ │ │ │ ├── some_cp1252.txt │ │ │ │ ├── some_cyrillic.txt │ │ │ │ ├── some_gbk.txt │ │ │ │ ├── some_shiftjis.txt │ │ │ │ ├── some_small_cp1252.txt │ │ │ │ ├── some_utf16le.css │ │ │ │ ├── some_utf8_bom.txt │ │ │ │ ├── utf16_be_nobom.txt │ │ │ │ └── utf16_le_nobom.txt │ │ │ ├── nativeTextFileService.io.test.ts │ │ │ └── nativeTextFileService.test.ts │ │ │ └── node │ │ │ └── encoding │ │ │ ├── encoding.test.ts │ │ │ └── fixtures │ │ │ ├── empty.txt │ │ │ ├── issue_102202.txt │ │ │ ├── some.cp1252.txt │ │ │ ├── some.css.qwoff │ │ │ ├── some.json.png │ │ │ ├── some.pdf │ │ │ ├── some.png.txt │ │ │ ├── some.qwoff.txt │ │ │ ├── some.shiftjis.txt │ │ │ ├── some.xml.png │ │ │ ├── some_ansi.css │ │ │ ├── some_file.css │ │ │ ├── some_gbk.txt │ │ │ ├── some_utf16be.css │ │ │ ├── some_utf16le.css │ │ │ ├── some_utf8.css │ │ │ ├── utf16_be_nobom.txt │ │ │ └── utf16_le_nobom.txt │ ├── textmodelResolver │ │ ├── common │ │ │ └── textModelResolverService.ts │ │ └── test │ │ │ └── browser │ │ │ └── textModelResolverService.test.ts │ ├── textresourceProperties │ │ └── common │ │ │ └── textResourcePropertiesService.ts │ ├── themes │ │ ├── browser │ │ │ ├── browserHostColorSchemeService.ts │ │ │ ├── fileIconThemeData.ts │ │ │ ├── productIconThemeData.ts │ │ │ └── workbenchThemeService.ts │ │ ├── common │ │ │ ├── colorExtensionPoint.ts │ │ │ ├── colorThemeData.ts │ │ │ ├── colorThemeSchema.ts │ │ │ ├── fileIconThemeSchema.ts │ │ │ ├── hostColorSchemeService.ts │ │ │ ├── iconExtensionPoint.ts │ │ │ ├── plistParser.ts │ │ │ ├── productIconThemeSchema.ts │ │ │ ├── textMateScopeMatcher.ts │ │ │ ├── themeCompatibility.ts │ │ │ ├── themeConfiguration.ts │ │ │ ├── themeExtensionPoints.ts │ │ │ ├── tokenClassificationExtensionPoint.ts │ │ │ └── workbenchThemeService.ts │ │ ├── electron-sandbox │ │ │ └── nativeHostColorSchemeService.ts │ │ └── test │ │ │ └── electron-browser │ │ │ ├── color-theme.json │ │ │ └── tokenStyleResolving.test.ts │ ├── timer │ │ ├── browser │ │ │ └── timerService.ts │ │ └── electron-sandbox │ │ │ └── timerService.ts │ ├── title │ │ ├── common │ │ │ └── titleService.ts │ │ └── electron-sandbox │ │ │ └── titleService.ts │ ├── untitled │ │ ├── common │ │ │ ├── untitledTextEditorHandler.ts │ │ │ ├── untitledTextEditorInput.ts │ │ │ ├── untitledTextEditorModel.ts │ │ │ └── untitledTextEditorService.ts │ │ └── test │ │ │ └── browser │ │ │ └── untitledTextEditor.test.ts │ ├── update │ │ ├── browser │ │ │ └── updateService.ts │ │ └── electron-sandbox │ │ │ └── updateService.ts │ ├── uriIdentity │ │ ├── common │ │ │ ├── uriIdentity.ts │ │ │ └── uriIdentityService.ts │ │ └── test │ │ │ └── common │ │ │ └── uriIdentityService.test.ts │ ├── url │ │ ├── browser │ │ │ └── urlService.ts │ │ └── electron-sandbox │ │ │ └── urlService.ts │ ├── userData │ │ ├── browser │ │ │ └── userDataInit.ts │ │ ├── common │ │ │ └── fileUserDataProvider.ts │ │ └── test │ │ │ └── browser │ │ │ └── fileUserDataProvider.test.ts │ ├── userDataSync │ │ ├── browser │ │ │ ├── userDataAutoSyncEnablementService.ts │ │ │ ├── userDataSyncResourceEnablementService.ts │ │ │ └── userDataSyncWorkbenchService.ts │ │ ├── common │ │ │ ├── userDataSync.ts │ │ │ └── userDataSyncUtil.ts │ │ └── electron-sandbox │ │ │ ├── userDataAutoSyncService.ts │ │ │ ├── userDataSyncAccountService.ts │ │ │ ├── userDataSyncMachinesService.ts │ │ │ ├── userDataSyncService.ts │ │ │ └── userDataSyncStoreManagementService.ts │ ├── viewlet │ │ └── browser │ │ │ └── viewlet.ts │ ├── views │ │ ├── browser │ │ │ └── viewDescriptorService.ts │ │ ├── common │ │ │ └── viewContainerModel.ts │ │ └── test │ │ │ └── browser │ │ │ ├── viewContainerModel.test.ts │ │ │ └── viewDescriptorService.test.ts │ ├── workingCopy │ │ ├── browser │ │ │ ├── workingCopyBackupService.ts │ │ │ └── workingCopyBackupTracker.ts │ │ ├── common │ │ │ ├── abstractFileWorkingCopyManager.ts │ │ │ ├── fileWorkingCopy.ts │ │ │ ├── fileWorkingCopyManager.ts │ │ │ ├── resourceWorkingCopy.ts │ │ │ ├── storedFileWorkingCopy.ts │ │ │ ├── storedFileWorkingCopyManager.ts │ │ │ ├── untitledFileWorkingCopy.ts │ │ │ ├── untitledFileWorkingCopyManager.ts │ │ │ ├── workingCopy.ts │ │ │ ├── workingCopyBackup.ts │ │ │ ├── workingCopyBackupService.ts │ │ │ ├── workingCopyBackupTracker.ts │ │ │ ├── workingCopyEditorService.ts │ │ │ ├── workingCopyFileOperationParticipant.ts │ │ │ ├── workingCopyFileService.ts │ │ │ └── workingCopyService.ts │ │ ├── electron-sandbox │ │ │ ├── workingCopyBackupService.ts │ │ │ └── workingCopyBackupTracker.ts │ │ └── test │ │ │ ├── browser │ │ │ ├── fileWorkingCopyManager.test.ts │ │ │ ├── resourceWorkingCopyTest.ts │ │ │ ├── storedFileWorkingCopy.test.ts │ │ │ ├── storedFileWorkingCopyManager.test.ts │ │ │ ├── untitledFileWorkingCopy.test.ts │ │ │ ├── untitledFileWorkingCopyManager.test.ts │ │ │ ├── workingCopyBackupTracker.test.ts │ │ │ ├── workingCopyEditorService.test.ts │ │ │ └── workingCopyFileService.test.ts │ │ │ ├── common │ │ │ └── workingCopyService.test.ts │ │ │ └── electron-browser │ │ │ ├── fixtures │ │ │ └── binary.txt │ │ │ ├── workingCopyBackupService.test.ts │ │ │ └── workingCopyBackupTracker.test.ts │ └── workspaces │ │ ├── browser │ │ ├── abstractWorkspaceEditingService.ts │ │ ├── workspaceEditingService.ts │ │ ├── workspaceTrustEditorInput.ts │ │ ├── workspaces.ts │ │ └── workspacesService.ts │ │ ├── common │ │ ├── workspaceEditing.ts │ │ └── workspaceTrust.ts │ │ ├── electron-sandbox │ │ ├── workspaceEditingService.ts │ │ └── workspacesService.ts │ │ └── test │ │ ├── browser │ │ └── workspaces.test.ts │ │ └── common │ │ └── testWorkspaceTrustService.ts │ ├── test │ ├── browser │ │ ├── api │ │ │ ├── extHost.api.impl.test.ts │ │ │ ├── extHostApiCommands.test.ts │ │ │ ├── extHostBulkEdits.test.ts │ │ │ ├── extHostCommands.test.ts │ │ │ ├── extHostConfiguration.test.ts │ │ │ ├── extHostDecorations.test.ts │ │ │ ├── extHostDiagnostics.test.ts │ │ │ ├── extHostDocumentData.test.perf-data.ts │ │ │ ├── extHostDocumentData.test.ts │ │ │ ├── extHostDocumentSaveParticipant.test.ts │ │ │ ├── extHostDocumentsAndEditors.test.ts │ │ │ ├── extHostFileSystemEventService.test.ts │ │ │ ├── extHostLanguageFeatures.test.ts │ │ │ ├── extHostMessagerService.test.ts │ │ │ ├── extHostNotebook.test.ts │ │ │ ├── extHostNotebookConcatDocument.test.ts │ │ │ ├── extHostNotebookKernel2.test.ts │ │ │ ├── extHostTesting.test.ts │ │ │ ├── extHostTextEditor.test.ts │ │ │ ├── extHostTreeViews.test.ts │ │ │ ├── extHostTypeConverter.test.ts │ │ │ ├── extHostTypes.test.ts │ │ │ ├── extHostWebview.test.ts │ │ │ ├── extHostWorkspace.test.ts │ │ │ ├── mainThreadCommands.test.ts │ │ │ ├── mainThreadConfiguration.test.ts │ │ │ ├── mainThreadDiagnostics.test.ts │ │ │ ├── mainThreadDocumentContentProviders.test.ts │ │ │ ├── mainThreadDocuments.test.ts │ │ │ ├── mainThreadDocumentsAndEditors.test.ts │ │ │ ├── mainThreadEditors.test.ts │ │ │ ├── mainThreadTreeViews.test.ts │ │ │ └── testRPCProtocol.ts │ │ ├── codeeditor.test.ts │ │ ├── part.test.ts │ │ ├── parts │ │ │ └── editor │ │ │ │ ├── breadcrumbModel.test.ts │ │ │ │ ├── diffEditorInput.test.ts │ │ │ │ ├── editor.test.ts │ │ │ │ ├── editorDiffModel.test.ts │ │ │ │ ├── editorGroupModel.test.ts │ │ │ │ ├── editorInput.test.ts │ │ │ │ ├── editorModel.test.ts │ │ │ │ ├── editorPane.test.ts │ │ │ │ ├── resourceEditorInput.test.ts │ │ │ │ ├── sideBySideEditorInput.test.ts │ │ │ │ └── textResourceEditorInput.test.ts │ │ ├── quickAccess.test.ts │ │ ├── viewlet.test.ts │ │ └── workbenchTestServices.ts │ ├── common │ │ ├── memento.test.ts │ │ ├── notifications.test.ts │ │ └── workbenchTestServices.ts │ ├── electron-browser │ │ ├── api │ │ │ ├── extHostSearch.test.ts │ │ │ └── mainThreadWorkspace.test.ts │ │ ├── colorRegistry.releaseTest.ts │ │ ├── colorRegistryExport.test.ts │ │ ├── textsearch.perf.integrationTest.ts │ │ └── workbenchTestServices.ts │ └── node │ │ └── api │ │ └── extHostTunnelService.test.ts │ ├── workbench.common.main.ts │ ├── workbench.desktop.main.css │ ├── workbench.desktop.main.nls.js │ ├── workbench.desktop.main.ts │ ├── workbench.desktop.sandbox.main.ts │ ├── workbench.sandbox.main.ts │ ├── workbench.web.api.css │ ├── workbench.web.api.nls.js │ ├── workbench.web.api.ts │ └── workbench.web.main.ts ├── test ├── .mocharc.json ├── README.md ├── automation │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── package.json │ ├── src │ │ ├── activityBar.ts │ │ ├── application.ts │ │ ├── code.ts │ │ ├── debug.ts │ │ ├── driver.js │ │ ├── editor.ts │ │ ├── editors.ts │ │ ├── explorer.ts │ │ ├── extensions.ts │ │ ├── index.ts │ │ ├── keybindings.ts │ │ ├── logger.ts │ │ ├── notebook.ts │ │ ├── peek.ts │ │ ├── playwrightDriver.ts │ │ ├── problems.ts │ │ ├── quickaccess.ts │ │ ├── quickinput.ts │ │ ├── scm.ts │ │ ├── search.ts │ │ ├── settings.ts │ │ ├── statusbar.ts │ │ ├── terminal.ts │ │ ├── viewlet.ts │ │ └── workbench.ts │ ├── tools │ │ ├── copy-driver-definition.js │ │ └── copy-package-version.js │ ├── tsconfig.json │ └── yarn.lock ├── cgmanifest.json ├── integration │ ├── browser │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── yarn.lock │ └── electron │ │ └── testrunner.js ├── leaks │ ├── index.html │ ├── package.json │ ├── server.js │ └── yarn.lock ├── monaco │ ├── .gitignore │ ├── .mocharc.json │ ├── README.md │ ├── core.js │ ├── dist │ │ └── core.html │ ├── monaco.test.ts │ ├── package.json │ ├── runner.js │ ├── tsconfig.json │ ├── webpack.config.js │ └── yarn.lock ├── smoke │ ├── .gitignore │ ├── Audit.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── areas │ │ │ ├── editor │ │ │ │ └── editor.test.ts │ │ │ ├── extensions │ │ │ │ └── extensions.test.ts │ │ │ ├── languages │ │ │ │ └── languages.test.ts │ │ │ ├── multiroot │ │ │ │ └── multiroot.test.ts │ │ │ ├── notebook │ │ │ │ └── notebook.test.ts │ │ │ ├── preferences │ │ │ │ └── preferences.test.ts │ │ │ ├── search │ │ │ │ └── search.test.ts │ │ │ ├── statusbar │ │ │ │ └── statusbar.test.ts │ │ │ └── workbench │ │ │ │ ├── data-loss.test.ts │ │ │ │ ├── data-migration.test.ts │ │ │ │ ├── launch.test.ts │ │ │ │ └── localization.test.ts │ │ ├── main.ts │ │ └── utils.ts │ ├── test │ │ └── index.js │ ├── tsconfig.json │ └── yarn.lock └── unit │ ├── README.md │ ├── assert.js │ ├── browser │ ├── index.js │ └── renderer.html │ ├── coverage.js │ ├── electron │ ├── index.js │ ├── renderer.html │ └── renderer.js │ ├── fullJsonStreamReporter.js │ └── node │ ├── all.js │ ├── browser.js │ ├── css.mock.js │ └── index.html ├── tsfmt.json └── yarn.lock /.devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.devcontainer/README.md -------------------------------------------------------------------------------- /.devcontainer/cache/.gitignore: -------------------------------------------------------------------------------- 1 | *.manifest 2 | -------------------------------------------------------------------------------- /.devcontainer/cache/before-cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.devcontainer/cache/before-cache.sh -------------------------------------------------------------------------------- /.devcontainer/cache/cache-diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.devcontainer/cache/cache-diff.sh -------------------------------------------------------------------------------- /.devcontainer/cache/cache.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.devcontainer/cache/cache.Dockerfile -------------------------------------------------------------------------------- /.devcontainer/cache/restore-diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.devcontainer/cache/restore-diff.sh -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.devcontainer/prepare.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/calendar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.github/calendar.yml -------------------------------------------------------------------------------- /.github/classifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.github/classifier.json -------------------------------------------------------------------------------- /.github/commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.github/commands.json -------------------------------------------------------------------------------- /.github/commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.github/commands.yml -------------------------------------------------------------------------------- /.github/endgame/insiders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.github/endgame/insiders.yml -------------------------------------------------------------------------------- /.github/insiders.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.github/insiders.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/similarity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.github/similarity.yml -------------------------------------------------------------------------------- /.github/subscribers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.github/subscribers.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.mailmap -------------------------------------------------------------------------------- /.mention-bot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.mention-bot -------------------------------------------------------------------------------- /.vscode/cglicenses.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.vscode/cglicenses.schema.json -------------------------------------------------------------------------------- /.vscode/cgmanifest.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.vscode/cgmanifest.schema.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/notebooks/api.github-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.vscode/notebooks/api.github-issues -------------------------------------------------------------------------------- /.vscode/notebooks/inbox.github-issues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.vscode/notebooks/inbox.github-issues -------------------------------------------------------------------------------- /.vscode/searches/ts36031.code-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.vscode/searches/ts36031.code-search -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/shared.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.vscode/shared.code-snippets -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/.yarnrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /cglicenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/cglicenses.json -------------------------------------------------------------------------------- /cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/cgmanifest.json -------------------------------------------------------------------------------- /extensions/bat/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/bat/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/bat/cgmanifest.json -------------------------------------------------------------------------------- /extensions/bat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/bat/package.json -------------------------------------------------------------------------------- /extensions/bat/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/bat/package.nls.json -------------------------------------------------------------------------------- /extensions/bat/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/bat/yarn.lock -------------------------------------------------------------------------------- /extensions/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/cgmanifest.json -------------------------------------------------------------------------------- /extensions/clojure/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/clojure/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/clojure/cgmanifest.json -------------------------------------------------------------------------------- /extensions/clojure/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/clojure/package.json -------------------------------------------------------------------------------- /extensions/clojure/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/clojure/package.nls.json -------------------------------------------------------------------------------- /extensions/clojure/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/clojure/yarn.lock -------------------------------------------------------------------------------- /extensions/coffeescript/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/coffeescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/coffeescript/package.json -------------------------------------------------------------------------------- /extensions/coffeescript/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/coffeescript/yarn.lock -------------------------------------------------------------------------------- /extensions/cpp/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/cpp/.vscodeignore -------------------------------------------------------------------------------- /extensions/cpp/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/cpp/cgmanifest.json -------------------------------------------------------------------------------- /extensions/cpp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/cpp/package.json -------------------------------------------------------------------------------- /extensions/cpp/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/cpp/package.nls.json -------------------------------------------------------------------------------- /extensions/cpp/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/cpp/yarn.lock -------------------------------------------------------------------------------- /extensions/csharp/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/csharp/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/csharp/cgmanifest.json -------------------------------------------------------------------------------- /extensions/csharp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/csharp/package.json -------------------------------------------------------------------------------- /extensions/csharp/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/csharp/package.nls.json -------------------------------------------------------------------------------- /extensions/csharp/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/csharp/yarn.lock -------------------------------------------------------------------------------- /extensions/css-language-features/server/test/linksTestFixtures/.gitignore: -------------------------------------------------------------------------------- 1 | !/node_modules -------------------------------------------------------------------------------- /extensions/css-language-features/server/test/linksTestFixtures/node_modules/foo/package.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /extensions/css-language-features/server/test/pathCompletionFixtures/about/about.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/css-language-features/server/test/pathCompletionFixtures/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/css/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/css/.vscode/launch.json -------------------------------------------------------------------------------- /extensions/css/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | .vscode -------------------------------------------------------------------------------- /extensions/css/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/css/cgmanifest.json -------------------------------------------------------------------------------- /extensions/css/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/css/package.json -------------------------------------------------------------------------------- /extensions/css/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/css/package.nls.json -------------------------------------------------------------------------------- /extensions/css/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/css/yarn.lock -------------------------------------------------------------------------------- /extensions/dart/.vscodeignore: -------------------------------------------------------------------------------- 1 | build/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/dart/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/dart/cgmanifest.json -------------------------------------------------------------------------------- /extensions/dart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/dart/package.json -------------------------------------------------------------------------------- /extensions/dart/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/dart/package.nls.json -------------------------------------------------------------------------------- /extensions/debug-auto-launch/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/debug-auto-launch/yarn.lock -------------------------------------------------------------------------------- /extensions/docker/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/docker/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/docker/cgmanifest.json -------------------------------------------------------------------------------- /extensions/docker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/docker/package.json -------------------------------------------------------------------------------- /extensions/docker/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/docker/package.nls.json -------------------------------------------------------------------------------- /extensions/docker/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/docker/yarn.lock -------------------------------------------------------------------------------- /extensions/emmet/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/.vscode/launch.json -------------------------------------------------------------------------------- /extensions/emmet/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "emmet.excludeLanguages": [] 3 | } -------------------------------------------------------------------------------- /extensions/emmet/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/.vscodeignore -------------------------------------------------------------------------------- /extensions/emmet/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/CONTRIBUTING.md -------------------------------------------------------------------------------- /extensions/emmet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/README.md -------------------------------------------------------------------------------- /extensions/emmet/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/cgmanifest.json -------------------------------------------------------------------------------- /extensions/emmet/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/images/icon.png -------------------------------------------------------------------------------- /extensions/emmet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/package.json -------------------------------------------------------------------------------- /extensions/emmet/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/package.nls.json -------------------------------------------------------------------------------- /extensions/emmet/src/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/balance.ts -------------------------------------------------------------------------------- /extensions/emmet/src/bufferStream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/bufferStream.ts -------------------------------------------------------------------------------- /extensions/emmet/src/editPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/editPoint.ts -------------------------------------------------------------------------------- /extensions/emmet/src/emmetCommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/emmetCommon.ts -------------------------------------------------------------------------------- /extensions/emmet/src/locateFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/locateFile.ts -------------------------------------------------------------------------------- /extensions/emmet/src/matchTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/matchTag.ts -------------------------------------------------------------------------------- /extensions/emmet/src/mergeLines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/mergeLines.ts -------------------------------------------------------------------------------- /extensions/emmet/src/parseDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/parseDocument.ts -------------------------------------------------------------------------------- /extensions/emmet/src/removeTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/removeTag.ts -------------------------------------------------------------------------------- /extensions/emmet/src/selectItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/selectItem.ts -------------------------------------------------------------------------------- /extensions/emmet/src/selectItemHTML.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/selectItemHTML.ts -------------------------------------------------------------------------------- /extensions/emmet/src/splitJoinTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/splitJoinTag.ts -------------------------------------------------------------------------------- /extensions/emmet/src/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/test/index.ts -------------------------------------------------------------------------------- /extensions/emmet/src/test/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/test/testUtils.ts -------------------------------------------------------------------------------- /extensions/emmet/src/toggleComment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/toggleComment.ts -------------------------------------------------------------------------------- /extensions/emmet/src/typings/refs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/typings/refs.d.ts -------------------------------------------------------------------------------- /extensions/emmet/src/updateTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/updateTag.ts -------------------------------------------------------------------------------- /extensions/emmet/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/src/util.ts -------------------------------------------------------------------------------- /extensions/emmet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/tsconfig.json -------------------------------------------------------------------------------- /extensions/emmet/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/emmet/yarn.lock -------------------------------------------------------------------------------- /extensions/extension-editing/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/extension-editing/yarn.lock -------------------------------------------------------------------------------- /extensions/fsharp/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/fsharp/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/fsharp/cgmanifest.json -------------------------------------------------------------------------------- /extensions/fsharp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/fsharp/package.json -------------------------------------------------------------------------------- /extensions/fsharp/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/fsharp/package.nls.json -------------------------------------------------------------------------------- /extensions/fsharp/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/fsharp/yarn.lock -------------------------------------------------------------------------------- /extensions/git/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/.vscodeignore -------------------------------------------------------------------------------- /extensions/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/README.md -------------------------------------------------------------------------------- /extensions/git/build/update-emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/build/update-emoji.js -------------------------------------------------------------------------------- /extensions/git/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/cgmanifest.json -------------------------------------------------------------------------------- /extensions/git/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/package.json -------------------------------------------------------------------------------- /extensions/git/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/package.nls.json -------------------------------------------------------------------------------- /extensions/git/resources/emojis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/resources/emojis.json -------------------------------------------------------------------------------- /extensions/git/resources/icons/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/resources/icons/git.png -------------------------------------------------------------------------------- /extensions/git/src/api/api1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/api/api1.ts -------------------------------------------------------------------------------- /extensions/git/src/api/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/api/extension.ts -------------------------------------------------------------------------------- /extensions/git/src/api/git.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/api/git.d.ts -------------------------------------------------------------------------------- /extensions/git/src/askpass-empty.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo '' -------------------------------------------------------------------------------- /extensions/git/src/askpass-main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/askpass-main.ts -------------------------------------------------------------------------------- /extensions/git/src/askpass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/askpass.sh -------------------------------------------------------------------------------- /extensions/git/src/askpass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/askpass.ts -------------------------------------------------------------------------------- /extensions/git/src/autofetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/autofetch.ts -------------------------------------------------------------------------------- /extensions/git/src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/commands.ts -------------------------------------------------------------------------------- /extensions/git/src/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/decorators.ts -------------------------------------------------------------------------------- /extensions/git/src/emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/emoji.ts -------------------------------------------------------------------------------- /extensions/git/src/encoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/encoding.ts -------------------------------------------------------------------------------- /extensions/git/src/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/git.ts -------------------------------------------------------------------------------- /extensions/git/src/ipc/ipcClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/ipc/ipcClient.ts -------------------------------------------------------------------------------- /extensions/git/src/ipc/ipcServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/ipc/ipcServer.ts -------------------------------------------------------------------------------- /extensions/git/src/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/log.ts -------------------------------------------------------------------------------- /extensions/git/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/main.ts -------------------------------------------------------------------------------- /extensions/git/src/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/model.ts -------------------------------------------------------------------------------- /extensions/git/src/protocolHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/protocolHandler.ts -------------------------------------------------------------------------------- /extensions/git/src/pushError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/pushError.ts -------------------------------------------------------------------------------- /extensions/git/src/remoteProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/remoteProvider.ts -------------------------------------------------------------------------------- /extensions/git/src/remoteSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/remoteSource.ts -------------------------------------------------------------------------------- /extensions/git/src/repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/repository.ts -------------------------------------------------------------------------------- /extensions/git/src/staging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/staging.ts -------------------------------------------------------------------------------- /extensions/git/src/statusbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/statusbar.ts -------------------------------------------------------------------------------- /extensions/git/src/terminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/terminal.ts -------------------------------------------------------------------------------- /extensions/git/src/test/git.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/test/git.test.ts -------------------------------------------------------------------------------- /extensions/git/src/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/test/index.ts -------------------------------------------------------------------------------- /extensions/git/src/test/smoke.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/test/smoke.test.ts -------------------------------------------------------------------------------- /extensions/git/src/timelineProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/timelineProvider.ts -------------------------------------------------------------------------------- /extensions/git/src/typings/refs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/typings/refs.d.ts -------------------------------------------------------------------------------- /extensions/git/src/uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/uri.ts -------------------------------------------------------------------------------- /extensions/git/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/util.ts -------------------------------------------------------------------------------- /extensions/git/src/watch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/src/watch.ts -------------------------------------------------------------------------------- /extensions/git/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --ui tdd out/test -------------------------------------------------------------------------------- /extensions/git/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/tsconfig.json -------------------------------------------------------------------------------- /extensions/git/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/git/yarn.lock -------------------------------------------------------------------------------- /extensions/github-authentication/.gitignore: -------------------------------------------------------------------------------- 1 | src/common/config.json 2 | -------------------------------------------------------------------------------- /extensions/github/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/github/.vscodeignore -------------------------------------------------------------------------------- /extensions/github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/github/README.md -------------------------------------------------------------------------------- /extensions/github/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/github/images/icon.png -------------------------------------------------------------------------------- /extensions/github/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/github/package.json -------------------------------------------------------------------------------- /extensions/github/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/github/package.nls.json -------------------------------------------------------------------------------- /extensions/github/src/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/github/src/auth.ts -------------------------------------------------------------------------------- /extensions/github/src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/github/src/commands.ts -------------------------------------------------------------------------------- /extensions/github/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/github/src/extension.ts -------------------------------------------------------------------------------- /extensions/github/src/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/github/src/publish.ts -------------------------------------------------------------------------------- /extensions/github/src/typings/git.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/github/src/typings/git.d.ts -------------------------------------------------------------------------------- /extensions/github/src/typings/ref.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/github/src/typings/ref.d.ts -------------------------------------------------------------------------------- /extensions/github/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/github/src/util.ts -------------------------------------------------------------------------------- /extensions/github/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/github/tsconfig.json -------------------------------------------------------------------------------- /extensions/github/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/github/yarn.lock -------------------------------------------------------------------------------- /extensions/go/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/go/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/go/cgmanifest.json -------------------------------------------------------------------------------- /extensions/go/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/go/package.json -------------------------------------------------------------------------------- /extensions/go/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/go/package.nls.json -------------------------------------------------------------------------------- /extensions/go/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/go/yarn.lock -------------------------------------------------------------------------------- /extensions/groovy/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/groovy/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/groovy/cgmanifest.json -------------------------------------------------------------------------------- /extensions/groovy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/groovy/package.json -------------------------------------------------------------------------------- /extensions/groovy/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/groovy/package.nls.json -------------------------------------------------------------------------------- /extensions/groovy/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/groovy/yarn.lock -------------------------------------------------------------------------------- /extensions/grunt/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/grunt/.vscodeignore -------------------------------------------------------------------------------- /extensions/grunt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/grunt/README.md -------------------------------------------------------------------------------- /extensions/grunt/images/grunt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/grunt/images/grunt.png -------------------------------------------------------------------------------- /extensions/grunt/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/grunt/package.json -------------------------------------------------------------------------------- /extensions/grunt/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/grunt/package.nls.json -------------------------------------------------------------------------------- /extensions/grunt/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/grunt/src/main.ts -------------------------------------------------------------------------------- /extensions/grunt/src/typings/refs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/grunt/src/typings/refs.d.ts -------------------------------------------------------------------------------- /extensions/grunt/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/grunt/tsconfig.json -------------------------------------------------------------------------------- /extensions/grunt/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/grunt/yarn.lock -------------------------------------------------------------------------------- /extensions/gulp/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/gulp/.vscodeignore -------------------------------------------------------------------------------- /extensions/gulp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/gulp/README.md -------------------------------------------------------------------------------- /extensions/gulp/images/gulp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/gulp/images/gulp.png -------------------------------------------------------------------------------- /extensions/gulp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/gulp/package.json -------------------------------------------------------------------------------- /extensions/gulp/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/gulp/package.nls.json -------------------------------------------------------------------------------- /extensions/gulp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/gulp/src/main.ts -------------------------------------------------------------------------------- /extensions/gulp/src/typings/refs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/gulp/src/typings/refs.d.ts -------------------------------------------------------------------------------- /extensions/gulp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/gulp/tsconfig.json -------------------------------------------------------------------------------- /extensions/gulp/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/gulp/yarn.lock -------------------------------------------------------------------------------- /extensions/handlebars/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/handlebars/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/handlebars/cgmanifest.json -------------------------------------------------------------------------------- /extensions/handlebars/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/handlebars/package.json -------------------------------------------------------------------------------- /extensions/handlebars/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/handlebars/package.nls.json -------------------------------------------------------------------------------- /extensions/handlebars/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/handlebars/yarn.lock -------------------------------------------------------------------------------- /extensions/hlsl/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/hlsl/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/hlsl/cgmanifest.json -------------------------------------------------------------------------------- /extensions/hlsl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/hlsl/package.json -------------------------------------------------------------------------------- /extensions/hlsl/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/hlsl/package.nls.json -------------------------------------------------------------------------------- /extensions/hlsl/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/hlsl/yarn.lock -------------------------------------------------------------------------------- /extensions/html-language-features/server/src/test/pathCompletionFixtures/about/about.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/html-language-features/server/src/test/pathCompletionFixtures/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/html/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/html/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/html/cgmanifest.json -------------------------------------------------------------------------------- /extensions/html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/html/package.json -------------------------------------------------------------------------------- /extensions/html/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/html/package.nls.json -------------------------------------------------------------------------------- /extensions/html/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/html/yarn.lock -------------------------------------------------------------------------------- /extensions/image-preview/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/image-preview/.vscodeignore -------------------------------------------------------------------------------- /extensions/image-preview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/image-preview/README.md -------------------------------------------------------------------------------- /extensions/image-preview/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/image-preview/icon.png -------------------------------------------------------------------------------- /extensions/image-preview/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/image-preview/icon.svg -------------------------------------------------------------------------------- /extensions/image-preview/media/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/image-preview/media/main.js -------------------------------------------------------------------------------- /extensions/image-preview/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/image-preview/package.json -------------------------------------------------------------------------------- /extensions/image-preview/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/image-preview/tsconfig.json -------------------------------------------------------------------------------- /extensions/image-preview/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/image-preview/yarn.lock -------------------------------------------------------------------------------- /extensions/ini/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/ini/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/ini/cgmanifest.json -------------------------------------------------------------------------------- /extensions/ini/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/ini/package.json -------------------------------------------------------------------------------- /extensions/ini/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/ini/package.nls.json -------------------------------------------------------------------------------- /extensions/ini/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/ini/yarn.lock -------------------------------------------------------------------------------- /extensions/jake/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/jake/.vscodeignore -------------------------------------------------------------------------------- /extensions/jake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/jake/README.md -------------------------------------------------------------------------------- /extensions/jake/images/cowboy_hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/jake/images/cowboy_hat.png -------------------------------------------------------------------------------- /extensions/jake/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/jake/package.json -------------------------------------------------------------------------------- /extensions/jake/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/jake/package.nls.json -------------------------------------------------------------------------------- /extensions/jake/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/jake/src/main.ts -------------------------------------------------------------------------------- /extensions/jake/src/typings/refs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/jake/src/typings/refs.d.ts -------------------------------------------------------------------------------- /extensions/jake/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/jake/tsconfig.json -------------------------------------------------------------------------------- /extensions/jake/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/jake/yarn.lock -------------------------------------------------------------------------------- /extensions/java/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/java/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/java/cgmanifest.json -------------------------------------------------------------------------------- /extensions/java/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/java/package.json -------------------------------------------------------------------------------- /extensions/java/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/java/package.nls.json -------------------------------------------------------------------------------- /extensions/java/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/java/yarn.lock -------------------------------------------------------------------------------- /extensions/javascript/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/javascript/.vscodeignore -------------------------------------------------------------------------------- /extensions/javascript/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/javascript/cgmanifest.json -------------------------------------------------------------------------------- /extensions/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/javascript/package.json -------------------------------------------------------------------------------- /extensions/javascript/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/javascript/package.nls.json -------------------------------------------------------------------------------- /extensions/javascript/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/javascript/yarn.lock -------------------------------------------------------------------------------- /extensions/json/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/json/.vscodeignore -------------------------------------------------------------------------------- /extensions/json/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/json/cgmanifest.json -------------------------------------------------------------------------------- /extensions/json/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/json/package.json -------------------------------------------------------------------------------- /extensions/json/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/json/package.nls.json -------------------------------------------------------------------------------- /extensions/json/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/json/yarn.lock -------------------------------------------------------------------------------- /extensions/julia/.vscodeignore: -------------------------------------------------------------------------------- 1 | build/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/julia/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/julia/cgmanifest.json -------------------------------------------------------------------------------- /extensions/julia/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/julia/package.json -------------------------------------------------------------------------------- /extensions/julia/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/julia/package.nls.json -------------------------------------------------------------------------------- /extensions/less/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/less/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/less/cgmanifest.json -------------------------------------------------------------------------------- /extensions/less/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/less/package.json -------------------------------------------------------------------------------- /extensions/less/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/less/package.nls.json -------------------------------------------------------------------------------- /extensions/less/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/less/yarn.lock -------------------------------------------------------------------------------- /extensions/log/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/log/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/log/cgmanifest.json -------------------------------------------------------------------------------- /extensions/log/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/log/package.json -------------------------------------------------------------------------------- /extensions/log/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/log/package.nls.json -------------------------------------------------------------------------------- /extensions/log/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/log/yarn.lock -------------------------------------------------------------------------------- /extensions/lua/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/lua/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/lua/cgmanifest.json -------------------------------------------------------------------------------- /extensions/lua/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/lua/package.json -------------------------------------------------------------------------------- /extensions/lua/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/lua/package.nls.json -------------------------------------------------------------------------------- /extensions/lua/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/lua/yarn.lock -------------------------------------------------------------------------------- /extensions/make/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/make/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/make/cgmanifest.json -------------------------------------------------------------------------------- /extensions/make/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/make/package.json -------------------------------------------------------------------------------- /extensions/make/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/make/package.nls.json -------------------------------------------------------------------------------- /extensions/make/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/make/yarn.lock -------------------------------------------------------------------------------- /extensions/markdown-basics/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/markdown-basics/yarn.lock -------------------------------------------------------------------------------- /extensions/markdown-language-features/.gitignore: -------------------------------------------------------------------------------- 1 | notebook-out 2 | media/*.js 3 | -------------------------------------------------------------------------------- /extensions/markdown-language-features/test-workspace/b.md: -------------------------------------------------------------------------------- 1 | # b 2 | 3 | [./a](./a) 4 | 5 | # header1 -------------------------------------------------------------------------------- /extensions/markdown-language-features/test-workspace/sub/d.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/merge-conflict/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/merge-conflict/README.md -------------------------------------------------------------------------------- /extensions/merge-conflict/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/merge-conflict/package.json -------------------------------------------------------------------------------- /extensions/merge-conflict/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/merge-conflict/yarn.lock -------------------------------------------------------------------------------- /extensions/notebook-markdown-extensions/.gitignore: -------------------------------------------------------------------------------- 1 | notebook-out 2 | -------------------------------------------------------------------------------- /extensions/npm/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/.vscode/launch.json -------------------------------------------------------------------------------- /extensions/npm/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/.vscode/tasks.json -------------------------------------------------------------------------------- /extensions/npm/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/.vscodeignore -------------------------------------------------------------------------------- /extensions/npm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/README.md -------------------------------------------------------------------------------- /extensions/npm/images/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/images/code.svg -------------------------------------------------------------------------------- /extensions/npm/images/npm_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/images/npm_icon.png -------------------------------------------------------------------------------- /extensions/npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/package.json -------------------------------------------------------------------------------- /extensions/npm/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/package.nls.json -------------------------------------------------------------------------------- /extensions/npm/src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/src/commands.ts -------------------------------------------------------------------------------- /extensions/npm/src/npmBrowserMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/src/npmBrowserMain.ts -------------------------------------------------------------------------------- /extensions/npm/src/npmMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/src/npmMain.ts -------------------------------------------------------------------------------- /extensions/npm/src/npmScriptLens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/src/npmScriptLens.ts -------------------------------------------------------------------------------- /extensions/npm/src/npmView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/src/npmView.ts -------------------------------------------------------------------------------- /extensions/npm/src/preferred-pm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/src/preferred-pm.ts -------------------------------------------------------------------------------- /extensions/npm/src/readScripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/src/readScripts.ts -------------------------------------------------------------------------------- /extensions/npm/src/scriptHover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/src/scriptHover.ts -------------------------------------------------------------------------------- /extensions/npm/src/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/src/tasks.ts -------------------------------------------------------------------------------- /extensions/npm/src/typings/refs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/src/typings/refs.d.ts -------------------------------------------------------------------------------- /extensions/npm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/tsconfig.json -------------------------------------------------------------------------------- /extensions/npm/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/npm/yarn.lock -------------------------------------------------------------------------------- /extensions/objective-c/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/objective-c/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/objective-c/cgmanifest.json -------------------------------------------------------------------------------- /extensions/objective-c/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/objective-c/package.json -------------------------------------------------------------------------------- /extensions/objective-c/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/objective-c/yarn.lock -------------------------------------------------------------------------------- /extensions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/package.json -------------------------------------------------------------------------------- /extensions/perl/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/perl/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/perl/cgmanifest.json -------------------------------------------------------------------------------- /extensions/perl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/perl/package.json -------------------------------------------------------------------------------- /extensions/perl/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/perl/package.nls.json -------------------------------------------------------------------------------- /extensions/perl/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/perl/yarn.lock -------------------------------------------------------------------------------- /extensions/php/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/php/.vscode/launch.json -------------------------------------------------------------------------------- /extensions/php/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/php/.vscode/tasks.json -------------------------------------------------------------------------------- /extensions/php/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/php/.vscodeignore -------------------------------------------------------------------------------- /extensions/php/build/update-grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/php/build/update-grammar.js -------------------------------------------------------------------------------- /extensions/php/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/php/cgmanifest.json -------------------------------------------------------------------------------- /extensions/php/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/php/package.json -------------------------------------------------------------------------------- /extensions/php/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/php/package.nls.json -------------------------------------------------------------------------------- /extensions/php/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/php/yarn.lock -------------------------------------------------------------------------------- /extensions/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/postinstall.js -------------------------------------------------------------------------------- /extensions/powershell/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/powershell/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/powershell/cgmanifest.json -------------------------------------------------------------------------------- /extensions/powershell/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/powershell/package.json -------------------------------------------------------------------------------- /extensions/powershell/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/powershell/package.nls.json -------------------------------------------------------------------------------- /extensions/powershell/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/powershell/yarn.lock -------------------------------------------------------------------------------- /extensions/pug/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/pug/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/pug/cgmanifest.json -------------------------------------------------------------------------------- /extensions/pug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/pug/package.json -------------------------------------------------------------------------------- /extensions/pug/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/pug/package.nls.json -------------------------------------------------------------------------------- /extensions/pug/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/pug/yarn.lock -------------------------------------------------------------------------------- /extensions/python/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/python/.vscode/launch.json -------------------------------------------------------------------------------- /extensions/python/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/python/.vscode/tasks.json -------------------------------------------------------------------------------- /extensions/python/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | .vscode 4 | -------------------------------------------------------------------------------- /extensions/python/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/python/cgmanifest.json -------------------------------------------------------------------------------- /extensions/python/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/python/package.json -------------------------------------------------------------------------------- /extensions/python/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/python/package.nls.json -------------------------------------------------------------------------------- /extensions/python/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/python/yarn.lock -------------------------------------------------------------------------------- /extensions/r/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/r/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/r/cgmanifest.json -------------------------------------------------------------------------------- /extensions/r/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/r/package.json -------------------------------------------------------------------------------- /extensions/r/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/r/package.nls.json -------------------------------------------------------------------------------- /extensions/r/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/r/yarn.lock -------------------------------------------------------------------------------- /extensions/razor/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/razor/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/razor/cgmanifest.json -------------------------------------------------------------------------------- /extensions/razor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/razor/package.json -------------------------------------------------------------------------------- /extensions/razor/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/razor/package.nls.json -------------------------------------------------------------------------------- /extensions/razor/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/razor/yarn.lock -------------------------------------------------------------------------------- /extensions/ruby/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/ruby/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/ruby/cgmanifest.json -------------------------------------------------------------------------------- /extensions/ruby/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/ruby/package.json -------------------------------------------------------------------------------- /extensions/ruby/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/ruby/package.nls.json -------------------------------------------------------------------------------- /extensions/ruby/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/ruby/yarn.lock -------------------------------------------------------------------------------- /extensions/rust/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/rust/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/rust/cgmanifest.json -------------------------------------------------------------------------------- /extensions/rust/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/rust/package.json -------------------------------------------------------------------------------- /extensions/rust/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/rust/package.nls.json -------------------------------------------------------------------------------- /extensions/rust/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/rust/yarn.lock -------------------------------------------------------------------------------- /extensions/scss/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/scss/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/scss/cgmanifest.json -------------------------------------------------------------------------------- /extensions/scss/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/scss/package.json -------------------------------------------------------------------------------- /extensions/scss/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/scss/package.nls.json -------------------------------------------------------------------------------- /extensions/scss/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/scss/yarn.lock -------------------------------------------------------------------------------- /extensions/search-result/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/search-result/.vscodeignore -------------------------------------------------------------------------------- /extensions/search-result/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/search-result/README.md -------------------------------------------------------------------------------- /extensions/search-result/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/search-result/package.json -------------------------------------------------------------------------------- /extensions/search-result/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/search-result/tsconfig.json -------------------------------------------------------------------------------- /extensions/search-result/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/search-result/yarn.lock -------------------------------------------------------------------------------- /extensions/shaderlab/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/shaderlab/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/shaderlab/cgmanifest.json -------------------------------------------------------------------------------- /extensions/shaderlab/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/shaderlab/package.json -------------------------------------------------------------------------------- /extensions/shaderlab/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/shaderlab/package.nls.json -------------------------------------------------------------------------------- /extensions/shaderlab/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/shaderlab/yarn.lock -------------------------------------------------------------------------------- /extensions/shared.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/shared.webpack.config.js -------------------------------------------------------------------------------- /extensions/shellscript/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/shellscript/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/shellscript/cgmanifest.json -------------------------------------------------------------------------------- /extensions/shellscript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/shellscript/package.json -------------------------------------------------------------------------------- /extensions/shellscript/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/shellscript/yarn.lock -------------------------------------------------------------------------------- /extensions/simple-browser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/simple-browser/.gitignore -------------------------------------------------------------------------------- /extensions/simple-browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/simple-browser/README.md -------------------------------------------------------------------------------- /extensions/simple-browser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/simple-browser/package.json -------------------------------------------------------------------------------- /extensions/simple-browser/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/simple-browser/yarn.lock -------------------------------------------------------------------------------- /extensions/sql/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/sql/build/update-grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/sql/build/update-grammar.js -------------------------------------------------------------------------------- /extensions/sql/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/sql/cgmanifest.json -------------------------------------------------------------------------------- /extensions/sql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/sql/package.json -------------------------------------------------------------------------------- /extensions/sql/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/sql/package.nls.json -------------------------------------------------------------------------------- /extensions/sql/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/sql/yarn.lock -------------------------------------------------------------------------------- /extensions/swift/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/swift/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/swift/LICENSE.md -------------------------------------------------------------------------------- /extensions/swift/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/swift/cgmanifest.json -------------------------------------------------------------------------------- /extensions/swift/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/swift/package.json -------------------------------------------------------------------------------- /extensions/swift/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/swift/package.nls.json -------------------------------------------------------------------------------- /extensions/swift/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/swift/yarn.lock -------------------------------------------------------------------------------- /extensions/theme-abyss/.vscodeignore: -------------------------------------------------------------------------------- 1 | cgmanifest.json 2 | -------------------------------------------------------------------------------- /extensions/theme-abyss/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-abyss/cgmanifest.json -------------------------------------------------------------------------------- /extensions/theme-abyss/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-abyss/package.json -------------------------------------------------------------------------------- /extensions/theme-abyss/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-abyss/yarn.lock -------------------------------------------------------------------------------- /extensions/theme-defaults/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-defaults/package.json -------------------------------------------------------------------------------- /extensions/theme-defaults/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-defaults/yarn.lock -------------------------------------------------------------------------------- /extensions/theme-kimbie-dark/.vscodeignore: -------------------------------------------------------------------------------- 1 | cgmanifest.json 2 | -------------------------------------------------------------------------------- /extensions/theme-kimbie-dark/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-kimbie-dark/yarn.lock -------------------------------------------------------------------------------- /extensions/theme-monokai-dimmed/.vscodeignore: -------------------------------------------------------------------------------- 1 | cgmanifest.json 2 | -------------------------------------------------------------------------------- /extensions/theme-monokai/.vscodeignore: -------------------------------------------------------------------------------- 1 | cgmanifest.json 2 | -------------------------------------------------------------------------------- /extensions/theme-monokai/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-monokai/package.json -------------------------------------------------------------------------------- /extensions/theme-monokai/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-monokai/yarn.lock -------------------------------------------------------------------------------- /extensions/theme-quietlight/.vscodeignore: -------------------------------------------------------------------------------- 1 | cgmanifest.json 2 | -------------------------------------------------------------------------------- /extensions/theme-quietlight/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-quietlight/yarn.lock -------------------------------------------------------------------------------- /extensions/theme-red/.vscodeignore: -------------------------------------------------------------------------------- 1 | cgmanifest.json 2 | -------------------------------------------------------------------------------- /extensions/theme-red/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-red/cgmanifest.json -------------------------------------------------------------------------------- /extensions/theme-red/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-red/package.json -------------------------------------------------------------------------------- /extensions/theme-red/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-red/package.nls.json -------------------------------------------------------------------------------- /extensions/theme-red/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-red/yarn.lock -------------------------------------------------------------------------------- /extensions/theme-seti/.vscodeignore: -------------------------------------------------------------------------------- 1 | build/** 2 | cgmanifest.json 3 | icons/preview.html 4 | CONTRIBUTING.md 5 | -------------------------------------------------------------------------------- /extensions/theme-seti/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-seti/CONTRIBUTING.md -------------------------------------------------------------------------------- /extensions/theme-seti/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-seti/README.md -------------------------------------------------------------------------------- /extensions/theme-seti/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-seti/cgmanifest.json -------------------------------------------------------------------------------- /extensions/theme-seti/icons/seti.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-seti/icons/seti.woff -------------------------------------------------------------------------------- /extensions/theme-seti/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-seti/package.json -------------------------------------------------------------------------------- /extensions/theme-seti/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/theme-seti/yarn.lock -------------------------------------------------------------------------------- /extensions/theme-solarized-dark/.vscodeignore: -------------------------------------------------------------------------------- 1 | cgmanifest.json 2 | -------------------------------------------------------------------------------- /extensions/theme-solarized-light/.vscodeignore: -------------------------------------------------------------------------------- 1 | cgmanifest.json 2 | -------------------------------------------------------------------------------- /extensions/theme-tomorrow-night-blue/.vscodeignore: -------------------------------------------------------------------------------- 1 | cgmanifest.json 2 | -------------------------------------------------------------------------------- /extensions/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/tsconfig.base.json -------------------------------------------------------------------------------- /extensions/types/lib.url.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/types/lib.url.d.ts -------------------------------------------------------------------------------- /extensions/typescript-language-features/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "prefer-const": "error" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /extensions/typescript-language-features/test-workspace/bar.ts: -------------------------------------------------------------------------------- 1 | // export const foo = 1; -------------------------------------------------------------------------------- /extensions/typescript-language-features/test-workspace/foo.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/typescript-language-features/test-workspace/foojs.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/typescript-language-features/test-workspace/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/vb/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/vb/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/vb/cgmanifest.json -------------------------------------------------------------------------------- /extensions/vb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/vb/package.json -------------------------------------------------------------------------------- /extensions/vb/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/vb/package.nls.json -------------------------------------------------------------------------------- /extensions/vb/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/vb/yarn.lock -------------------------------------------------------------------------------- /extensions/vscode-api-tests/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | testWorkspace/.vscode/tasks.json 4 | -------------------------------------------------------------------------------- /extensions/vscode-api-tests/testWorkspace/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | 4 | } -------------------------------------------------------------------------------- /extensions/vscode-api-tests/testWorkspace/files-exclude/file.txt: -------------------------------------------------------------------------------- 1 | file -------------------------------------------------------------------------------- /extensions/vscode-api-tests/testWorkspace/search-exclude/file.txt: -------------------------------------------------------------------------------- 1 | file -------------------------------------------------------------------------------- /extensions/vscode-api-tests/testWorkspace/simple.txt: -------------------------------------------------------------------------------- 1 | Just a simple file... -------------------------------------------------------------------------------- /extensions/vscode-api-tests/testWorkspace2/simple.txt: -------------------------------------------------------------------------------- 1 | Just a simple file... -------------------------------------------------------------------------------- /extensions/vscode-colorize-tests/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules -------------------------------------------------------------------------------- /extensions/vscode-colorize-tests/test/colorize-fixtures/test-keywords.ts: -------------------------------------------------------------------------------- 1 | export var foo = () => new RegExp(''); 2 | -------------------------------------------------------------------------------- /extensions/vscode-colorize-tests/test/colorize-fixtures/test-this.ts: -------------------------------------------------------------------------------- 1 | { 2 | this.foo = 9; 3 | } -------------------------------------------------------------------------------- /extensions/vscode-custom-editor-tests/test-workspace/index.abc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/vscode-test-resolver/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules -------------------------------------------------------------------------------- /extensions/xml/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/xml/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/xml/cgmanifest.json -------------------------------------------------------------------------------- /extensions/xml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/xml/package.json -------------------------------------------------------------------------------- /extensions/xml/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/xml/package.nls.json -------------------------------------------------------------------------------- /extensions/xml/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/xml/yarn.lock -------------------------------------------------------------------------------- /extensions/yaml/.vscodeignore: -------------------------------------------------------------------------------- 1 | test/** 2 | cgmanifest.json 3 | -------------------------------------------------------------------------------- /extensions/yaml/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/yaml/cgmanifest.json -------------------------------------------------------------------------------- /extensions/yaml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/yaml/package.json -------------------------------------------------------------------------------- /extensions/yaml/package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/yaml/package.nls.json -------------------------------------------------------------------------------- /extensions/yaml/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/yaml/yarn.lock -------------------------------------------------------------------------------- /extensions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/extensions/yarn.lock -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/package.json -------------------------------------------------------------------------------- /product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/product.json -------------------------------------------------------------------------------- /remote/.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/remote/.yarnrc -------------------------------------------------------------------------------- /remote/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/remote/package.json -------------------------------------------------------------------------------- /remote/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/remote/web/package.json -------------------------------------------------------------------------------- /remote/web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/remote/web/yarn.lock -------------------------------------------------------------------------------- /remote/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/remote/yarn.lock -------------------------------------------------------------------------------- /resources/completions/bash/code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/completions/bash/code -------------------------------------------------------------------------------- /resources/completions/zsh/_code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/completions/zsh/_code -------------------------------------------------------------------------------- /resources/darwin/bat.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/bat.icns -------------------------------------------------------------------------------- /resources/darwin/bin/code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/bin/code.sh -------------------------------------------------------------------------------- /resources/darwin/bower.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/bower.icns -------------------------------------------------------------------------------- /resources/darwin/c.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/c.icns -------------------------------------------------------------------------------- /resources/darwin/code.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/code.icns -------------------------------------------------------------------------------- /resources/darwin/config.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/config.icns -------------------------------------------------------------------------------- /resources/darwin/cpp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/cpp.icns -------------------------------------------------------------------------------- /resources/darwin/csharp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/csharp.icns -------------------------------------------------------------------------------- /resources/darwin/css.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/css.icns -------------------------------------------------------------------------------- /resources/darwin/default.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/default.icns -------------------------------------------------------------------------------- /resources/darwin/go.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/go.icns -------------------------------------------------------------------------------- /resources/darwin/html.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/html.icns -------------------------------------------------------------------------------- /resources/darwin/jade.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/jade.icns -------------------------------------------------------------------------------- /resources/darwin/java.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/java.icns -------------------------------------------------------------------------------- /resources/darwin/javascript.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/javascript.icns -------------------------------------------------------------------------------- /resources/darwin/json.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/json.icns -------------------------------------------------------------------------------- /resources/darwin/less.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/less.icns -------------------------------------------------------------------------------- /resources/darwin/markdown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/markdown.icns -------------------------------------------------------------------------------- /resources/darwin/php.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/php.icns -------------------------------------------------------------------------------- /resources/darwin/powershell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/powershell.icns -------------------------------------------------------------------------------- /resources/darwin/python.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/python.icns -------------------------------------------------------------------------------- /resources/darwin/react.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/react.icns -------------------------------------------------------------------------------- /resources/darwin/ruby.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/ruby.icns -------------------------------------------------------------------------------- /resources/darwin/sass.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/sass.icns -------------------------------------------------------------------------------- /resources/darwin/shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/shell.icns -------------------------------------------------------------------------------- /resources/darwin/sql.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/sql.icns -------------------------------------------------------------------------------- /resources/darwin/typescript.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/typescript.icns -------------------------------------------------------------------------------- /resources/darwin/vue.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/vue.icns -------------------------------------------------------------------------------- /resources/darwin/xml.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/xml.icns -------------------------------------------------------------------------------- /resources/darwin/yaml.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/darwin/yaml.icns -------------------------------------------------------------------------------- /resources/linux/bin/code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/linux/bin/code.sh -------------------------------------------------------------------------------- /resources/linux/code-workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/linux/code-workspace.xml -------------------------------------------------------------------------------- /resources/linux/code.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/linux/code.appdata.xml -------------------------------------------------------------------------------- /resources/linux/code.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/linux/code.desktop -------------------------------------------------------------------------------- /resources/linux/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/linux/code.png -------------------------------------------------------------------------------- /resources/linux/rpm/code.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/linux/rpm/code.xpm -------------------------------------------------------------------------------- /resources/linux/snap/electron-launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/linux/snap/electron-launch -------------------------------------------------------------------------------- /resources/linux/snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/linux/snap/snapcraft.yaml -------------------------------------------------------------------------------- /resources/web/callback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/web/callback.html -------------------------------------------------------------------------------- /resources/web/code-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/web/code-web.js -------------------------------------------------------------------------------- /resources/win32/bin/code.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/bin/code.cmd -------------------------------------------------------------------------------- /resources/win32/bin/code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/bin/code.sh -------------------------------------------------------------------------------- /resources/win32/bower.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/bower.ico -------------------------------------------------------------------------------- /resources/win32/c.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/c.ico -------------------------------------------------------------------------------- /resources/win32/code.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/code.ico -------------------------------------------------------------------------------- /resources/win32/code_150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/code_150x150.png -------------------------------------------------------------------------------- /resources/win32/code_70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/code_70x70.png -------------------------------------------------------------------------------- /resources/win32/config.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/config.ico -------------------------------------------------------------------------------- /resources/win32/cpp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/cpp.ico -------------------------------------------------------------------------------- /resources/win32/csharp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/csharp.ico -------------------------------------------------------------------------------- /resources/win32/css.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/css.ico -------------------------------------------------------------------------------- /resources/win32/default.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/default.ico -------------------------------------------------------------------------------- /resources/win32/go.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/go.ico -------------------------------------------------------------------------------- /resources/win32/html.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/html.ico -------------------------------------------------------------------------------- /resources/win32/inno-big-100.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/inno-big-100.bmp -------------------------------------------------------------------------------- /resources/win32/inno-big-125.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/inno-big-125.bmp -------------------------------------------------------------------------------- /resources/win32/inno-big-150.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/inno-big-150.bmp -------------------------------------------------------------------------------- /resources/win32/inno-big-175.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/inno-big-175.bmp -------------------------------------------------------------------------------- /resources/win32/inno-big-200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/inno-big-200.bmp -------------------------------------------------------------------------------- /resources/win32/inno-big-225.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/inno-big-225.bmp -------------------------------------------------------------------------------- /resources/win32/inno-big-250.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/inno-big-250.bmp -------------------------------------------------------------------------------- /resources/win32/inno-small-100.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/inno-small-100.bmp -------------------------------------------------------------------------------- /resources/win32/inno-small-125.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/inno-small-125.bmp -------------------------------------------------------------------------------- /resources/win32/inno-small-150.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/inno-small-150.bmp -------------------------------------------------------------------------------- /resources/win32/inno-small-175.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/inno-small-175.bmp -------------------------------------------------------------------------------- /resources/win32/inno-small-200.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/inno-small-200.bmp -------------------------------------------------------------------------------- /resources/win32/inno-small-225.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/inno-small-225.bmp -------------------------------------------------------------------------------- /resources/win32/inno-small-250.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/inno-small-250.bmp -------------------------------------------------------------------------------- /resources/win32/jade.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/jade.ico -------------------------------------------------------------------------------- /resources/win32/java.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/java.ico -------------------------------------------------------------------------------- /resources/win32/javascript.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/javascript.ico -------------------------------------------------------------------------------- /resources/win32/json.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/json.ico -------------------------------------------------------------------------------- /resources/win32/less.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/less.ico -------------------------------------------------------------------------------- /resources/win32/markdown.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/markdown.ico -------------------------------------------------------------------------------- /resources/win32/php.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/php.ico -------------------------------------------------------------------------------- /resources/win32/powershell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/powershell.ico -------------------------------------------------------------------------------- /resources/win32/python.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/python.ico -------------------------------------------------------------------------------- /resources/win32/react.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/react.ico -------------------------------------------------------------------------------- /resources/win32/ruby.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/ruby.ico -------------------------------------------------------------------------------- /resources/win32/sass.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/sass.ico -------------------------------------------------------------------------------- /resources/win32/shell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/shell.ico -------------------------------------------------------------------------------- /resources/win32/sql.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/sql.ico -------------------------------------------------------------------------------- /resources/win32/typescript.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/typescript.ico -------------------------------------------------------------------------------- /resources/win32/vue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/vue.ico -------------------------------------------------------------------------------- /resources/win32/xml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/xml.ico -------------------------------------------------------------------------------- /resources/win32/yaml.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/resources/win32/yaml.ico -------------------------------------------------------------------------------- /scripts/code-cli.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/scripts/code-cli.bat -------------------------------------------------------------------------------- /scripts/code-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/scripts/code-cli.sh -------------------------------------------------------------------------------- /scripts/code.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/scripts/code.bat -------------------------------------------------------------------------------- /scripts/code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/scripts/code.sh -------------------------------------------------------------------------------- /scripts/generate-definitelytyped.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/scripts/generate-definitelytyped.sh -------------------------------------------------------------------------------- /scripts/node-electron.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/scripts/node-electron.bat -------------------------------------------------------------------------------- /scripts/node-electron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/scripts/node-electron.sh -------------------------------------------------------------------------------- /scripts/npm.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | yarn %* 3 | -------------------------------------------------------------------------------- /scripts/npm.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | yarn $* 4 | -------------------------------------------------------------------------------- /scripts/test-documentation.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/scripts/test-documentation.bat -------------------------------------------------------------------------------- /scripts/test-documentation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/scripts/test-documentation.sh -------------------------------------------------------------------------------- /scripts/test-integration.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/scripts/test-integration.bat -------------------------------------------------------------------------------- /scripts/test-integration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/scripts/test-integration.sh -------------------------------------------------------------------------------- /scripts/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/scripts/test.bat -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /src/bootstrap-amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/bootstrap-amd.js -------------------------------------------------------------------------------- /src/bootstrap-fork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/bootstrap-fork.js -------------------------------------------------------------------------------- /src/bootstrap-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/bootstrap-node.js -------------------------------------------------------------------------------- /src/bootstrap-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/bootstrap-window.js -------------------------------------------------------------------------------- /src/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/bootstrap.js -------------------------------------------------------------------------------- /src/buildfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/buildfile.js -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/main.js -------------------------------------------------------------------------------- /src/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/tsconfig.base.json -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/tsconfig.monaco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/tsconfig.monaco.json -------------------------------------------------------------------------------- /src/tsconfig.tsec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/tsconfig.tsec.json -------------------------------------------------------------------------------- /src/tsec.exemptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/tsec.exemptions.json -------------------------------------------------------------------------------- /src/typings/require.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/typings/require.d.ts -------------------------------------------------------------------------------- /src/typings/thenable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/typings/thenable.d.ts -------------------------------------------------------------------------------- /src/vs/base/browser/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/browser.ts -------------------------------------------------------------------------------- /src/vs/base/browser/canIUse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/canIUse.ts -------------------------------------------------------------------------------- /src/vs/base/browser/contextmenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/contextmenu.ts -------------------------------------------------------------------------------- /src/vs/base/browser/dnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/dnd.ts -------------------------------------------------------------------------------- /src/vs/base/browser/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/dom.ts -------------------------------------------------------------------------------- /src/vs/base/browser/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/event.ts -------------------------------------------------------------------------------- /src/vs/base/browser/fastDomNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/fastDomNode.ts -------------------------------------------------------------------------------- /src/vs/base/browser/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/hash.ts -------------------------------------------------------------------------------- /src/vs/base/browser/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/history.ts -------------------------------------------------------------------------------- /src/vs/base/browser/iframe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/iframe.ts -------------------------------------------------------------------------------- /src/vs/base/browser/keyboardEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/keyboardEvent.ts -------------------------------------------------------------------------------- /src/vs/base/browser/mouseEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/mouseEvent.ts -------------------------------------------------------------------------------- /src/vs/base/browser/touch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/touch.ts -------------------------------------------------------------------------------- /src/vs/base/browser/ui/aria/aria.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/ui/aria/aria.css -------------------------------------------------------------------------------- /src/vs/base/browser/ui/aria/aria.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/ui/aria/aria.ts -------------------------------------------------------------------------------- /src/vs/base/browser/ui/grid/grid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/ui/grid/grid.ts -------------------------------------------------------------------------------- /src/vs/base/browser/ui/list/list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/ui/list/list.css -------------------------------------------------------------------------------- /src/vs/base/browser/ui/list/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/ui/list/list.ts -------------------------------------------------------------------------------- /src/vs/base/browser/ui/menu/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/ui/menu/menu.ts -------------------------------------------------------------------------------- /src/vs/base/browser/ui/sash/sash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/ui/sash/sash.css -------------------------------------------------------------------------------- /src/vs/base/browser/ui/sash/sash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/ui/sash/sash.ts -------------------------------------------------------------------------------- /src/vs/base/browser/ui/tree/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/ui/tree/tree.ts -------------------------------------------------------------------------------- /src/vs/base/browser/ui/widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/browser/ui/widget.ts -------------------------------------------------------------------------------- /src/vs/base/common/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/actions.ts -------------------------------------------------------------------------------- /src/vs/base/common/amd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/amd.ts -------------------------------------------------------------------------------- /src/vs/base/common/arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/arrays.ts -------------------------------------------------------------------------------- /src/vs/base/common/assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/assert.ts -------------------------------------------------------------------------------- /src/vs/base/common/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/async.ts -------------------------------------------------------------------------------- /src/vs/base/common/buffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/buffer.ts -------------------------------------------------------------------------------- /src/vs/base/common/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/cache.ts -------------------------------------------------------------------------------- /src/vs/base/common/cancellation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/cancellation.ts -------------------------------------------------------------------------------- /src/vs/base/common/charCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/charCode.ts -------------------------------------------------------------------------------- /src/vs/base/common/codicons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/codicons.ts -------------------------------------------------------------------------------- /src/vs/base/common/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/collections.ts -------------------------------------------------------------------------------- /src/vs/base/common/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/color.ts -------------------------------------------------------------------------------- /src/vs/base/common/comparers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/comparers.ts -------------------------------------------------------------------------------- /src/vs/base/common/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/console.ts -------------------------------------------------------------------------------- /src/vs/base/common/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/date.ts -------------------------------------------------------------------------------- /src/vs/base/common/decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/decorators.ts -------------------------------------------------------------------------------- /src/vs/base/common/diff/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/diff/diff.ts -------------------------------------------------------------------------------- /src/vs/base/common/errorMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/errorMessage.ts -------------------------------------------------------------------------------- /src/vs/base/common/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/errors.ts -------------------------------------------------------------------------------- /src/vs/base/common/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/event.ts -------------------------------------------------------------------------------- /src/vs/base/common/extpath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/extpath.ts -------------------------------------------------------------------------------- /src/vs/base/common/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/filters.ts -------------------------------------------------------------------------------- /src/vs/base/common/functional.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/functional.ts -------------------------------------------------------------------------------- /src/vs/base/common/fuzzyScorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/fuzzyScorer.ts -------------------------------------------------------------------------------- /src/vs/base/common/glob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/glob.ts -------------------------------------------------------------------------------- /src/vs/base/common/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/hash.ts -------------------------------------------------------------------------------- /src/vs/base/common/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/history.ts -------------------------------------------------------------------------------- /src/vs/base/common/htmlContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/htmlContent.ts -------------------------------------------------------------------------------- /src/vs/base/common/iconLabels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/iconLabels.ts -------------------------------------------------------------------------------- /src/vs/base/common/idGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/idGenerator.ts -------------------------------------------------------------------------------- /src/vs/base/common/insane/insane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/insane/insane.js -------------------------------------------------------------------------------- /src/vs/base/common/iterator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/iterator.ts -------------------------------------------------------------------------------- /src/vs/base/common/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/json.ts -------------------------------------------------------------------------------- /src/vs/base/common/jsonEdit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/jsonEdit.ts -------------------------------------------------------------------------------- /src/vs/base/common/jsonFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/jsonFormatter.ts -------------------------------------------------------------------------------- /src/vs/base/common/jsonSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/jsonSchema.ts -------------------------------------------------------------------------------- /src/vs/base/common/keyCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/keyCodes.ts -------------------------------------------------------------------------------- /src/vs/base/common/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/labels.ts -------------------------------------------------------------------------------- /src/vs/base/common/lazy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/lazy.ts -------------------------------------------------------------------------------- /src/vs/base/common/lifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/lifecycle.ts -------------------------------------------------------------------------------- /src/vs/base/common/linkedList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/linkedList.ts -------------------------------------------------------------------------------- /src/vs/base/common/linkedText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/linkedText.ts -------------------------------------------------------------------------------- /src/vs/base/common/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/map.ts -------------------------------------------------------------------------------- /src/vs/base/common/marked/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/marked/marked.js -------------------------------------------------------------------------------- /src/vs/base/common/marshalling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/marshalling.ts -------------------------------------------------------------------------------- /src/vs/base/common/mime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/mime.ts -------------------------------------------------------------------------------- /src/vs/base/common/navigator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/navigator.ts -------------------------------------------------------------------------------- /src/vs/base/common/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/network.ts -------------------------------------------------------------------------------- /src/vs/base/common/normalization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/normalization.ts -------------------------------------------------------------------------------- /src/vs/base/common/numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/numbers.ts -------------------------------------------------------------------------------- /src/vs/base/common/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/objects.ts -------------------------------------------------------------------------------- /src/vs/base/common/paging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/paging.ts -------------------------------------------------------------------------------- /src/vs/base/common/parsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/parsers.ts -------------------------------------------------------------------------------- /src/vs/base/common/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/path.ts -------------------------------------------------------------------------------- /src/vs/base/common/performance.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/performance.d.ts -------------------------------------------------------------------------------- /src/vs/base/common/performance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/performance.js -------------------------------------------------------------------------------- /src/vs/base/common/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/platform.ts -------------------------------------------------------------------------------- /src/vs/base/common/ports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/ports.ts -------------------------------------------------------------------------------- /src/vs/base/common/process.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/process.ts -------------------------------------------------------------------------------- /src/vs/base/common/processes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/processes.ts -------------------------------------------------------------------------------- /src/vs/base/common/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/product.ts -------------------------------------------------------------------------------- /src/vs/base/common/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/range.ts -------------------------------------------------------------------------------- /src/vs/base/common/resourceTree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/resourceTree.ts -------------------------------------------------------------------------------- /src/vs/base/common/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/resources.ts -------------------------------------------------------------------------------- /src/vs/base/common/scanCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/scanCode.ts -------------------------------------------------------------------------------- /src/vs/base/common/scrollable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/scrollable.ts -------------------------------------------------------------------------------- /src/vs/base/common/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/search.ts -------------------------------------------------------------------------------- /src/vs/base/common/semver/semver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/semver/semver.js -------------------------------------------------------------------------------- /src/vs/base/common/sequence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/sequence.ts -------------------------------------------------------------------------------- /src/vs/base/common/severity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/severity.ts -------------------------------------------------------------------------------- /src/vs/base/common/skipList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/skipList.ts -------------------------------------------------------------------------------- /src/vs/base/common/stopwatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/stopwatch.ts -------------------------------------------------------------------------------- /src/vs/base/common/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/stream.ts -------------------------------------------------------------------------------- /src/vs/base/common/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/strings.ts -------------------------------------------------------------------------------- /src/vs/base/common/styler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/styler.ts -------------------------------------------------------------------------------- /src/vs/base/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/types.ts -------------------------------------------------------------------------------- /src/vs/base/common/uint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/uint.ts -------------------------------------------------------------------------------- /src/vs/base/common/uri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/uri.ts -------------------------------------------------------------------------------- /src/vs/base/common/uriIpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/uriIpc.ts -------------------------------------------------------------------------------- /src/vs/base/common/uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/common/uuid.ts -------------------------------------------------------------------------------- /src/vs/base/node/cpuUsage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/cpuUsage.sh -------------------------------------------------------------------------------- /src/vs/base/node/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/crypto.ts -------------------------------------------------------------------------------- /src/vs/base/node/decoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/decoder.ts -------------------------------------------------------------------------------- /src/vs/base/node/extpath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/extpath.ts -------------------------------------------------------------------------------- /src/vs/base/node/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/id.ts -------------------------------------------------------------------------------- /src/vs/base/node/languagePacks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/languagePacks.d.ts -------------------------------------------------------------------------------- /src/vs/base/node/languagePacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/languagePacks.js -------------------------------------------------------------------------------- /src/vs/base/node/macAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/macAddress.ts -------------------------------------------------------------------------------- /src/vs/base/node/pfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/pfs.ts -------------------------------------------------------------------------------- /src/vs/base/node/ports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/ports.ts -------------------------------------------------------------------------------- /src/vs/base/node/powershell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/powershell.ts -------------------------------------------------------------------------------- /src/vs/base/node/processes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/processes.ts -------------------------------------------------------------------------------- /src/vs/base/node/ps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/ps.sh -------------------------------------------------------------------------------- /src/vs/base/node/ps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/ps.ts -------------------------------------------------------------------------------- /src/vs/base/node/shell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/shell.ts -------------------------------------------------------------------------------- /src/vs/base/node/terminalEncoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/terminalEncoding.ts -------------------------------------------------------------------------------- /src/vs/base/node/terminateProcess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/terminateProcess.sh -------------------------------------------------------------------------------- /src/vs/base/node/watcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/watcher.ts -------------------------------------------------------------------------------- /src/vs/base/node/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/node/zip.ts -------------------------------------------------------------------------------- /src/vs/base/parts/ipc/common/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/parts/ipc/common/ipc.ts -------------------------------------------------------------------------------- /src/vs/base/parts/ipc/node/ipc.cp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/parts/ipc/node/ipc.cp.ts -------------------------------------------------------------------------------- /src/vs/base/test/browser/dom.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/browser/dom.test.ts -------------------------------------------------------------------------------- /src/vs/base/test/common/glob.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/common/glob.test.ts -------------------------------------------------------------------------------- /src/vs/base/test/common/json.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/common/json.test.ts -------------------------------------------------------------------------------- /src/vs/base/test/common/lazy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/common/lazy.test.ts -------------------------------------------------------------------------------- /src/vs/base/test/common/map.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/common/map.test.ts -------------------------------------------------------------------------------- /src/vs/base/test/common/mime.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/common/mime.test.ts -------------------------------------------------------------------------------- /src/vs/base/test/common/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/common/mock.ts -------------------------------------------------------------------------------- /src/vs/base/test/common/path.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/common/path.test.ts -------------------------------------------------------------------------------- /src/vs/base/test/common/uri.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/common/uri.test.ts -------------------------------------------------------------------------------- /src/vs/base/test/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/common/utils.ts -------------------------------------------------------------------------------- /src/vs/base/test/common/uuid.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/common/uuid.test.ts -------------------------------------------------------------------------------- /src/vs/base/test/node/crypto.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/node/crypto.test.ts -------------------------------------------------------------------------------- /src/vs/base/test/node/id.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/node/id.test.ts -------------------------------------------------------------------------------- /src/vs/base/test/node/keytar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/node/keytar.test.ts -------------------------------------------------------------------------------- /src/vs/base/test/node/port.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/node/port.test.ts -------------------------------------------------------------------------------- /src/vs/base/test/node/testUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/test/node/testUtils.ts -------------------------------------------------------------------------------- /src/vs/base/worker/workerMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/base/worker/workerMain.ts -------------------------------------------------------------------------------- /src/vs/code/buildfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/code/buildfile.js -------------------------------------------------------------------------------- /src/vs/code/electron-main/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/code/electron-main/app.ts -------------------------------------------------------------------------------- /src/vs/code/electron-main/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/code/electron-main/auth.ts -------------------------------------------------------------------------------- /src/vs/code/electron-main/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/code/electron-main/main.ts -------------------------------------------------------------------------------- /src/vs/code/node/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/code/node/cli.ts -------------------------------------------------------------------------------- /src/vs/code/node/cliProcessMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/code/node/cliProcessMain.ts -------------------------------------------------------------------------------- /src/vs/css.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/css.build.js -------------------------------------------------------------------------------- /src/vs/css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/css.d.ts -------------------------------------------------------------------------------- /src/vs/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/css.js -------------------------------------------------------------------------------- /src/vs/editor/browser/editorDom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/browser/editorDom.ts -------------------------------------------------------------------------------- /src/vs/editor/common/core/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/common/core/range.ts -------------------------------------------------------------------------------- /src/vs/editor/common/core/rgba.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/common/core/rgba.ts -------------------------------------------------------------------------------- /src/vs/editor/common/core/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/common/core/token.ts -------------------------------------------------------------------------------- /src/vs/editor/common/editorAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/common/editorAction.ts -------------------------------------------------------------------------------- /src/vs/editor/common/editorCommon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/common/editorCommon.ts -------------------------------------------------------------------------------- /src/vs/editor/common/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/common/model.ts -------------------------------------------------------------------------------- /src/vs/editor/common/modes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/common/modes.ts -------------------------------------------------------------------------------- /src/vs/editor/contrib/dnd/dnd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/contrib/dnd/dnd.css -------------------------------------------------------------------------------- /src/vs/editor/contrib/dnd/dnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/contrib/dnd/dnd.ts -------------------------------------------------------------------------------- /src/vs/editor/contrib/hover/hover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/contrib/hover/hover.ts -------------------------------------------------------------------------------- /src/vs/editor/contrib/links/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/contrib/links/links.ts -------------------------------------------------------------------------------- /src/vs/editor/editor.all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/editor.all.ts -------------------------------------------------------------------------------- /src/vs/editor/editor.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/editor.api.ts -------------------------------------------------------------------------------- /src/vs/editor/editor.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/editor.main.ts -------------------------------------------------------------------------------- /src/vs/editor/editor.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/editor/editor.worker.ts -------------------------------------------------------------------------------- /src/vs/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/loader.js -------------------------------------------------------------------------------- /src/vs/monaco.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/monaco.d.ts -------------------------------------------------------------------------------- /src/vs/nls.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/nls.build.js -------------------------------------------------------------------------------- /src/vs/nls.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/nls.d.ts -------------------------------------------------------------------------------- /src/vs/nls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/nls.js -------------------------------------------------------------------------------- /src/vs/nls.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/nls.mock.ts -------------------------------------------------------------------------------- /src/vs/platform/files/common/io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/platform/files/common/io.ts -------------------------------------------------------------------------------- /src/vs/platform/files/test/electron-browser/fixtures/service/small.txt: -------------------------------------------------------------------------------- 1 | Small File -------------------------------------------------------------------------------- /src/vs/platform/files/test/electron-browser/fixtures/service/small_umlaut.txt: -------------------------------------------------------------------------------- 1 | Small File with Ümlaut -------------------------------------------------------------------------------- /src/vs/platform/files/test/electron-browser/fixtures/service/some_utf8_bom.txt: -------------------------------------------------------------------------------- 1 | This is some UTF 8 with BOM file. -------------------------------------------------------------------------------- /src/vs/platform/log/browser/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/platform/log/browser/log.ts -------------------------------------------------------------------------------- /src/vs/platform/log/common/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/platform/log/common/log.ts -------------------------------------------------------------------------------- /src/vs/platform/log/common/logIpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/platform/log/common/logIpc.ts -------------------------------------------------------------------------------- /src/vs/platform/sign/common/sign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/platform/sign/common/sign.ts -------------------------------------------------------------------------------- /src/vs/platform/url/common/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/platform/url/common/url.ts -------------------------------------------------------------------------------- /src/vs/platform/url/common/urlIpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/platform/url/common/urlIpc.ts -------------------------------------------------------------------------------- /src/vs/vscode.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/vscode.d.ts -------------------------------------------------------------------------------- /src/vs/vscode.proposed.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/vscode.proposed.d.ts -------------------------------------------------------------------------------- /src/vs/workbench/api/common/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/api/common/cache.ts -------------------------------------------------------------------------------- /src/vs/workbench/browser/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/browser/actions.ts -------------------------------------------------------------------------------- /src/vs/workbench/browser/dnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/browser/dnd.ts -------------------------------------------------------------------------------- /src/vs/workbench/browser/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/browser/editor.ts -------------------------------------------------------------------------------- /src/vs/workbench/browser/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/browser/labels.ts -------------------------------------------------------------------------------- /src/vs/workbench/browser/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/browser/layout.ts -------------------------------------------------------------------------------- /src/vs/workbench/browser/panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/browser/panel.ts -------------------------------------------------------------------------------- /src/vs/workbench/browser/part.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/browser/part.ts -------------------------------------------------------------------------------- /src/vs/workbench/browser/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/browser/style.ts -------------------------------------------------------------------------------- /src/vs/workbench/browser/viewlet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/browser/viewlet.ts -------------------------------------------------------------------------------- /src/vs/workbench/browser/web.main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/browser/web.main.ts -------------------------------------------------------------------------------- /src/vs/workbench/browser/window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/browser/window.ts -------------------------------------------------------------------------------- /src/vs/workbench/buildfile.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/buildfile.web.js -------------------------------------------------------------------------------- /src/vs/workbench/common/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/common/actions.ts -------------------------------------------------------------------------------- /src/vs/workbench/common/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/common/activity.ts -------------------------------------------------------------------------------- /src/vs/workbench/common/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/common/component.ts -------------------------------------------------------------------------------- /src/vs/workbench/common/composite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/common/composite.ts -------------------------------------------------------------------------------- /src/vs/workbench/common/dialogs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/common/dialogs.ts -------------------------------------------------------------------------------- /src/vs/workbench/common/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/common/editor.ts -------------------------------------------------------------------------------- /src/vs/workbench/common/memento.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/common/memento.ts -------------------------------------------------------------------------------- /src/vs/workbench/common/panel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/common/panel.ts -------------------------------------------------------------------------------- /src/vs/workbench/common/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/common/resources.ts -------------------------------------------------------------------------------- /src/vs/workbench/common/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/common/theme.ts -------------------------------------------------------------------------------- /src/vs/workbench/common/viewlet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/common/viewlet.ts -------------------------------------------------------------------------------- /src/vs/workbench/common/views.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/src/vs/workbench/common/views.ts -------------------------------------------------------------------------------- /src/vs/workbench/services/search/test/node/fixtures/examples/subfolder/anotherfolder/anotherfile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/services/search/test/node/fixtures/examples/subfolder/subfile.txt: -------------------------------------------------------------------------------- 1 | // sub -------------------------------------------------------------------------------- /src/vs/workbench/services/search/test/node/fixtures/more/file.txt: -------------------------------------------------------------------------------- 1 | Conway -------------------------------------------------------------------------------- /src/vs/workbench/services/search/test/node/fixtures/site.less: -------------------------------------------------------------------------------- 1 | // lss is mor 2 | 3 | -------------------------------------------------------------------------------- /src/vs/workbench/services/search/test/node/fixtures/üm laut汉语/汉语.txt: -------------------------------------------------------------------------------- 1 | 汉语 -------------------------------------------------------------------------------- /src/vs/workbench/services/search/test/node/fixtures2/36438/modules/do-not-find.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/services/search/test/node/fixtures2/36438/more/modules/find.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/vs/workbench/services/textfile/test/electron-browser/fixtures/small.txt: -------------------------------------------------------------------------------- 1 | Small File -------------------------------------------------------------------------------- /src/vs/workbench/services/textfile/test/electron-browser/fixtures/small_umlaut.txt: -------------------------------------------------------------------------------- 1 | Small File with Ümlaut -------------------------------------------------------------------------------- /src/vs/workbench/services/textfile/test/electron-browser/fixtures/some_utf8_bom.txt: -------------------------------------------------------------------------------- 1 | This is some UTF 8 with BOM file. -------------------------------------------------------------------------------- /src/vs/workbench/services/textfile/test/node/encoding/fixtures/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/.mocharc.json -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/README.md -------------------------------------------------------------------------------- /test/automation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/.gitignore -------------------------------------------------------------------------------- /test/automation/.npmignore: -------------------------------------------------------------------------------- 1 | !/out 2 | /src 3 | /tools 4 | .gitignore 5 | tsconfig.json 6 | *.tgz 7 | -------------------------------------------------------------------------------- /test/automation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/README.md -------------------------------------------------------------------------------- /test/automation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/package.json -------------------------------------------------------------------------------- /test/automation/src/activityBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/activityBar.ts -------------------------------------------------------------------------------- /test/automation/src/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/application.ts -------------------------------------------------------------------------------- /test/automation/src/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/code.ts -------------------------------------------------------------------------------- /test/automation/src/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/debug.ts -------------------------------------------------------------------------------- /test/automation/src/driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/driver.js -------------------------------------------------------------------------------- /test/automation/src/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/editor.ts -------------------------------------------------------------------------------- /test/automation/src/editors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/editors.ts -------------------------------------------------------------------------------- /test/automation/src/explorer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/explorer.ts -------------------------------------------------------------------------------- /test/automation/src/extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/extensions.ts -------------------------------------------------------------------------------- /test/automation/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/index.ts -------------------------------------------------------------------------------- /test/automation/src/keybindings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/keybindings.ts -------------------------------------------------------------------------------- /test/automation/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/logger.ts -------------------------------------------------------------------------------- /test/automation/src/notebook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/notebook.ts -------------------------------------------------------------------------------- /test/automation/src/peek.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/peek.ts -------------------------------------------------------------------------------- /test/automation/src/problems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/problems.ts -------------------------------------------------------------------------------- /test/automation/src/quickaccess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/quickaccess.ts -------------------------------------------------------------------------------- /test/automation/src/quickinput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/quickinput.ts -------------------------------------------------------------------------------- /test/automation/src/scm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/scm.ts -------------------------------------------------------------------------------- /test/automation/src/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/search.ts -------------------------------------------------------------------------------- /test/automation/src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/settings.ts -------------------------------------------------------------------------------- /test/automation/src/statusbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/statusbar.ts -------------------------------------------------------------------------------- /test/automation/src/terminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/terminal.ts -------------------------------------------------------------------------------- /test/automation/src/viewlet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/viewlet.ts -------------------------------------------------------------------------------- /test/automation/src/workbench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/src/workbench.ts -------------------------------------------------------------------------------- /test/automation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/tsconfig.json -------------------------------------------------------------------------------- /test/automation/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/automation/yarn.lock -------------------------------------------------------------------------------- /test/cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/cgmanifest.json -------------------------------------------------------------------------------- /test/integration/browser/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | Thumbs.db 4 | node_modules/ 5 | out/ 6 | -------------------------------------------------------------------------------- /test/integration/browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/integration/browser/README.md -------------------------------------------------------------------------------- /test/integration/browser/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/integration/browser/yarn.lock -------------------------------------------------------------------------------- /test/leaks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/leaks/index.html -------------------------------------------------------------------------------- /test/leaks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/leaks/package.json -------------------------------------------------------------------------------- /test/leaks/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/leaks/server.js -------------------------------------------------------------------------------- /test/leaks/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/leaks/yarn.lock -------------------------------------------------------------------------------- /test/monaco/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/monaco/.gitignore -------------------------------------------------------------------------------- /test/monaco/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/monaco/.mocharc.json -------------------------------------------------------------------------------- /test/monaco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/monaco/README.md -------------------------------------------------------------------------------- /test/monaco/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/monaco/core.js -------------------------------------------------------------------------------- /test/monaco/dist/core.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/monaco/dist/core.html -------------------------------------------------------------------------------- /test/monaco/monaco.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/monaco/monaco.test.ts -------------------------------------------------------------------------------- /test/monaco/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/monaco/package.json -------------------------------------------------------------------------------- /test/monaco/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/monaco/runner.js -------------------------------------------------------------------------------- /test/monaco/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/monaco/tsconfig.json -------------------------------------------------------------------------------- /test/monaco/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/monaco/webpack.config.js -------------------------------------------------------------------------------- /test/monaco/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/monaco/yarn.lock -------------------------------------------------------------------------------- /test/smoke/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/smoke/.gitignore -------------------------------------------------------------------------------- /test/smoke/Audit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/smoke/Audit.md -------------------------------------------------------------------------------- /test/smoke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/smoke/README.md -------------------------------------------------------------------------------- /test/smoke/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/smoke/package.json -------------------------------------------------------------------------------- /test/smoke/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/smoke/src/main.ts -------------------------------------------------------------------------------- /test/smoke/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/smoke/src/utils.ts -------------------------------------------------------------------------------- /test/smoke/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/smoke/test/index.js -------------------------------------------------------------------------------- /test/smoke/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/smoke/tsconfig.json -------------------------------------------------------------------------------- /test/smoke/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/smoke/yarn.lock -------------------------------------------------------------------------------- /test/unit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/unit/README.md -------------------------------------------------------------------------------- /test/unit/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/unit/assert.js -------------------------------------------------------------------------------- /test/unit/browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/unit/browser/index.js -------------------------------------------------------------------------------- /test/unit/browser/renderer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/unit/browser/renderer.html -------------------------------------------------------------------------------- /test/unit/coverage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/unit/coverage.js -------------------------------------------------------------------------------- /test/unit/electron/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/unit/electron/index.js -------------------------------------------------------------------------------- /test/unit/electron/renderer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/unit/electron/renderer.html -------------------------------------------------------------------------------- /test/unit/electron/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/unit/electron/renderer.js -------------------------------------------------------------------------------- /test/unit/fullJsonStreamReporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/unit/fullJsonStreamReporter.js -------------------------------------------------------------------------------- /test/unit/node/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/unit/node/all.js -------------------------------------------------------------------------------- /test/unit/node/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/unit/node/browser.js -------------------------------------------------------------------------------- /test/unit/node/css.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/unit/node/css.mock.js -------------------------------------------------------------------------------- /test/unit/node/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/test/unit/node/index.html -------------------------------------------------------------------------------- /tsfmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/tsfmt.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kode/KodeStudio/HEAD/yarn.lock --------------------------------------------------------------------------------