gitextract_u2mq7a7s/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ ├── dependabot.yml │ └── workflows/ │ ├── insider-linux.yml │ ├── insider-macos.yml │ ├── insider-spearhead.yml │ ├── insider-windows.yml │ ├── lock.yml │ ├── release-on-winget.yml │ ├── stable-linux.yml │ ├── stable-macos.yml │ ├── stable-spearhead.yml │ ├── stable-windows.yml │ └── stale.yml ├── .gitignore ├── .npmrc ├── .nvmrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE.md ├── README.md ├── announcements-builtin.json ├── announcements-extra.json ├── avx.patch ├── bionic.patch ├── build/ │ ├── build.ps1 │ ├── build.sh │ ├── build_docker.sh │ ├── linux/ │ │ └── appimage/ │ │ ├── build.sh │ │ └── recipe.yml │ ├── update_api.sh │ ├── update_patches.sh │ └── windows/ │ ├── 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 │ └── rtf/ │ └── make.sh ├── build.sh ├── build_codium.sh ├── check_cron_or_pr.sh ├── check_tags.sh ├── clean.sh ├── docs/ │ ├── accounts-authentication.md │ ├── extensions-compatibility.md │ ├── howto-build.md │ ├── index.md │ └── troubleshooting.md ├── electron.riscv64.sh ├── get_repo.sh ├── icons/ │ ├── README.md │ └── build_icons.sh ├── insider.json ├── install_gh.sh ├── macos-codesign.env.template ├── macos_patch.sh ├── nt6.patch ├── package_alpine_reh.sh ├── package_linux_bin.sh ├── package_linux_reh.sh ├── patch.sh ├── patches/ │ ├── alpine/ │ │ └── reh/ │ │ └── fix-node-docker.patch │ ├── binary-name.patch │ ├── brand.patch │ ├── build-version.patch │ ├── crash-reporter.patch │ ├── disable-cloud.patch │ ├── disable-signature-verification.patch │ ├── ext-from-gh.patch │ ├── feat-announcements.patch │ ├── fix-eol-banner.patch │ ├── fix-remote-libs.patch │ ├── helper/ │ │ └── settings.patch │ ├── insider/ │ │ ├── add-remote-url.patch │ │ ├── disable-windows-appx.patch │ │ └── system-extensions.patch │ ├── linux/ │ │ ├── client/ │ │ │ ├── disable-remote.patch │ │ │ └── node16.patch.no │ │ ├── fix-build.patch │ │ ├── fix-reh-bootstrap.patch │ │ ├── ppc64le-and-riscv64-support.bak │ │ ├── reh/ │ │ │ └── node16.patch │ │ ├── rpm.patch │ │ └── yarn-dependencies.patch │ ├── merge-user-product.patch │ ├── ms-build-id.patch │ ├── osx/ │ │ └── fix-codesign.patch │ ├── process-explorer.patch │ ├── quit-keybindings.patch │ ├── remove-mangle.patch │ ├── report-issue.patch │ ├── update-cache-path.patch │ ├── use-github-pat.patch │ ├── user/ │ │ └── readme.txt │ └── windows/ │ ├── update-msi.patch │ ├── update.patch │ └── win7.patch ├── prepare_assets.sh ├── prepare_src.sh ├── prepare_vscode.sh ├── product.json ├── release.sh ├── 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 ├── stable.json ├── stores/ │ ├── snapcraft/ │ │ ├── check_version.sh │ │ ├── insider/ │ │ │ └── snap/ │ │ │ ├── local/ │ │ │ │ └── bin/ │ │ │ │ └── electron-launch │ │ │ └── snapcraft.yaml │ │ └── stable/ │ │ └── snap/ │ │ ├── local/ │ │ │ └── bin/ │ │ │ └── electron-launch │ │ └── snapcraft.yaml │ └── winget/ │ └── check_version.sh ├── undo_telemetry.sh ├── update_qualityjson.sh ├── update_settings.sh ├── update_version.sh ├── utils.sh ├── version.sh ├── win32-ia32.patch └── win7_patch.sh