gitextract_hk2wqped/ ├── .devcontainer/ │ ├── Dockerfile │ └── devcontainer.json ├── .editorconfig ├── .github/ │ ├── config.yml │ └── workflows/ │ ├── build.yml │ ├── codacy-analysis.yaml │ ├── test-wtih-vscode-build.yml │ └── welcome-first-time-contributors.yml ├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── .husky/ │ ├── .gitignore │ └── pre-commit ├── .prettierignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── docs/ │ └── guide.md ├── eslint.config.js ├── extensions/ │ ├── elm-web/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── language-configuration.json │ │ ├── package.json │ │ └── syntaxes/ │ │ ├── codeblock.json │ │ └── elm-syntax.json │ ├── github1s/ │ │ ├── assets/ │ │ │ └── pages/ │ │ │ ├── components.css │ │ │ ├── components.js │ │ │ ├── github1s-authentication.css │ │ │ ├── github1s-authentication.js │ │ │ ├── github1s-settings.css │ │ │ ├── github1s-settings.js │ │ │ └── libraries/ │ │ │ ├── htm.module.js │ │ │ ├── preact-hooks.module.js │ │ │ └── preact.module.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── adapters/ │ │ │ │ ├── bitbucket1s/ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── parse-path.ts │ │ │ │ │ └── router-parser.ts │ │ │ │ ├── github1s/ │ │ │ │ │ ├── authentication.ts │ │ │ │ │ ├── data-source.ts │ │ │ │ │ ├── fetcher.ts │ │ │ │ │ ├── graphql.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── parse-path.ts │ │ │ │ │ ├── router-parser.ts │ │ │ │ │ ├── settings.ts │ │ │ │ │ └── token.ts │ │ │ │ ├── gitlab1s/ │ │ │ │ │ ├── authentication.ts │ │ │ │ │ ├── data-source.ts │ │ │ │ │ ├── fetcher.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── parse-path.ts │ │ │ │ │ ├── router-parser.ts │ │ │ │ │ ├── settings.ts │ │ │ │ │ └── token.ts │ │ │ │ ├── index.ts │ │ │ │ ├── manager.ts │ │ │ │ ├── npmjs1s/ │ │ │ │ │ ├── data-source.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── router-parser.ts │ │ │ │ ├── ossinsight/ │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── data-source.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interfaces.ts │ │ │ │ │ ├── router-parser.ts │ │ │ │ │ └── templates.ts │ │ │ │ ├── sourcegraph/ │ │ │ │ │ ├── blame.ts │ │ │ │ │ ├── commit.ts │ │ │ │ │ ├── common.ts │ │ │ │ │ ├── comparison.ts │ │ │ │ │ ├── data-source.ts │ │ │ │ │ ├── definition.ts │ │ │ │ │ ├── file.ts │ │ │ │ │ ├── hover.ts │ │ │ │ │ ├── position.ts │ │ │ │ │ ├── ref.ts │ │ │ │ │ ├── reference.ts │ │ │ │ │ ├── repository.ts │ │ │ │ │ └── search.ts │ │ │ │ └── types.ts │ │ │ ├── changes/ │ │ │ │ ├── files.ts │ │ │ │ ├── index.ts │ │ │ │ └── quick-diff.ts │ │ │ ├── commands/ │ │ │ │ ├── blame.ts │ │ │ │ ├── code-review.ts │ │ │ │ ├── commit.ts │ │ │ │ ├── editor.ts │ │ │ │ ├── global.ts │ │ │ │ ├── index.ts │ │ │ │ └── ref.ts │ │ │ ├── extension.ts │ │ │ ├── global.d.ts │ │ │ ├── helpers/ │ │ │ │ ├── async.ts │ │ │ │ ├── context.ts │ │ │ │ ├── date.ts │ │ │ │ ├── func.ts │ │ │ │ ├── page.ts │ │ │ │ ├── submodule.ts │ │ │ │ ├── urls.ts │ │ │ │ ├── util.ts │ │ │ │ └── vscode.ts │ │ │ ├── listeners/ │ │ │ │ ├── index.ts │ │ │ │ ├── router/ │ │ │ │ │ ├── changes.ts │ │ │ │ │ ├── explorer.ts │ │ │ │ │ └── index.ts │ │ │ │ └── vscode.ts │ │ │ ├── messages.ts │ │ │ ├── providers/ │ │ │ │ ├── decorations/ │ │ │ │ │ ├── changed-file.ts │ │ │ │ │ ├── source-control.ts │ │ │ │ │ └── submodule.ts │ │ │ │ ├── definition.ts │ │ │ │ ├── file-search.ts │ │ │ │ ├── file-system/ │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── hover.ts │ │ │ │ ├── index.ts │ │ │ │ ├── reference.ts │ │ │ │ └── text-search.ts │ │ │ ├── repository/ │ │ │ │ ├── branch-tag-manager.ts │ │ │ │ ├── code-review-manager.ts │ │ │ │ ├── commit-manager.ts │ │ │ │ └── index.ts │ │ │ ├── router/ │ │ │ │ ├── events.ts │ │ │ │ └── index.ts │ │ │ ├── statusbar/ │ │ │ │ ├── checkout.ts │ │ │ │ ├── index.ts │ │ │ │ └── sponsors.ts │ │ │ ├── views/ │ │ │ │ ├── code-review-list.ts │ │ │ │ ├── commit-list.ts │ │ │ │ └── index.ts │ │ │ └── vscode.proposed.d.ts │ │ ├── tsconfig.json │ │ └── webpack.config.js │ ├── nim-web/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── nimcfg.json │ │ ├── package.json │ │ ├── snippets/ │ │ │ └── nim.json │ │ └── syntaxes/ │ │ ├── nim.json │ │ └── nimble.json │ ├── ocaml-web/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── languages/ │ │ │ ├── META.json │ │ │ ├── dune.json │ │ │ ├── menhir.json │ │ │ ├── oasis.json │ │ │ ├── ocaml.json │ │ │ ├── ocamlbuild.json │ │ │ ├── ocamlformat.json │ │ │ ├── ocamllex.json │ │ │ ├── opam-install.json │ │ │ ├── opam.json │ │ │ └── reason.json │ │ ├── package.json │ │ ├── snippets/ │ │ │ ├── dune-project.json │ │ │ ├── dune.json │ │ │ ├── ocaml.json │ │ │ └── ocamllex.json │ │ └── syntaxes/ │ │ ├── META.json │ │ ├── atd.json │ │ ├── cram.json │ │ ├── dune-project.json │ │ ├── dune-workspace.json │ │ ├── dune.json │ │ ├── menhir-action.json │ │ ├── menhir.json │ │ ├── merlin.json │ │ ├── oasis.json │ │ ├── ocaml-markdown-codeblock.json │ │ ├── ocaml.interface.json │ │ ├── ocaml.json │ │ ├── ocamlbuild.json │ │ ├── ocamldoc.json │ │ ├── ocamlformat.json │ │ ├── ocamllex.json │ │ ├── opam-install.json │ │ ├── opam.json │ │ ├── reason-markdown-codeblock.json │ │ └── reason.json │ └── vlang-web/ │ ├── LICENSE │ ├── README.md │ ├── language-configuration.json │ ├── package.json │ ├── snippets/ │ │ └── snippets.json │ └── syntaxes/ │ └── v.tmLanguage.json ├── functions/ │ ├── api/ │ │ ├── github-auth-callback.ts │ │ └── gitlab-auth-callback.ts │ └── tsconfig.json ├── package.json ├── public/ │ ├── index.html │ ├── manifest.json │ ├── page-title.js │ ├── robots.txt │ └── spinner.css ├── scripts/ │ ├── build.js │ ├── link.js │ ├── postinstall.js │ ├── utils.js │ └── webpack.js ├── src/ │ ├── config.ts │ ├── github-auth.ts │ ├── gitlab-auth.ts │ ├── global.d.ts │ ├── index.ts │ ├── notification.css │ ├── notification.ts │ └── product.ts ├── tests/ │ ├── __tests__/ │ │ └── index.test.ts │ ├── jest.config.js │ ├── package.json │ ├── tsconfig.json │ └── typings.d.ts ├── tsconfig.json ├── vscode-web/ │ ├── .VERSION │ ├── README.md │ ├── index.html │ ├── package.json │ ├── scripts/ │ │ ├── .patch │ │ ├── build/ │ │ │ ├── nls.js │ │ │ ├── package.js │ │ │ └── vscode.js │ │ ├── clone.js │ │ ├── patch.js │ │ ├── utils.js │ │ └── watch/ │ │ ├── extensions.js │ │ ├── source.js │ │ └── vscode.js │ ├── src/ │ │ ├── setup.d.ts │ │ └── vs/ │ │ ├── base/ │ │ │ └── common/ │ │ │ └── network.ts │ │ └── workbench/ │ │ ├── browser/ │ │ │ ├── parts/ │ │ │ │ ├── activitybar/ │ │ │ │ │ └── activitybarPart.ts │ │ │ │ └── titlebar/ │ │ │ │ └── media/ │ │ │ │ └── titlebarpart.css │ │ │ └── web.main.ts │ │ ├── contrib/ │ │ │ ├── files/ │ │ │ │ └── browser/ │ │ │ │ └── editors/ │ │ │ │ └── fileEditorInput.ts │ │ │ └── webview/ │ │ │ └── browser/ │ │ │ └── pre/ │ │ │ ├── index-no-csp.html │ │ │ └── index.html │ │ └── services/ │ │ ├── extensionManagement/ │ │ │ └── browser/ │ │ │ └── builtinExtensionsScannerService.ts │ │ ├── label/ │ │ │ └── common/ │ │ │ └── labelService.ts │ │ └── textfile/ │ │ └── browser/ │ │ └── textFileService.ts │ └── tsconfig.json └── webpack.config.js