gitextract_qyl36xte/ ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ ├── dependabot.yml │ └── workflows/ │ ├── insider-linux.yml │ ├── insider-macos.yml │ ├── insider-spearhead.yml │ ├── insider-windows.yml │ ├── lock.yml │ ├── stable-linux.yml │ ├── stable-macos.yml │ ├── stable-spearhead.yml │ ├── stable-windows.yml │ └── stale.yml ├── .gitignore ├── .nvmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.json ├── LICENSE ├── README.md ├── announcements-builtin.json ├── announcements-extra.json ├── build/ │ ├── alpine/ │ │ └── package_reh.sh │ ├── linux/ │ │ ├── appimage/ │ │ │ ├── build.sh │ │ │ └── recipe.yml │ │ ├── deps.sh │ │ ├── install_gh.sh │ │ ├── install_nodejs.sh │ │ ├── loong64/ │ │ │ ├── electron.sh │ │ │ ├── electron.sha256sums │ │ │ └── ripgrep.sh │ │ ├── package_bin.sh │ │ ├── package_reh.sh │ │ ├── ppc64le/ │ │ │ ├── electron.sh │ │ │ └── electron.sha256sums │ │ ├── riscv64/ │ │ │ ├── electron.sh │ │ │ ├── electron.sha256sums │ │ │ └── ripgrep.sh │ │ ├── verify_abi_requirements.sh │ │ └── verify_cxx11_requirements.sh │ ├── osx/ │ │ └── include.gypi │ └── windows/ │ ├── appx/ │ │ └── build.sh │ ├── msi/ │ │ ├── build-updates-disabled.sh │ │ ├── build.sh │ │ ├── i18n/ │ │ │ ├── vscodium.de-de.wxl │ │ │ ├── vscodium.en-us.wxl │ │ │ ├── vscodium.es-es.wxl │ │ │ ├── vscodium.fr-fr.wxl │ │ │ ├── vscodium.it-it.wxl │ │ │ ├── vscodium.ja-jp.wxl │ │ │ ├── vscodium.ko-kr.wxl │ │ │ ├── vscodium.ru-ru.wxl │ │ │ ├── vscodium.zh-cn.wxl │ │ │ └── vscodium.zh-tw.wxl │ │ ├── includes/ │ │ │ └── vscodium-variables.wxi │ │ ├── vscodium.wxs │ │ └── vscodium.xsl │ ├── package.sh │ └── rtf/ │ └── make.sh ├── build.sh ├── build_cli.sh ├── check_cron_or_pr.sh ├── check_tags.sh ├── dev/ │ ├── build.ps1 │ ├── build.sh │ ├── build_docker.sh │ ├── cli.sh │ ├── merge-patches.sh │ ├── osx/ │ │ └── codesign.env.template │ ├── patch.sh │ ├── update_api.sh │ └── update_patches.sh ├── docs/ │ ├── accounts-authentication.md │ ├── ext-github-copilot.md │ ├── extensions-compatibility.md │ ├── extensions.md │ ├── getting-started.md │ ├── howto-build.md │ ├── index.md │ ├── migration.md │ ├── others.md │ ├── telemetry.md │ ├── troubleshooting.md │ └── usage.md ├── font-size/ │ ├── .artifactrc.yml │ ├── .editorconfig │ ├── .fixpackrc │ ├── .gitignore │ ├── .nvmrc │ ├── .vscode/ │ │ └── settings.json │ ├── .xo-config.json │ ├── generate-css.ts │ ├── package.json │ ├── tsconfig.base.json │ └── tsconfig.json ├── get_pr.sh ├── get_repo.sh ├── icons/ │ ├── README.md │ └── build_icons.sh ├── npmrc ├── patches/ │ ├── add-remote-url.patch │ ├── alpine/ │ │ └── reh/ │ │ └── fix-node-docker.patch │ ├── binary-name.patch │ ├── brand.patch │ ├── cli.patch │ ├── disable-cloud.patch │ ├── disable-copilot.patch │ ├── disable-missing-vsda.patch │ ├── disable-signature-verification.patch │ ├── disable-update.patch.yet │ ├── disable-vscodedev.patch │ ├── ext-from-gh.patch │ ├── extensions-disable-mangler.patch │ ├── feat-announcements.patch │ ├── feat-command-filter.patch │ ├── feat-experimental-font.patch │ ├── feat-ext-unsafe.patch │ ├── feat-user-product.patch │ ├── fix-build-vsce.patch │ ├── fix-eol-banner.patch │ ├── fix-extensions-control-connection.patch │ ├── fix-gallery.patch │ ├── fix-keymap.patch │ ├── fix-npm-preinstall.patch │ ├── fix-policies.patch │ ├── fix-remote-libs.patch │ ├── fix-tunnel-extension-recommendation.patch │ ├── helper/ │ │ └── settings.patch │ ├── insider/ │ │ └── system-extensions.patch │ ├── linux/ │ │ ├── arch-0-support.patch │ │ ├── arch-1-ppc64le.patch │ │ ├── arch-2-riscv64.patch │ │ ├── arch-3-loong64.patch │ │ ├── arch-4-s390x.patch │ │ ├── cli.patch │ │ ├── client/ │ │ │ ├── avoid-crash-16k-page-size.patch │ │ │ └── disable-remote.patch │ │ ├── feat-logs-home.patch │ │ ├── fix-build.patch │ │ ├── fix-global-policy.patch │ │ ├── fix-npm-postinstall.patch │ │ ├── fix-reh-bootstrap.patch │ │ ├── reh/ │ │ │ └── s390x/ │ │ │ └── package.json.patch │ │ ├── rpm.patch │ │ └── update-xdg-path.patch │ ├── optional-tree-sitter.patch │ ├── osx/ │ │ ├── fix-codesign.patch.no │ │ └── fix-emulated-urls.patch │ ├── remove-mangle.patch │ ├── report-issue.patch │ ├── sourcemaps.patch │ ├── telemetry.patch │ ├── terminal-suggest.patch │ ├── update-cache-path.patch │ ├── update-electron.patch.no │ ├── use-github-pat.patch │ ├── user/ │ │ └── readme.txt │ ├── version-0-release.patch │ ├── version-1-update.patch │ └── windows/ │ ├── appx.patch │ ├── cli.patch │ └── win7.patch ├── prepare_assets.sh ├── prepare_checksums.sh ├── prepare_src.sh ├── prepare_vscode.sh ├── product.json ├── release.sh ├── release_notes.md ├── src/ │ ├── insider/ │ │ └── resources/ │ │ ├── darwin/ │ │ │ ├── bat.icns │ │ │ ├── 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/ │ │ │ ├── code-url-handler.desktop │ │ │ ├── code.appdata.xml │ │ │ ├── code.desktop │ │ │ └── rpm/ │ │ │ └── code.xpm │ │ └── win32/ │ │ └── VisualElementsManifest.xml │ └── stable/ │ └── resources/ │ ├── darwin/ │ │ ├── bat.icns │ │ ├── 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/ │ │ ├── code-url-handler.desktop │ │ ├── code.appdata.xml │ │ ├── code.desktop │ │ └── rpm/ │ │ └── code.xpm │ └── win32/ │ └── VisualElementsManifest.xml ├── stores/ │ ├── snapcraft/ │ │ ├── check_version.sh │ │ ├── insider/ │ │ │ └── snap/ │ │ │ ├── hooks/ │ │ │ │ └── configure │ │ │ ├── local/ │ │ │ │ └── bin/ │ │ │ │ └── electron-launch │ │ │ └── snapcraft.yaml │ │ └── stable/ │ │ └── snap/ │ │ ├── hooks/ │ │ │ └── configure │ │ ├── local/ │ │ │ └── bin/ │ │ │ └── electron-launch │ │ └── snapcraft.yaml │ └── winget/ │ └── check_version.sh ├── undo_telemetry.sh ├── update_upstream.sh ├── update_version.sh ├── upload_sourcemaps.sh ├── upstream/ │ ├── insider.json │ └── stable.json ├── utils.sh └── version.sh