├── .config ├── CredScanSuppressions.json └── tsaoptions.json ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .husky ├── post-checkout ├── post-commit ├── post-merge ├── pre-commit └── pre-push ├── .pipelines ├── onebranch.buddy.yml ├── onebranch.official.yml └── templates │ ├── jobs │ └── build.yml │ └── stages │ ├── build-buddy.yml │ └── build-official.yml ├── .prettierignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── api ├── .prettierrc.json ├── advanced-topics │ ├── extension-host.md │ ├── images │ │ ├── proposed-api │ │ │ └── install-from-vsix.gif │ │ └── remote-extensions │ │ │ ├── architecture.png │ │ │ ├── webview-problem.png │ │ │ └── webview-solution.png │ ├── python-extension-template.md │ ├── remote-extensions.md │ ├── tslint-eslint-migration.md │ └── using-proposed-api.md ├── extension-capabilities │ ├── common-capabilities.md │ ├── extending-workbench.md │ ├── images │ │ ├── extending-workbench │ │ │ └── workbench-contribution.png │ │ └── theming │ │ │ ├── color-theme.png │ │ │ └── file-icon-theme.png │ ├── overview.md │ └── theming.md ├── extension-guides │ ├── color-theme.md │ ├── command.md │ ├── custom-data-extension.md │ ├── custom-editors.md │ ├── debugger-extension.md │ ├── file-icon-theme.md │ ├── images │ │ ├── color-theme │ │ │ ├── color-setting.png │ │ │ ├── mytheme.png │ │ │ ├── tm-inspector.png │ │ │ └── yocode-colortheme.png │ │ ├── commands │ │ │ └── palette.png │ │ ├── debugger-extension │ │ │ ├── debug-arch1.png │ │ │ ├── debug-arch2.png │ │ │ ├── debug-features.png │ │ │ ├── debug-init-config.png │ │ │ ├── debug-mock-session.png │ │ │ ├── debugger-extension-server.png │ │ │ └── mock-debug.gif │ │ ├── notebook │ │ │ ├── architecture-overview.png │ │ │ ├── dynamic-renderer-issues.gif │ │ │ ├── dynamic-renderer.gif │ │ │ ├── dynamic-renderer.png │ │ │ ├── error-output.png │ │ │ ├── ipynb-simple-provider.png │ │ │ ├── kernel-communication.png │ │ │ ├── kernel.png │ │ │ ├── rich-output.gif │ │ │ ├── rust-output.png │ │ │ ├── static-renderer-sample.png │ │ │ └── text-output.png │ │ ├── product-icon-theme │ │ │ └── dev-tool-select-tool.png │ │ ├── scm-provider │ │ │ ├── main.png │ │ │ ├── menus.png │ │ │ ├── quickdiff.png │ │ │ └── sourcecontrol-menu.png │ │ ├── tree-view │ │ │ ├── references-search-tree-view.png │ │ │ ├── view-actions.png │ │ │ ├── view-container.png │ │ │ ├── view.png │ │ │ ├── views-menu.png │ │ │ └── welcome-content.png │ │ ├── virtual-documents │ │ │ └── cowsay-bwd.png │ │ ├── virtual-workspaces │ │ │ ├── extensions-view.png │ │ │ └── remote-indicator.png │ │ ├── web-extensions │ │ │ ├── extensions-view-item-disabled.png │ │ │ └── localtunnel.png │ │ └── webview │ │ │ ├── basics-drag.gif │ │ │ ├── basics-html.png │ │ │ ├── basics-no_content.png │ │ │ ├── basics-ondidchangeviewstate.gif │ │ │ ├── basics-restore.gif │ │ │ ├── basics-single_panel.gif │ │ │ ├── basics-update.gif │ │ │ ├── developer-active-frame.png │ │ │ ├── developer-console.png │ │ │ ├── developer-inspect.png │ │ │ ├── developer-overview.png │ │ │ ├── persistence-retrain.gif │ │ │ ├── scripts-basic.gif │ │ │ ├── scripts-extension_to_webview.gif │ │ │ └── scripts-webview_to_extension.gif │ ├── markdown-extension.md │ ├── notebook.md │ ├── overview.md │ ├── product-icon-theme.md │ ├── scm-provider.md │ ├── task-provider.md │ ├── telemetry.md │ ├── testing.md │ ├── tree-view.md │ ├── virtual-documents.md │ ├── virtual-workspaces.md │ ├── web-extensions.md │ ├── webview.md │ └── workspace-trust.md ├── get-started │ ├── extension-anatomy.md │ ├── images │ │ └── your-first-extension │ │ │ ├── debug.mp4 │ │ │ ├── launch.mp4 │ │ │ └── reload.mp4 │ ├── wrapping-up.md │ └── your-first-extension.md ├── index.md ├── language-extensions │ ├── embedded-languages.md │ ├── images │ │ ├── embedded-languages │ │ │ └── embedded-lsp-sample.gif │ │ ├── language-server-extension-guide │ │ │ ├── codeComplete.png │ │ │ ├── debugging-client.png │ │ │ ├── debugging-server.png │ │ │ ├── extensibility-architecture.png │ │ │ ├── lsp-illustration.png │ │ │ ├── lsp-inspector.png │ │ │ ├── lsp-languages-editors.png │ │ │ ├── lsp-log.png │ │ │ ├── validation.png │ │ │ └── validationOneProblem.png │ │ ├── language-support │ │ │ ├── code-completion.gif │ │ │ ├── code-lens copy.gif │ │ │ ├── code-lens.gif │ │ │ ├── color-decorators.png │ │ │ ├── diagnostics.gif │ │ │ ├── document-highlights.gif │ │ │ ├── document-symbols.gif │ │ │ ├── find-references.gif │ │ │ ├── format-document-range.gif │ │ │ ├── format-document.gif │ │ │ ├── format-on-type.gif │ │ │ ├── goto-definition.gif │ │ │ ├── hovers.gif │ │ │ ├── quick-fixes.gif │ │ │ ├── rename.gif │ │ │ ├── signature-help.gif │ │ │ ├── smart-editing.gif │ │ │ ├── snippets.gif │ │ │ ├── syntax-highlighting.png │ │ │ └── workspace-symbols.gif │ │ ├── overview │ │ │ ├── multi-editor.png │ │ │ └── multi-ls.png │ │ ├── semantic-highlighting │ │ │ ├── no-semantic-highlighting.png │ │ │ └── with-semantic-highlighting.png │ │ └── syntax-highlighting │ │ │ ├── generated-new-language-extension.png │ │ │ ├── scope-inspector.png │ │ │ ├── scopes.png │ │ │ ├── yaml-grammar.png │ │ │ ├── yo-convert.png │ │ │ ├── yo-new-language-questions.png │ │ │ └── yo-new-language.png │ ├── language-configuration-guide.md │ ├── language-server-extension-guide.md │ ├── overview.md │ ├── programmatic-language-features.md │ ├── semantic-highlight-guide.md │ ├── snippet-guide.md │ └── syntax-highlight-guide.md ├── references │ ├── activation-events.md │ ├── commands.md │ ├── contribution-points.md │ ├── document-selector.md │ ├── extension-manifest.md │ ├── icons-in-labels.md │ ├── images │ │ ├── contribution-points │ │ │ ├── color-themes.png │ │ │ ├── command-icons.png │ │ │ ├── commands.png │ │ │ ├── configuration.png │ │ │ ├── custom-views-container.png │ │ │ ├── file-icon-themes.png │ │ │ ├── grammars.png │ │ │ ├── groupSorting.png │ │ │ ├── keybindings.png │ │ │ ├── menus.png │ │ │ ├── product-icon-themes.png │ │ │ ├── setting-link.png │ │ │ ├── settings-ui-enum.png │ │ │ ├── settings-ui-icon-theme.png │ │ │ ├── settings-ui.png │ │ │ ├── submenu.png │ │ │ ├── submenucontrib.png │ │ │ ├── views.png │ │ │ ├── viewsWelcome.png │ │ │ └── walkthroughs.png │ │ ├── theme-color │ │ │ ├── bracket-colors.png │ │ │ ├── button.png │ │ │ ├── codelens.png │ │ │ ├── dropdown.png │ │ │ ├── editorGroup-border.gif │ │ │ ├── editorGroup-dropbackground.gif │ │ │ ├── editorgroupheader-notabsbackground.gif │ │ │ ├── editorgroupheader-tabsbackground.gif │ │ │ ├── editorgroupheader-tabsborder.gif │ │ │ ├── findmatches.png │ │ │ ├── hoverhighlight.png │ │ │ ├── input.png │ │ │ ├── keybinding-label.png │ │ │ ├── line.png │ │ │ ├── link.png │ │ │ ├── merge-ranges.png │ │ │ ├── notification-center.png │ │ │ ├── notification-toast.png │ │ │ ├── occurrences.png │ │ │ ├── peek-view.png │ │ │ ├── rangehighlight.png │ │ │ ├── search-colors.png │ │ │ ├── searchEditorMatches.png │ │ │ └── selectionhighlight.png │ │ └── when-clause-contexts │ │ │ └── inspect-context-keys.png │ ├── theme-color.md │ ├── vscode-api.md │ ├── vscode-api.template │ └── when-clause-contexts.md ├── toc.json ├── ux-guidelines │ ├── activity-bar.md │ ├── command-palette.md │ ├── context-menus.md │ ├── editor-actions.md │ ├── images │ │ └── examples │ │ │ ├── activity-bar.png │ │ │ ├── architecture-containers.png │ │ │ ├── architecture-sections.png │ │ │ ├── command-palette.png │ │ │ ├── context-menu.png │ │ │ ├── editor-actions.png │ │ │ ├── notification-decision-tree.png │ │ │ ├── notification-error.png │ │ │ ├── notification-info.png │ │ │ ├── notification-progress.png │ │ │ ├── notification-warning.png │ │ │ ├── notification.png │ │ │ ├── panel-toolbar-multiple-views.png │ │ │ ├── panel-toolbar.png │ │ │ ├── panel.png │ │ │ ├── primary-sidebar.png │ │ │ ├── quick-pick-multi-select.png │ │ │ ├── quick-pick-multi-step.png │ │ │ ├── quick-pick-separators.png │ │ │ ├── quick-pick-title.png │ │ │ ├── quick-pick.png │ │ │ ├── secondary-sidebar.png │ │ │ ├── settings.png │ │ │ ├── sidebar-toolbar-actions.png │ │ │ ├── sidebar-toolbar-default.png │ │ │ ├── sidebars.png │ │ │ ├── status-bar-error.png │ │ │ ├── status-bar-item.png │ │ │ ├── status-bar-progress.png │ │ │ ├── status-bar-warning.png │ │ │ ├── status-bar.png │ │ │ ├── tree-view.png │ │ │ ├── view-container-panel.png │ │ │ ├── view-container.png │ │ │ ├── view-locations.png │ │ │ ├── view-toolbar.png │ │ │ ├── view-with-progress.png │ │ │ ├── view.png │ │ │ ├── walkthrough.png │ │ │ ├── webview-browser.png │ │ │ ├── webview-pull-request.png │ │ │ ├── webview-view.png │ │ │ ├── webview.png │ │ │ └── welcome-view.png │ ├── notifications.md │ ├── overview.md │ ├── panel.md │ ├── quick-picks.md │ ├── settings.md │ ├── sidebars.md │ ├── status-bar.md │ ├── views.md │ ├── walkthroughs.md │ └── webviews.md └── working-with-extensions │ ├── bundling-extension.md │ ├── continuous-integration.md │ ├── images │ ├── continuous-integration │ │ ├── pipelines-logo.png │ │ └── pipelines.png │ ├── publishing-extension │ │ ├── add-extension.png │ │ ├── create-token.png │ │ ├── deprecated-migrate.png │ │ ├── deprecated.png │ │ ├── extension-report.png │ │ ├── menu-pat.png │ │ ├── new-token.png │ │ ├── pre-release.png │ │ ├── remove-extension.png │ │ ├── remove-warning.png │ │ ├── sponsor.png │ │ └── verified-publishers.png │ └── testing-extension │ │ └── debug.mp4 │ ├── publishing-extension.md │ └── testing-extension.md ├── azure-pipelines.yml ├── blogs ├── 2016 │ ├── 10 │ │ └── 31 │ │ │ ├── chrome_debugger.png │ │ │ ├── document_this.gif │ │ │ ├── git_project_manager.gif │ │ │ └── js_roundup_2.md │ ├── 11 │ │ ├── 3 │ │ │ └── rollback.md │ │ ├── 15 │ │ │ └── formatters-best-practices.md │ │ └── 30 │ │ │ ├── hot-exit-in-insiders.md │ │ │ └── opengraph_insiders.png │ ├── 12 │ │ └── 12 │ │ │ ├── roundup-customize.md │ │ │ ├── settings_sync.png │ │ │ └── theme-preview.gif │ ├── 02 │ │ ├── 23 │ │ │ ├── chrome-debugger-demo.gif │ │ │ └── introducing-chrome-debugger-for-vs-code.md │ │ └── 01 │ │ │ ├── insiders_build_icon.png │ │ │ ├── introducing_insiders_build.md │ │ │ └── opengraph_insiders.png │ ├── 03 │ │ ├── 11 │ │ │ ├── ExtensionsRoundup.md │ │ │ ├── change-case_demo.gif │ │ │ ├── ruby_debugging.gif │ │ │ └── yo_demo.gif │ │ ├── 14 │ │ │ └── Feb2016Recovery.md │ │ └── 07 │ │ │ └── Feb2016Release.md │ ├── 04 │ │ └── 14 │ │ │ ├── header.png │ │ │ ├── installs.png │ │ │ ├── timeline.png │ │ │ └── vscode-1.0.md │ ├── 05 │ │ ├── 23 │ │ │ ├── evolution-of-insiders.md │ │ │ └── value_props.svg │ │ ├── 04 │ │ │ ├── auto-complete.gif │ │ │ ├── complexity-codelens.gif │ │ │ ├── debugger-for-edge.gif │ │ │ ├── extension-roundup-may.md │ │ │ └── svg-viewer.gif │ │ └── 09 │ │ │ └── April2016Release.md │ ├── 06 │ │ └── 27 │ │ │ ├── any-developer-any-language-any-tool.png │ │ │ ├── common-language-protocol.md │ │ │ ├── language-server-protocol.png │ │ │ └── language-server-sequence.png │ ├── 07 │ │ └── 29 │ │ │ ├── annotate-animation.gif │ │ │ ├── extensions-roundup-git.md │ │ │ ├── git-history-animation.gif │ │ │ ├── git-project-manager.png │ │ │ ├── gitignore-rightclick.png │ │ │ ├── gitignore-template.png │ │ │ ├── open-in-github.png │ │ │ ├── partial-diff.gif │ │ │ └── share-code-animation.gif │ ├── 08 │ │ ├── 15 │ │ │ └── introvideos.md │ │ ├── 19 │ │ │ ├── github_reaction.gif │ │ │ └── goodbyeuservoice.md │ │ └── 22 │ │ │ ├── introducing-ios-web-debugging-for-vs-code-on-windows-and-mac.md │ │ │ ├── ios-debugger-demo.gif │ │ │ └── ios-debugger-splash.png │ └── 09 │ │ ├── 14 │ │ ├── eslint.gif │ │ ├── javascript_snippets.png │ │ ├── js_roundup_1.md │ │ ├── npm_intellisense.gif │ │ └── path_intellisense.gif │ │ └── 08 │ │ ├── i-heart-seti.png │ │ ├── icon-themes.md │ │ ├── minimal-icon-theme.png │ │ ├── select-icon-theme.png │ │ ├── seti-icon-theme.png │ │ └── vscode-icons.png ├── 2017 │ ├── 10 │ │ ├── 24 │ │ │ ├── blueicon.png │ │ │ ├── colorrecognition.png │ │ │ ├── earlydesigns.png │ │ │ ├── editorlinesicon.png │ │ │ ├── hurtsmyeyes.png │ │ │ ├── insidersgreen.png │ │ │ ├── insidersgreenwindows.png │ │ │ ├── newvscodeiconuglyissue.png │ │ │ ├── orangeprerelease.png │ │ │ ├── originalblueicon.png │ │ │ ├── outlines.png │ │ │ ├── stablewithblue.png │ │ │ ├── theicon.md │ │ │ ├── variationsoninfinity.png │ │ │ └── vscodenewlogoissue.png │ │ └── 03 │ │ │ ├── 60fps.gif │ │ │ ├── misaligned.png │ │ │ ├── paint-flashing.gif │ │ │ ├── terminal-renderer.md │ │ │ └── texture-atlas.png │ ├── 11 │ │ ├── 15 │ │ │ ├── live-share.md │ │ │ ├── ls-dual-screen.png │ │ │ ├── ls-social-resized.png │ │ │ ├── ls-social.png │ │ │ ├── vs-code-ls-session.png │ │ │ └── vs-code-ls-session2.png │ │ └── 16 │ │ │ ├── connect-social.png │ │ │ ├── connect.md │ │ │ ├── metrics.svg │ │ │ └── roadmap.svg │ ├── 12 │ │ └── 20 │ │ │ ├── break_on_load_after.png │ │ │ ├── break_on_load_before.png │ │ │ ├── chrome-debugging.md │ │ │ ├── code_chrome_devtools.gif │ │ │ ├── locale1.png │ │ │ ├── social_paused.png │ │ │ └── sync_stepping.gif │ ├── 01 │ │ └── 15 │ │ │ ├── AllResources.png │ │ │ ├── AppSettings.png │ │ │ ├── AzurePortal.png │ │ │ ├── Breakpoint.png │ │ │ ├── BrowseApp.png │ │ │ ├── Chrome.png │ │ │ ├── ChromePause.png │ │ │ ├── CodePeek.png │ │ │ ├── ConnectionString.png │ │ │ ├── Console.png │ │ │ ├── ConsoleCode.png │ │ │ ├── CreateDocDB.png │ │ │ ├── DebugConfig.png │ │ │ ├── Debugger.png │ │ │ ├── DocDBCreate.png │ │ │ ├── DocDBScale.png │ │ │ ├── DockerBuild.png │ │ │ ├── DockerCommands.png │ │ │ ├── DockerCompletion.png │ │ │ ├── DockerSearch.png │ │ │ ├── Dockerfile.png │ │ │ ├── Explorer.png │ │ │ ├── FilePicker.png │ │ │ ├── FinishedDemo.png │ │ │ ├── FullStackProfile.png │ │ │ ├── Git.png │ │ │ ├── GitClone.png │ │ │ ├── GitOutput.png │ │ │ ├── HoverHelp.png │ │ │ ├── LaunchJson.png │ │ │ ├── Mongoose.png │ │ │ ├── ProcessEnv.png │ │ │ ├── Terminal.png │ │ │ ├── Todo.png │ │ │ ├── WordHighlight.png │ │ │ └── connect-nina-e2e.md │ ├── 02 │ │ ├── 12 │ │ │ ├── appinsights.gif │ │ │ ├── code-lens-roundup.md │ │ │ ├── code_lens.gif │ │ │ ├── codemetrics.png │ │ │ ├── manifest_preview.gif │ │ │ ├── preview_gitlens.gif │ │ │ ├── regex.gif │ │ │ ├── typelens.png │ │ │ ├── typescript_code_lens.png │ │ │ └── versionlens.png │ │ └── 08 │ │ │ ├── TM-scope-inspector.gif │ │ │ ├── TM-scopes.png │ │ │ ├── line-offsets.png │ │ │ ├── monokai-after.png │ │ │ ├── monokai-before.png │ │ │ ├── monokai-tokens.png │ │ │ ├── quiet-light-after.png │ │ │ ├── quiet-light-before.png │ │ │ ├── red-after.png │ │ │ ├── red-before.png │ │ │ ├── syntax-highlighting-optimizations-social.png │ │ │ ├── syntax-highlighting-optimizations.md │ │ │ ├── tokenization-1.gif │ │ │ ├── tokenization-2.gif │ │ │ ├── tokenization-memory.png │ │ │ ├── tokenization-times.png │ │ │ ├── tokenization-validation.png │ │ │ └── trie.png │ ├── 03 │ │ └── 07 │ │ │ ├── create_extension_pack.png │ │ │ └── extension-pack-roundup.md │ ├── 04 │ │ └── 10 │ │ │ ├── close_html_xml_tag.gif │ │ │ ├── expand_selection.gif │ │ │ ├── sublime-text-roundup.md │ │ │ └── sublime_text_keymap.png │ ├── 05 │ │ └── 10 │ │ │ └── build-2017-demo.md │ ├── 06 │ │ └── 20 │ │ │ ├── font-ligatures-annotated.png │ │ │ ├── great-looking-editor-roundup.md │ │ │ ├── themes-ayu.gif │ │ │ ├── themes-nord.gif │ │ │ ├── themes-sapphire.gif │ │ │ └── vscode-great-icons.jpg │ ├── 08 │ │ └── 07 │ │ │ ├── emmet-2.0.md │ │ │ └── emmet.gif │ └── 09 │ │ └── 28 │ │ ├── debug-features.png │ │ ├── java-debug-extension.png │ │ ├── java-debug.gif │ │ ├── java-debug.md │ │ └── java-extension-pack.png ├── 2018 │ ├── 11 │ │ └── 26 │ │ │ └── event-stream.md │ ├── 12 │ │ └── 04 │ │ │ ├── CPlusPlus.gif │ │ │ ├── CSharp.gif │ │ │ ├── CrossRepoJump.gif │ │ │ ├── Java.gif │ │ │ └── rich-navigation.md │ ├── 03 │ │ └── 23 │ │ │ ├── fileopen.png │ │ │ ├── memoryusage.png │ │ │ ├── piece-tree.gif │ │ │ ├── read.png │ │ │ ├── scrolling.png │ │ │ ├── text-buffer-reimplementation.md │ │ │ ├── traditional-piece-table.gif │ │ │ └── write.png │ ├── 04 │ │ └── 25 │ │ │ ├── Beautify.gif │ │ │ ├── BingDiagram.png │ │ │ ├── FormatOnKeypress.gif │ │ │ ├── OpenFilesOnLeft.gif │ │ │ ├── SocialImg.gif │ │ │ ├── ZoomScrollWheel-before.png │ │ │ ├── ZoomScrollWheel.gif │ │ │ └── bing-settings-search.md │ ├── 05 │ │ └── 07 │ │ │ ├── live-share-public-preview.md │ │ │ ├── lsp.png │ │ │ ├── shared-terminal.png │ │ │ ├── user-accept.png │ │ │ └── vsls.json.png │ ├── 07 │ │ └── 12 │ │ │ ├── auto-attach.gif │ │ │ ├── debug-extension-api.png │ │ │ ├── debugger.png │ │ │ ├── debugging_architecture.png │ │ │ ├── introducing-logpoints-and-auto-attach.md │ │ │ ├── logpoints.gif │ │ │ └── npm_scripts.png │ ├── 08 │ │ └── 07 │ │ │ ├── breakpoint.png │ │ │ ├── debug-adapter-protocol-website.md │ │ │ ├── with-DAP.png │ │ │ └── without-DAP.png │ └── 09 │ │ ├── 10 │ │ ├── github_pr_hero.png │ │ ├── github_pr_overview.png │ │ └── introducing-github-pullrequests.md │ │ └── 12 │ │ ├── build.png │ │ ├── engineering-with-azure-pipelines.md │ │ ├── pr.png │ │ ├── slack.png │ │ ├── social_pipelines.png │ │ └── tweet.png ├── 2019 │ ├── 10 │ │ ├── 31 │ │ │ ├── attached-containers.png │ │ │ ├── docker-compose-output.png │ │ │ ├── docker-exec.png │ │ │ ├── express-server-json.png │ │ │ ├── gitlens-information.png │ │ │ ├── inspecting-containers.md │ │ │ ├── installing-dev-container.png │ │ │ ├── node-process-picker.png │ │ │ ├── open-folder-dialog.png │ │ │ ├── remote-container-architecture.png │ │ │ ├── remote-context-status-bar.png │ │ │ ├── remote-extensions-view.png │ │ │ ├── search-for-gitlens.png │ │ │ ├── social-remote-containers.png │ │ │ ├── vscode-ui-in-container.png │ │ │ └── welcome-express.png │ │ └── 03 │ │ │ ├── open-configuration-file.png │ │ │ ├── python-linux-vm.png │ │ │ ├── remote-extension-commands.png │ │ │ ├── remote-ssh-extension.png │ │ │ ├── remote-ssh-tips-and-tricks.md │ │ │ ├── social-remote-ssh.png │ │ │ └── ssh-config-file.png │ ├── 02 │ │ └── 19 │ │ │ ├── foldingRange.png │ │ │ ├── hover.png │ │ │ ├── hoverResult.png │ │ │ └── lsif.md │ ├── 05 │ │ ├── 23 │ │ │ ├── social-strict-null.png │ │ │ └── strict-null.md │ │ └── 02 │ │ │ ├── remote-development.md │ │ │ ├── remote-environment.png │ │ │ ├── remote-extensions.png │ │ │ ├── remote-local-extensions.png │ │ │ ├── remote-worker-processes.png │ │ │ ├── social-remote.png │ │ │ ├── social_remote.png │ │ │ ├── vagrant-box-testimonial.png │ │ │ ├── vscode-ubuntu-windows-testimonial.png │ │ │ └── worker-processes.png │ ├── 07 │ │ └── 25 │ │ │ ├── add-ssh-public-key.png │ │ │ ├── architecture-ssh.png │ │ │ ├── check-uname.png │ │ │ ├── create-vm.png │ │ │ ├── debug-hello-world.png │ │ │ ├── enter-port.png │ │ │ ├── hello-world-browser.png │ │ │ ├── init-vs-code-server.png │ │ │ ├── intellicode-installed-remotely.png │ │ │ ├── name-port.png │ │ │ ├── python-installed-remotely.png │ │ │ ├── python-intellisense.png │ │ │ ├── python-recommendation.png │ │ │ ├── remote-commands.png │ │ │ ├── remote-on-activity-bar.png │ │ │ ├── remote-open-folder.png │ │ │ ├── remote-ssh-extension.png │ │ │ ├── remote-ssh.md │ │ │ ├── set-user-host.png │ │ │ ├── social-remote-ssh.png │ │ │ ├── ssh-keygen.png │ │ │ ├── ssh-status-bar.png │ │ │ ├── vm-auto-shutdown.png │ │ │ ├── vm-instance-details.png │ │ │ └── vm-public-ip-address.png │ └── 09 │ │ └── 03 │ │ ├── matts-setup.png │ │ ├── remote-wsl-extension.png │ │ ├── wsl-cow-say.png │ │ └── wsl2.md ├── 2020 │ ├── 12 │ │ └── 03 │ │ │ ├── chromebook-get-started.md │ │ │ ├── downloads.png │ │ │ ├── dpkg-arch.png │ │ │ ├── enable-crostini.png │ │ │ ├── install-deb.png │ │ │ ├── install-deps.png │ │ │ ├── install-node.png │ │ │ ├── install-nvm.png │ │ │ ├── install-python-deps.png │ │ │ ├── install-python-ext.png │ │ │ ├── intro-to-js-cover.jpg │ │ │ ├── intro-to-python-cover.jpg │ │ │ ├── launch-vscode.png │ │ │ ├── terminal.png │ │ │ └── vscode-running.png │ ├── 02 │ │ ├── 18 │ │ │ ├── chart.png │ │ │ ├── hero.png │ │ │ └── optimizing-ci.md │ │ └── 24 │ │ │ ├── custom-data-format.md │ │ │ ├── custom-data-helloworld.png │ │ │ ├── html-css-language-features.png │ │ │ ├── mavo-demo.gif │ │ │ └── simple-interface.png │ ├── 03 │ │ └── 02 │ │ │ ├── docker-desktop-wsl-integration.png │ │ │ ├── docker-in-wsl2.md │ │ │ ├── docker-in-wsl2.png │ │ │ ├── docker-ps-in-wsl.png │ │ │ ├── docker-resources-wsl-integration.png │ │ │ ├── docker-run-mongo.png │ │ │ └── vscode-containers-in-wsl.png │ ├── 05 │ │ ├── 14 │ │ │ ├── build-2020.png │ │ │ ├── vscode-build-2020.md │ │ │ └── vscode-build-social.png │ │ └── 06 │ │ │ ├── completion-suggestions.gif │ │ │ ├── create-from-todo.gif │ │ │ ├── github-issues-integration.md │ │ │ ├── issue-hover.png │ │ │ ├── issue-queries.png │ │ │ ├── user-hover.png │ │ │ └── work-on-issue.gif │ ├── 06 │ │ └── 09 │ │ │ ├── go-extension.md │ │ │ └── go-extension.png │ └── 07 │ │ ├── 27 │ │ ├── 1-containers-abc.png │ │ ├── 10-starting-container.png │ │ ├── 11-sortpy-cropped.png │ │ ├── 12-breakpoint-cropped.png │ │ ├── 13-debug-cropped.png │ │ ├── 14-helloworld-cropped.png │ │ ├── 15-add-config.png │ │ ├── 16-python-config.png │ │ ├── 17-node-devcontainer.png │ │ ├── 18-python-devcontainer.png │ │ ├── 19-dockerfile-crop.png │ │ ├── 2-code-ps-cropped.png │ │ ├── 20-change-cycle.png │ │ ├── 21-reopen-notif.png │ │ ├── 22-reload-starting.png │ │ ├── 23-in-container.png │ │ ├── 24-run-code-cropped.png │ │ ├── 25-create-repo.png │ │ ├── 26-git-setup-cropped.png │ │ ├── 27-git-push.png │ │ ├── 28-github-browser.png │ │ ├── 3-extension.png │ │ ├── 4-remote-indicator.png │ │ ├── 5-commands-list.png │ │ ├── 6-clone-repo-command.png │ │ ├── 7-paste-repo-command.png │ │ ├── 8-volume-command.png │ │ └── containers-edu.md │ │ └── 01 │ │ ├── 1-docker-desktop-wsl-integration.png │ │ ├── 10-uname-node.png │ │ ├── 11-localhost-hello-world.png │ │ ├── 2-ubuntu-launch.png │ │ ├── 3-wsl-extension-recommended.png │ │ ├── 4-reload-vscode.png │ │ ├── 5-wsl-left-indicator.png │ │ ├── 6-remote-explorer-wsl-targets.png │ │ ├── 7-reopen-container.png │ │ ├── 8-node-14.png │ │ ├── 9-vscode-starting-with-container.png │ │ └── containers-wsl.md ├── 2021 │ ├── 10 │ │ ├── 11 │ │ │ ├── webview-ui-toolkit-artwork.png │ │ │ └── webview-ui-toolkit.md │ │ └── 20 │ │ │ ├── continue-on-dropdown.png │ │ │ ├── extension-not-available.png │ │ │ ├── github-issue-notebooks-vscode-dev.png │ │ │ ├── join-live-share.png │ │ │ ├── local-file-system-unsupported.png │ │ │ ├── luna-paint-vscode-dev.png │ │ │ ├── night-owl-theme-vscode-dev.png │ │ │ ├── the-cat-said-no-vscode-dev.png │ │ │ ├── vscode-dev.md │ │ │ └── vscode-dev.png │ ├── 11 │ │ └── 08 │ │ │ ├── custom-notebooks.md │ │ │ ├── github-issues-notebook.png │ │ │ ├── notebook.png │ │ │ └── rest-book.png │ ├── 02 │ │ └── 16 │ │ │ ├── bisect.gif │ │ │ ├── disable_manually.png │ │ │ └── extension-bisect.md │ ├── 06 │ │ ├── 10 │ │ │ ├── continue-options.png │ │ │ ├── continue-working.png │ │ │ ├── extension-limits.png │ │ │ ├── main-branch.png │ │ │ ├── one-change-status-bar.png │ │ │ ├── open-any-repo.png │ │ │ ├── open-repo-or-pr.png │ │ │ ├── readme-one-change-explorer.png │ │ │ ├── remote-branch.png │ │ │ ├── remote-indicator-hover.png │ │ │ ├── remote-indicator.png │ │ │ ├── remote-repositories-banner.png │ │ │ ├── remote-repositories.md │ │ │ ├── remote-repositories1.gif │ │ │ ├── remote-repositories3.gif │ │ │ └── switch-branch.png │ │ └── 02 │ │ │ ├── build-2021.md │ │ │ ├── remote.jpg │ │ │ └── typescript.jpg │ ├── 07 │ │ └── 06 │ │ │ ├── do-you-trust-question.png │ │ │ ├── eslint-warning.png │ │ │ ├── jupyter-notebook-warning.png │ │ │ ├── social-image-complaint.png │ │ │ ├── trust-folders-and-workspaces-list.png │ │ │ ├── trust-parent-folder-checkbox.png │ │ │ ├── trust-security-icons.png │ │ │ ├── trust-social-image.png │ │ │ ├── workspace-trust-editor-annotated.png │ │ │ ├── workspace-trust-required-prompt.png │ │ │ ├── workspace-trust-settings.png │ │ │ ├── workspace-trust-startup-prompt-setting.png │ │ │ └── workspace-trust.md │ ├── 08 │ │ └── 05 │ │ │ ├── notebook.png │ │ │ └── notebooks.md │ └── 09 │ │ └── 29 │ │ ├── ast.dio.svg │ │ ├── ast2.dio.svg │ │ ├── bracket-pair-colorization-off.png │ │ ├── bracket-pair-colorization-on.png │ │ ├── bracket-pair-colorization.md │ │ ├── checker_ts-extension.gif │ │ ├── checker_ts-native.gif │ │ ├── level-depends-on-all-previous-characters.dio.svg │ │ ├── long-lists-tree-reuse.dio.svg │ │ ├── long-lists-tree-reuse2.dio.svg │ │ ├── long-lists-tree-reuse3.dio.svg │ │ ├── long-lists-tree.dio.svg │ │ ├── long-lists.dio.svg │ │ ├── on-off-comparison.drawio.svg │ │ └── tokens-example.dio.svg ├── 2022 │ ├── 10 │ │ └── 04 │ │ │ ├── github-discussions.png │ │ │ └── vscode-community-discussions.md │ ├── 11 │ │ └── 28 │ │ │ ├── expose-methond-preload-script.png │ │ │ ├── html-node-web-page.png │ │ │ ├── ipc-preload-scripts.png │ │ │ ├── messageport-exchange.png │ │ │ ├── process-model-after-sandboxing.png │ │ │ ├── process-model-before-sandbox.png │ │ │ ├── removing-node-web-page.png │ │ │ ├── target-environment-warning.png │ │ │ ├── vsbuffer-class.png │ │ │ ├── vscode-sandbox.md │ │ │ └── vscode-web.png │ ├── 12 │ │ └── 07 │ │ │ ├── remote-even-better.md │ │ │ ├── tunneling-blog-access-red.png │ │ │ ├── tunneling-blog-code-help-new.png │ │ │ ├── tunneling-blog-containers.png │ │ │ ├── tunneling-blog-download.png │ │ │ ├── tunneling-blog-enabled-prompt.png │ │ │ ├── tunneling-blog-extension.png │ │ │ ├── tunneling-blog-list.png │ │ │ ├── tunneling-blog-remote-explorer.png │ │ │ ├── tunneling-blog-remote-spectrum.png │ │ │ └── tunneling-blog-wsl.png │ ├── 03 │ │ └── 08 │ │ │ ├── add-dev-container.gif │ │ │ ├── container-file-structure.png │ │ │ ├── container-logs.png │ │ │ ├── dev-containers-extension.png │ │ │ ├── dev-containers-tutorial-screenshot.png │ │ │ ├── docker-extension.png │ │ │ ├── laravel-app.png │ │ │ ├── port-forwarding.png │ │ │ ├── remote-indicator.png │ │ │ ├── reopen-in-container-prompt.png │ │ │ ├── terminal.png │ │ │ └── the-tutorial-problem.md │ ├── 04 │ │ └── 04 │ │ │ ├── codespaces-diagram.png │ │ │ ├── container-diagram.png │ │ │ ├── increase-productivity-with-containers.md │ │ │ ├── it-works-on-my-machine.png │ │ │ └── this-is-fine-meme.png │ ├── 05 │ │ └── 18 │ │ │ ├── dev-container-cli.md │ │ │ └── dev-container-stages.png │ ├── 07 │ │ └── 07 │ │ │ ├── cli-auth.png │ │ │ ├── help-and-start.png │ │ │ ├── server-name.png │ │ │ └── vscode-server.md │ ├── 08 │ │ └── 16 │ │ │ └── markdown-language-server.md │ └── 09 │ │ └── 15 │ │ ├── dev-container-features.md │ │ └── features-list-site.png └── 2023 │ ├── 03 │ └── 30 │ │ ├── add-debugging-support.png │ │ ├── editor-ghost-text.png │ │ ├── extension-chat-view.png │ │ ├── in-editor-chat-prototype.png │ │ ├── inline-chat-preview.png │ │ ├── turn-off-breadcrumbs.png │ │ └── vscode-copilot.md │ └── 04 │ └── 13 │ ├── monaco-workbench.png │ ├── visual-studio-online.png │ ├── vscode-day.md │ └── vscodeday-header.png ├── build ├── check-lfs.js ├── keybindings │ ├── doc.keybindings.linux.json │ ├── doc.keybindings.osx.json │ └── doc.keybindings.win.json └── sitemap.xml ├── docs ├── azure │ ├── aksextensions.md │ ├── deployment.md │ ├── docker.md │ ├── extensions.md │ ├── images │ │ ├── aksextensions │ │ │ ├── Sign-in.png │ │ │ ├── aks-diagnostics-webview.png │ │ │ ├── aks-periscope-webview.png │ │ │ ├── aks-startstop-cluster.png │ │ │ ├── azure-service-operator-screenshot.png │ │ │ ├── install-aks-extension.png │ │ │ ├── right-click-menu-kubectl.png │ │ │ ├── right-click-menu-workflow.png │ │ │ ├── right-click-menu.png │ │ │ └── right-click-subscription.png │ │ ├── extensions │ │ │ ├── azure-app-service-tools.png │ │ │ ├── azure-tools.png │ │ │ └── popular-azure-extensions.png │ │ ├── kubernetes │ │ │ ├── check-status.gif │ │ │ ├── create-k8s.gif │ │ │ ├── create-manifest.gif │ │ │ ├── error-creating-clusters-RSA.png │ │ │ ├── error-creating-clusters.png │ │ │ ├── install-kubernetes.png │ │ │ ├── manifest-example.png │ │ │ └── start-deployment.gif │ │ ├── mongodb │ │ │ ├── attach-database-account.png │ │ │ ├── attached-mongodb-database.png │ │ │ ├── connection.png │ │ │ ├── cosmosdb-context-menu.png │ │ │ ├── cosmosdb-explorer.png │ │ │ ├── create-azure-cluster.png │ │ │ ├── create-cosmosdb-account.png │ │ │ ├── install-cosmosdb-extension.png │ │ │ ├── mongodb-commands.png │ │ │ ├── new-mongo-scrapbook.png │ │ │ ├── open-document.png │ │ │ ├── run-playground.png │ │ │ └── scrapbook.png │ │ └── remote-debugging │ │ │ ├── app-service-explorer.png │ │ │ ├── install-app-service.png │ │ │ ├── remote-breakpoint.png │ │ │ └── start-remote-debugging.png │ ├── kubernetes.md │ ├── mongodb.md │ └── remote-debugging.md ├── containers │ ├── app-service.md │ ├── bridge-to-kubernetes.md │ ├── choosing-dev-environment.md │ ├── debug-common.md │ ├── debug-netcore.md │ ├── debug-node.md │ ├── debug-python.md │ ├── docker-compose.md │ ├── images │ │ ├── app-service │ │ │ ├── ACI-deploy.gif │ │ │ ├── acr-build-image-in-azure.png │ │ │ ├── acr-build-image-select-base-os.png │ │ │ ├── acr-tag-image.png │ │ │ ├── browse-website-button.png │ │ │ ├── command-build-image.png │ │ │ ├── deploy-aci-containers-pane.png │ │ │ ├── deploy-aci-contexts.png │ │ │ ├── deploy-aci-menu.png │ │ │ ├── deploy-image-to-azure-app-service.png │ │ │ ├── deploy-to-web-app.png │ │ │ ├── explorer-connect-registry.png │ │ │ ├── explorer-deploy-to-app-service.png │ │ │ ├── explorer-push-image.png │ │ │ ├── explorer-refresh-registry.png │ │ │ ├── explorer-registries.png │ │ │ ├── explorer-tag-image.png │ │ │ ├── notification-appservice-deployment.png │ │ │ ├── output-appservice-deployment.png │ │ │ ├── terminal-output-build-image.png │ │ │ └── webapp-homepage.png │ │ ├── compose │ │ │ ├── docker-compose-attach.png │ │ │ ├── docker-compose-configuration.png │ │ │ ├── docker-compose-debugging.png │ │ │ ├── docker-compose-files.png │ │ │ ├── docker-compose-netcore-debugger-prompt.png │ │ │ ├── docker-compose-open-in-browser.png │ │ │ ├── docker-compose-python-debug.png │ │ │ ├── docker-compose-python-remote-attach.png │ │ │ ├── docker-node-launch.png │ │ │ ├── select-container-group.png │ │ │ └── select-container.png │ │ ├── debug │ │ │ ├── csharp-prompt.png │ │ │ └── mac-folders.png │ │ ├── devenv │ │ │ ├── devenv-enable-docker-wsl2.png │ │ │ └── install-in-ssh.png │ │ ├── overview │ │ │ ├── command-palette.png │ │ │ ├── compose-group.png │ │ │ ├── container-registry.png │ │ │ ├── docker-view-context-menu.gif │ │ │ ├── docker-view-rearrange.gif │ │ │ ├── dockercomposeimageintellisense.png │ │ │ ├── dockercomposeintellisense.png │ │ │ ├── dockercomposesearch.png │ │ │ ├── dockerfile-intellisense.png │ │ │ ├── hover-support.png │ │ │ ├── installation-extension-search.png │ │ │ ├── select-subset.gif │ │ │ └── tab-completions.gif │ │ ├── quickstarts │ │ │ ├── aspnetcore-add-dotnet.png │ │ │ ├── aspnetcore-debug-configuration.png │ │ │ ├── aspnetcore-intellisense-env.png │ │ │ ├── aspnetcore-running-container.png │ │ │ ├── aspnetcore-verify-image.png │ │ │ ├── deploy-image-to-azure-python.png │ │ │ ├── node-add-node-dark.png │ │ │ ├── node-debug-configuration-dark.png │ │ │ ├── node-run-browser.png │ │ │ ├── node-running-container-dark.png │ │ │ ├── node-verify-image-dark.png │ │ │ ├── node-view-logs-dark.png │ │ │ ├── nodejs-intellisense-env.png │ │ │ ├── python-add-python.png │ │ │ ├── python-debug-configuration.png │ │ │ ├── python-django-image-in-acr.png │ │ │ ├── python-django-registries.png │ │ │ ├── python-edit-dockerfile.png │ │ │ ├── python-view-logs.png │ │ │ ├── python-web-launch.png │ │ │ └── select-registry.png │ │ └── registries │ │ │ ├── azure-image-context-menu.png │ │ │ ├── azure-registries.png │ │ │ ├── azure-registry-context-menu.png │ │ │ ├── azure-repository-context-menu.png │ │ │ ├── connect-registry-2.png │ │ │ ├── docker-hub.png │ │ │ ├── explorer-push-image.png │ │ │ ├── explorer-refresh-registry.png │ │ │ ├── explorer-registries.png │ │ │ ├── explorer-tag-image.png │ │ │ └── gitlab.png │ ├── overview.md │ ├── quickstart-aspnet-core.md │ ├── quickstart-container-registries.md │ ├── quickstart-node.md │ ├── quickstart-python.md │ ├── reference.md │ ├── ssh.md │ ├── troubleshooting.md │ └── tutorial-django-push-to-registry.md ├── cpp │ ├── build-with-cmake.md │ ├── c-cpp-properties-schema-reference.md │ ├── cmake-linux.md │ ├── colorization-cpp.md │ ├── config-clang-mac.md │ ├── config-linux.md │ ├── config-mingw.md │ ├── config-msvc.md │ ├── config-wsl.md │ ├── configure-intellisense-crosscompilation.md │ ├── cpp-debug.md │ ├── cpp-ide.md │ ├── customize-default-settings-cpp.md │ ├── enable-logging-cpp.md │ ├── faq-cpp.md │ ├── images │ │ ├── clang-mac │ │ │ ├── build-and-debug-active-file.png │ │ │ ├── clang-task-in-terminal.png │ │ │ ├── default-build-task.png │ │ │ ├── file-explorer-mac.png │ │ │ ├── helloworld-in-terminal.png │ │ │ ├── intellisense-configurations-mac-clang.png │ │ │ ├── lldb-header-stepping.png │ │ │ ├── mac-command-palette-configurations.png │ │ │ ├── mac-command-palette-shell-command.png │ │ │ └── mac-debugging-windows.png │ │ ├── cpp │ │ │ ├── Lightbulb.png │ │ │ ├── bash-ubuntu.png │ │ │ ├── breakpoint-default.png │ │ │ ├── breakpoint-in-main.png │ │ │ ├── c-cpp-properties-file.png │ │ │ ├── clang-task-in-terminal.png │ │ │ ├── cmake-build.png │ │ │ ├── cmake-choose-type.png │ │ │ ├── cmake-debug.png │ │ │ ├── cmake-extension.png │ │ │ ├── cmake-kit-statusbar.png │ │ │ ├── cmake-project-contents.png │ │ │ ├── cmake-quickstart-command-palette.png │ │ │ ├── cmake-select-variant.png │ │ │ ├── cmake-selectkit.png │ │ │ ├── cmake-variant-type.png │ │ │ ├── command-palette.png │ │ │ ├── compile_commands.png │ │ │ ├── condbreak.png │ │ │ ├── configure-includepath.png │ │ │ ├── cpp-extension.png │ │ │ ├── cpp-intellisense-vector.png │ │ │ ├── cpp-lightbulb.png │ │ │ ├── create-launch-json.png │ │ │ ├── create-tasks-json.png │ │ │ ├── debug-console-output-wsl.png │ │ │ ├── debug-controls.png │ │ │ ├── debugger-panel.png │ │ │ ├── developer-cmd-prompt-menu.png │ │ │ ├── file-explorer-mac.png │ │ │ ├── file-explorer-mingw.png │ │ │ ├── file-explorer-msvc.png │ │ │ ├── filesearch.png │ │ │ ├── gcc-system-header-stepping.png │ │ │ ├── gcc-task-in-terminal.png │ │ │ ├── include-errors.png │ │ │ ├── languages_cpp.png │ │ │ ├── launchjson.png │ │ │ ├── lightbulb-suggestion.png │ │ │ ├── list-members-cpp.png │ │ │ ├── lldb-header-stepping.png │ │ │ ├── log-filter-selector.png │ │ │ ├── logging-level.png │ │ │ ├── mac-command-palette-shell-command.png │ │ │ ├── mac-debugging-windows.png │ │ │ ├── mingw-debugging-windows.png │ │ │ ├── mouse-hover.png │ │ │ ├── msvc-breakpoint-entry.png │ │ │ ├── msvc-build-output.png │ │ │ ├── msvc-debugging-window.png │ │ │ ├── msvc-system-header-stepping.png │ │ │ ├── msvc-task-in-terminal.png │ │ │ ├── parsing.png │ │ │ ├── peekdefn.png │ │ │ ├── start-ubuntu.png │ │ │ ├── step-over-button.png │ │ │ ├── threads.png │ │ │ ├── watch-window.png │ │ │ ├── workspacesearch.png │ │ │ ├── wsl-breakpoint-default.png │ │ │ └── wsl-task-in-terminal.png │ │ ├── debugger │ │ │ └── DeveloperToolsAccess.png │ │ ├── intellisense │ │ │ ├── compiler-path.png │ │ │ ├── include-path.png │ │ │ └── intellisense-mode.png │ │ ├── mingw │ │ │ ├── build-active-file.png │ │ │ ├── build-and-debug-active-file.png │ │ │ ├── file-explorer-mingw.png │ │ │ ├── intellisense-configurations-mingw.png │ │ │ ├── mingw-build-output.png │ │ │ ├── mingw-debug-output.png │ │ │ ├── mingw-dir-output.png │ │ │ ├── new-file-button.png │ │ │ ├── quickinfo.png │ │ │ └── stopAtEntry.png │ │ ├── msvc │ │ │ ├── build-active-file.png │ │ │ ├── build-and-debug-active-file.png │ │ │ ├── build-output-in-terminal.png │ │ │ ├── build-tools-for-vs-2022.png │ │ │ ├── check-cl-exe.png │ │ │ ├── configurations-ui.png │ │ │ ├── desktop_development_with_cpp-2022.png │ │ │ ├── developer-cmd-prompt-menu.png │ │ │ ├── file-explorer.png │ │ │ ├── helloworld-in-terminal.png │ │ │ ├── msvc-system-header-stepping.png │ │ │ ├── new-file-button.png │ │ │ └── stopAtEntry.png │ │ ├── playbutton │ │ │ ├── add-debug-configuration.png │ │ │ ├── breakpoint-debug.png │ │ │ ├── compiler-list.png │ │ │ ├── cpp-breakpoint.png │ │ │ ├── debug-button.png │ │ │ ├── debug-cpp-file-play-button.png │ │ │ ├── dev-command-prompt-error.png │ │ │ ├── helloworld-terminal-output.png │ │ │ ├── new-playbutton-dropdown.png │ │ │ ├── run-debug-arrow.png │ │ │ ├── run-debug-drop-down.png │ │ │ ├── run-play-button.png │ │ │ ├── select-cl-compiler.png │ │ │ ├── select-clang-compiler.png │ │ │ └── select-gcc-compiler.png │ │ └── wsl │ │ │ ├── bash-ubuntu.png │ │ │ ├── build-active-file.png │ │ │ ├── build-and-debug-active-file.png │ │ │ ├── cpp-extension-notification.png │ │ │ ├── debug-console-output-wsl.png │ │ │ ├── debug-view-variables.png │ │ │ ├── file-explorer-helloworld.png │ │ │ ├── file-explorer-wsl.png │ │ │ ├── install-in-wsl.png │ │ │ ├── installing-vscode-server.png │ │ │ ├── intellisense-configurations-wsl.png │ │ │ ├── msg-intellisense.png │ │ │ ├── new-file-button.png │ │ │ ├── start-ubuntu.png │ │ │ ├── wsl-bash-terminal.png │ │ │ ├── wsl-breakpoint-default.png │ │ │ ├── wsl-status-bar.png │ │ │ └── wsl-task-in-terminal.png │ ├── introvideos-cpp.md │ ├── launch-json-reference.md │ ├── lldb-mi.md │ ├── natvis.md │ └── pipe-transport.md ├── customization │ ├── keyboard-shortcuts-linux-vscode-dev.docx │ ├── keyboard-shortcuts-linux.docx │ ├── keyboard-shortcuts-macos-vscode-dev.docx │ ├── keyboard-shortcuts-macos.docx │ ├── keyboard-shortcuts-windows-vscode-dev.docx │ ├── keyboard-shortcuts-windows.docx │ └── keyboard-shortcuts.md ├── datascience │ ├── azure-machine-learning.md │ ├── data-science-tutorial.md │ ├── images │ │ ├── azure-machine-learning │ │ │ ├── azure-machine-learning-vscode-extension.png │ │ │ ├── language-support.gif │ │ │ ├── resource-autocompletion.gif │ │ │ └── specification-file-authoring.gif │ │ ├── data-science-tutorial │ │ │ ├── anaconda-environment.png │ │ │ ├── anaconda-terminal.png │ │ │ ├── choose-myenv.png │ │ │ ├── create-notebook.png │ │ │ ├── dataviewer.png │ │ │ ├── file-create.png │ │ │ ├── jupyter-cell-01.png │ │ │ ├── jupyter-cell-02.png │ │ │ ├── jupyter-cell-03.png │ │ │ ├── jupyter-cell-04.png │ │ │ ├── jupyter-cell-05.png │ │ │ ├── jupyter-cell-06.png │ │ │ ├── jupyter-cell-07.png │ │ │ ├── jupyter-cell-08.png │ │ │ ├── notebook-editor.png │ │ │ ├── plot-viewer-buttons.png │ │ │ ├── python-extension-marketplace.png │ │ │ ├── select-kernel.png │ │ │ ├── variable-explorer-1.png │ │ │ ├── variable-explorer-2.png │ │ │ ├── variable-explorer-3.png │ │ │ └── variable-explorer.png │ │ ├── jupyter-kernel-management │ │ │ ├── more-kernel-sources.png │ │ │ ├── mru-kernel.png │ │ │ ├── noterbook-kernel-picker.gif │ │ │ └── select-enter-server-url.png │ │ ├── jupyter │ │ │ ├── cell-toggle-line-num.png │ │ │ ├── code-move.png │ │ │ ├── data-viewer.png │ │ │ ├── debug-cell.png │ │ │ ├── enter-server-url.png │ │ │ ├── filter-default.png │ │ │ ├── filter-exact.png │ │ │ ├── filter-regex.png │ │ │ ├── intellisense.png │ │ │ ├── jupyter-prompt.png │ │ │ ├── multiselect.png │ │ │ ├── native-add-cells.png │ │ │ ├── native-code-cells-01.png │ │ │ ├── native-code-cells-02.png │ │ │ ├── native-code-cells-03.png │ │ │ ├── native-code-cells-04.png │ │ │ ├── native-code-delete.png │ │ │ ├── native-code-run.png │ │ │ ├── native-code-runs.png │ │ │ ├── native-code-unselected-02.png │ │ │ ├── native-code-unselected.png │ │ │ ├── native-data-viewer.png │ │ │ ├── native-intellisense.png │ │ │ ├── native-kernel-picker.png │ │ │ ├── native-language-picker-01.png │ │ │ ├── native-line-number.png │ │ │ ├── native-markdown-01.png │ │ │ ├── native-markdown-02.png │ │ │ ├── native-markdown-03.png │ │ │ ├── native-markdown-htr.png │ │ │ ├── native-markdown-not-rendered.png │ │ │ ├── native-markdown-rendered.png │ │ │ ├── native-plot-viewer-02.png │ │ │ ├── native-plot-viewer.png │ │ │ ├── native-toolbar-additional-commands.png │ │ │ ├── native-toolbar-export.png │ │ │ ├── native-trust-status-bar.png │ │ │ ├── native-trusted-prompt.png │ │ │ ├── notebook-diffing.png │ │ │ ├── notebook-kernel-picker.png │ │ │ ├── notebook-toggle-line-num.png │ │ │ ├── notebook-toolbar.png │ │ │ ├── profile-template-dropdown.png │ │ │ ├── run-by-line.png │ │ │ ├── save-output.png │ │ │ ├── search-filter.png │ │ │ ├── select-enter-server-url.png │ │ │ ├── select-existing-server.png │ │ │ ├── table-of-contents.png │ │ │ ├── variable-explorer-01.png │ │ │ └── variable-explorer-02.png │ │ ├── notebooks-web │ │ │ ├── codespaces-jupyter-template.png │ │ │ ├── continue-working-on-codespaces.png │ │ │ ├── jupyter-status-bar.png │ │ │ ├── remote-explorer-tab.png │ │ │ ├── select-enter-server-url.png │ │ │ └── select-existing-server.png │ │ ├── overview │ │ │ ├── jupyter-notebook-preview.png │ │ │ ├── polyglot-nb-ext.png │ │ │ └── profile-template-dropdown.png │ │ ├── pytorch-support │ │ │ ├── data-slicing.png │ │ │ ├── debugger-data-viewer.png │ │ │ ├── pytorch-profiler.png │ │ │ ├── pytorch-pylance.gif │ │ │ ├── tensorboard-integration.png │ │ │ └── variable-explorer-data-viewer.png │ │ ├── shared │ │ │ ├── command-palette.png │ │ │ ├── debug-panel-initial-view.png │ │ │ ├── debug-toolbar.png │ │ │ ├── environment-in-status-bar.png │ │ │ └── select-virtual-environment.png │ │ └── tutorial │ │ │ └── social.png │ ├── jupyter-kernel-management.md │ ├── jupyter-notebooks.md │ ├── notebooks-web.md │ ├── overview.md │ ├── python-interactive.md │ └── pytorch-support.md ├── devcontainers │ ├── attach-container.md │ ├── containers-advanced.md │ ├── containers.md │ ├── create-dev-container.md │ ├── devcontainer-cli.md │ ├── devcontainerjson-reference.md │ ├── faq.md │ ├── images │ │ ├── attach-container │ │ │ ├── containers-attach.png │ │ │ └── k8s-attach.png │ │ ├── containers │ │ │ ├── architecture-containers.png │ │ │ ├── attach-containers-trust.png │ │ │ ├── checkout-pr-status.png │ │ │ ├── clone-containers-trust.png │ │ │ ├── code-command-in-terminal.png │ │ │ ├── container-features.png │ │ │ ├── container-settings.png │ │ │ ├── containers-addto-devcontainer.png │ │ │ ├── containers-disabled-extensions.png │ │ │ ├── containers-explorer.png │ │ │ ├── containers-installed-remote-indicator.png │ │ │ ├── dev-container-progress.png │ │ │ ├── dev-volumes.png │ │ │ ├── docker-explore-dev-container.png │ │ │ ├── dotfiles.png │ │ │ ├── features-intellisense.png │ │ │ ├── forward-port-containers.png │ │ │ ├── install-all-extn-containers.png │ │ │ ├── local-installed-extensions.png │ │ │ ├── remote-dev-status-bar.png │ │ │ ├── restore-forwarded-ports.png │ │ │ ├── select-a-sample.png │ │ │ ├── select-dev-container-def.png │ │ │ └── vscode-remote-try-node.png │ │ ├── create-dev-container │ │ │ ├── connected-to-dev-container.png │ │ │ ├── container-edit-loop.png │ │ │ ├── dev-container-reopen-prompt.png │ │ │ ├── dev-containers-reopen.png │ │ │ ├── repo-container-folder-setting.png │ │ │ ├── select-dev-container-def-all.png │ │ │ ├── select-docker-compose.png │ │ │ └── select-dockerfile.png │ │ ├── devcontainer-cli │ │ │ └── dev-container-stages.png │ │ ├── tips-and-tricks │ │ │ ├── containers-explorer-remove.png │ │ │ ├── docker-remove.png │ │ │ └── resource-monitor.png │ │ └── tutorial │ │ │ ├── building-image.png │ │ │ ├── connected.png │ │ │ ├── containers-extension.png │ │ │ ├── dev-container-toast.png │ │ │ ├── dev-containers-commands-simple.png │ │ │ ├── dev-containers-extension.png │ │ │ ├── docker-status.png │ │ │ ├── hello-remote-world.png │ │ │ ├── remote-status-bar.png │ │ │ ├── version-check-updated.png │ │ │ └── version-check.png │ ├── tips-and-tricks.md │ └── tutorial.md ├── editor │ ├── accessibility.md │ ├── artificial-intelligence.md │ ├── codebasics.md │ ├── command-line.md │ ├── debugging.md │ ├── editingevolved.md │ ├── emmet.md │ ├── extension-marketplace.md │ ├── images │ │ ├── accessibility │ │ │ ├── accessibility-color-wheels.png │ │ │ ├── accessibility-extension-marketplace.png │ │ │ ├── accessibility-extension-squiggles.png │ │ │ ├── accessibility-select-theme.png │ │ │ ├── accessibility-settings-json-file.png │ │ │ ├── high-contrast.png │ │ │ ├── keyboard-shortcuts.png │ │ │ ├── screen-reader-mode.png │ │ │ ├── status.png │ │ │ ├── tab-moves-focus.png │ │ │ └── zoomed-in.png │ │ ├── artificial-intelligence │ │ │ ├── copilot-access-toast.png │ │ │ ├── copilot-auth-toast.png │ │ │ ├── copilot-extension.png │ │ │ ├── copilot-hover-highlight.png │ │ │ ├── copilot-view.png │ │ │ ├── devcontainer-explain.png │ │ │ ├── inline-chat.png │ │ │ ├── js-suggest.png │ │ │ ├── secondary-sidebar.png │ │ │ ├── slash-commands-example.png │ │ │ └── slash-commands.png │ │ ├── codebasics │ │ │ ├── CodeBasics.png │ │ │ ├── case-change-replace.gif │ │ │ ├── column-select.gif │ │ │ ├── encodingclicked.png │ │ │ ├── encodingselection.png │ │ │ ├── expandselection.gif │ │ │ ├── fileencoding.png │ │ │ ├── filesencodingsetting.png │ │ │ ├── find-in-selection.gif │ │ │ ├── folding.png │ │ │ ├── global-search-replace.png │ │ │ ├── indentation-commands.png │ │ │ ├── indentation-detection.png │ │ │ ├── multicursor-word.gif │ │ │ ├── multicursor.gif │ │ │ ├── multiple-line-support.gif │ │ │ ├── resize-find-widget.gif │ │ │ ├── search-editor-button.png │ │ │ ├── search-editor-overview.png │ │ │ ├── search-editor-triggers.gif │ │ │ ├── search-replace-example.png │ │ │ ├── search.png │ │ │ ├── searchadvanced.png │ │ │ └── seed-search-string-from-selection.gif │ │ ├── command-line │ │ │ ├── command-line-help.png │ │ │ ├── goto-line-column.png │ │ │ ├── hero.png │ │ │ ├── install-extension.png │ │ │ ├── launch-locale.png │ │ │ ├── launch-vscode.png │ │ │ ├── tunnel-help.png │ │ │ └── vscode-url.png │ │ ├── debugging │ │ │ ├── Debugging.png │ │ │ ├── add-config.gif │ │ │ ├── bpts-in-overview.png │ │ │ ├── breakpoints.gif │ │ │ ├── breakpoints.png │ │ │ ├── debug-actions-widget.png │ │ │ ├── debug-callstack.png │ │ │ ├── debug-environments.png │ │ │ ├── debug-menu.png │ │ │ ├── debug-session.png │ │ │ ├── debug-start.png │ │ │ ├── debug-status.png │ │ │ ├── debugconsole.png │ │ │ ├── debugging_hero.png │ │ │ ├── filtering-variables.png │ │ │ ├── hitCount.gif │ │ │ ├── launch-configuration.png │ │ │ ├── launch-json-in-explorer.png │ │ │ ├── launch-json-intellisense.png │ │ │ ├── launch-json-suggestions.png │ │ │ ├── log-points.gif │ │ │ ├── run.png │ │ │ ├── server-ready.gif │ │ │ ├── toolbar.png │ │ │ ├── variables.png │ │ │ └── watch.png │ │ ├── editingevolved │ │ │ ├── bracket-pair-colorization-on-off.drawio.png │ │ │ ├── brackets.png │ │ │ ├── breadcrumb-folder-dropdown.png │ │ │ ├── breadcrumb-symbol-dropdown.png │ │ │ ├── breadcrumbs.png │ │ │ ├── ctrlhover.png │ │ │ ├── emmetsnippet.gif │ │ │ ├── errors.png │ │ │ ├── errorsinline.png │ │ │ ├── gotosymbol.png │ │ │ ├── gutter.png │ │ │ ├── hover.png │ │ │ ├── inlay-hints.png │ │ │ ├── intellisense.png │ │ │ ├── javascript-intellisense.png │ │ │ ├── outgoing-link-prompt.png │ │ │ ├── parameterhints.png │ │ │ ├── quicknav.png │ │ │ ├── referenceinfo.png │ │ │ ├── references.png │ │ │ ├── rename.png │ │ │ ├── symbol.png │ │ │ └── trusted-domain-dropdown.png │ │ ├── emmet │ │ │ ├── emmet-multi-cursor.gif │ │ │ ├── emmet-vendor-prefix.gif │ │ │ └── emmet.gif │ │ ├── extension-marketplace │ │ │ ├── categories-and-tags.png │ │ │ ├── categories-debuggers.png │ │ │ ├── disable-extension.png │ │ │ ├── enable-extension.png │ │ │ ├── extension-contributions.png │ │ │ ├── extension-identifier.png │ │ │ ├── extension-pack.png │ │ │ ├── extension-search-categories.png │ │ │ ├── extension-search-filters.png │ │ │ ├── extensions-popular.png │ │ │ ├── extensions-python.png │ │ │ ├── extensions-view-filter-menu.png │ │ │ ├── extensions-view-icon.png │ │ │ ├── ignore-recommendation.png │ │ │ ├── manage-button.png │ │ │ ├── marketplace-categories.png │ │ │ ├── marketplace.png │ │ │ ├── more-button.png │ │ │ ├── more-dropdown.png │ │ │ ├── recommendations.png │ │ │ ├── search-for-bracket-extension.png │ │ │ ├── search-for-todo-extension.png │ │ │ ├── sort-install-count.png │ │ │ ├── todo-highlight-commands.png │ │ │ ├── todo-highlight-details.png │ │ │ ├── todo-highlight-settings.png │ │ │ ├── todo-highlight-uninstall.png │ │ │ ├── todo-highlighting.png │ │ │ └── uninstall-extension.png │ │ ├── intellisense │ │ │ ├── Class_16x.svg │ │ │ ├── ColorPalette_16x.svg │ │ │ ├── EnumItem_16x.svg │ │ │ ├── Field_16x.svg │ │ │ ├── Interface_16x.svg │ │ │ ├── Keyword_16x.svg │ │ │ ├── Method_16x.svg │ │ │ ├── Namespace_16x.svg │ │ │ ├── Property_16x.svg │ │ │ ├── Reference_16x.svg │ │ │ ├── Ruler_16x.svg │ │ │ ├── Snippet_16x.svg │ │ │ ├── String_16x.svg │ │ │ ├── Variable_16x.svg │ │ │ ├── copilot-extension.png │ │ │ ├── folder.svg │ │ │ ├── intellisense.gif │ │ │ ├── intellisense_docs.gif │ │ │ ├── intellisense_error.png │ │ │ ├── intellisense_icons.png │ │ │ ├── intellisense_packagejson.gif │ │ │ ├── localitybonus.png │ │ │ ├── missing_typings.png │ │ │ ├── paramater_info.png │ │ │ ├── quick_outline.png │ │ │ ├── symbol-constant.svg │ │ │ ├── symbol-event.svg │ │ │ ├── symbol-file.svg │ │ │ ├── symbol-operator.svg │ │ │ ├── symbol-parameter.svg │ │ │ ├── symbol-structure.svg │ │ │ └── tabCompletion.gif │ │ ├── keybinding │ │ │ └── outline.png │ │ ├── multi-root-workspaces │ │ │ ├── add-config.png │ │ │ ├── add-launch-config.png │ │ │ ├── add-root-folder.png │ │ │ ├── debugging-dropdown.png │ │ │ ├── explorer-context.png │ │ │ ├── hero.png │ │ │ ├── multiple-scm-providers.png │ │ │ ├── named-folders.png │ │ │ ├── open-recent.png │ │ │ ├── quick-open-list.png │ │ │ ├── save-workspace.png │ │ │ ├── search.png │ │ │ ├── settings-dropdown.png │ │ │ ├── tabbed-headers.png │ │ │ ├── tasks-dropdown.png │ │ │ ├── unsupported-setting-info.png │ │ │ ├── workspace-file-schema.png │ │ │ ├── workspace-icon.png │ │ │ └── workspace-settings.png │ │ ├── profiles │ │ │ ├── create-profile-via-manage.png │ │ │ ├── create-profile.png │ │ │ ├── profile-gear-two-letters.png │ │ │ ├── profile-show-contents.png │ │ │ └── settings-sync-profiles.png │ │ ├── refactoring │ │ │ ├── code-action-context-menu.png │ │ │ ├── refactoring-hero.png │ │ │ ├── rename.png │ │ │ └── ts-extract-local.gif │ │ ├── settings-sync │ │ │ ├── settings-sync-switch.png │ │ │ ├── sync-accounts.png │ │ │ ├── sync-backup-views.png │ │ │ ├── sync-configure.png │ │ │ ├── sync-enable-local-activity-view.png │ │ │ ├── sync-ignored-extensions.png │ │ │ ├── sync-ignored-settings.png │ │ │ ├── sync-machines-view.png │ │ │ ├── sync-merge-replace.png │ │ │ ├── sync-merges-view.png │ │ │ └── turn-on-sync.png │ │ ├── tasks │ │ │ ├── command-palette.png │ │ │ ├── configure-task-runner.png │ │ │ ├── configure-tasks.png │ │ │ ├── eslint-problem-matcher-selection.png │ │ │ ├── eslint-problem.png │ │ │ ├── eslint-starter.png │ │ │ ├── gulp-auto-detect.png │ │ │ ├── gulpautodetect.png │ │ │ ├── intellisense.png │ │ │ ├── problemmatcher.png │ │ │ ├── run-input-example.gif │ │ │ ├── tasks-array.png │ │ │ ├── tasks-command-palette.png │ │ │ ├── tasks-echoCommand.png │ │ │ ├── tasks-intellisense.png │ │ │ ├── tasks_hero.png │ │ │ └── typescript-build.png │ │ ├── userdefinedsnippets │ │ │ ├── ajax-snippet.gif │ │ │ ├── builtin-javascript-snippets.png │ │ │ ├── category-snippets.png │ │ │ ├── hide-from-intellisense.png │ │ │ ├── snippet-dropdown.png │ │ │ └── snippets_placeholder.png │ │ ├── vscode-web │ │ │ ├── allow-clipboard-access.png │ │ │ ├── chrome-omnibox-extension.png │ │ │ ├── extension-limit.png │ │ │ ├── python-extension-limit.png │ │ │ ├── remote-repositories.png │ │ │ └── status-indicator.png │ │ ├── whyvscode │ │ │ └── macwinlinux2.png │ │ ├── workspace-trust │ │ │ ├── disabled-extensions-link.png │ │ │ ├── extensions-support-untrusted.png │ │ │ ├── gear-manage-workspace-trust.png │ │ │ ├── php-limited-hover.png │ │ │ ├── requireTrustedWorkspace-settings.png │ │ │ ├── restricted-mode-banner.png │ │ │ ├── restricted-mode-debugging-dialog.png │ │ │ ├── restricted-mode-status-bar.png │ │ │ ├── restricted-mode-tasks-dialog.png │ │ │ ├── trust-parent-folder.png │ │ │ ├── trusted-folders-workspaces-list.png │ │ │ ├── untrusted-file-dialog.png │ │ │ ├── untrusted-folder-dialog.png │ │ │ ├── workspace-settings-link.png │ │ │ ├── workspace-trust-dialog.png │ │ │ ├── workspace-trust-editor.png │ │ │ ├── workspace-trust-install-extension.png │ │ │ └── workspaceUnsupported-extensions-view.png │ │ └── workspaces │ │ │ ├── multi-root-settings.png │ │ │ ├── multi-root-workspace.png │ │ │ ├── single-folder-settings.png │ │ │ ├── single-folder-workspace.png │ │ │ └── untitled-workspace.png │ ├── intellisense.md │ ├── multi-root-workspaces.md │ ├── portable.md │ ├── profiles.md │ ├── refactoring.md │ ├── settings-sync.md │ ├── tasks-appendix.md │ ├── tasks.md │ ├── userdefinedsnippets.md │ ├── variables-reference.md │ ├── vscode-web.md │ ├── whyvscode.md │ ├── workspace-trust.md │ └── workspaces.md ├── getstarted │ ├── images │ │ ├── introvideos │ │ │ ├── code-editing.png │ │ │ ├── codeediting-thumbnail.jpg │ │ │ ├── customize-settings.png │ │ │ ├── debugging.png │ │ │ ├── extensions.png │ │ │ ├── getting-started.png │ │ │ ├── opengraph_insiders.png │ │ │ ├── personalize-themes.png │ │ │ ├── productivity-tips.png │ │ │ └── version-control.png │ │ ├── keybinding │ │ │ ├── customization_keybindings.png │ │ │ ├── default-keyboard-shortcuts.png │ │ │ ├── filter-on-keys.png │ │ │ ├── key-binding-widget.png │ │ │ ├── keybindings-json.png │ │ │ ├── keyboard-shortcuts.gif │ │ │ ├── open-keyboard-shortcuts-json.png │ │ │ ├── render-key-binding.png │ │ │ ├── show-conflicts-menu.png │ │ │ ├── show-conflicts-result.png │ │ │ ├── start-debugging-when-clause.png │ │ │ └── user-keyboard-shortcuts.png │ │ ├── locales │ │ │ ├── German-language-pack.png │ │ │ ├── configure-language-command.png │ │ │ ├── installed-languages-list.png │ │ │ └── lang-pack-recommendation.png │ │ ├── settings │ │ │ ├── accounts-context-menu.png │ │ │ ├── activity-bar-hidden.png │ │ │ ├── activity-bar.png │ │ │ ├── clear-search-input-button.png │ │ │ ├── color-customization-example.png │ │ │ ├── cpp-extension-settings.png │ │ │ ├── edit-in-settings-json-link.png │ │ │ ├── hero.png │ │ │ ├── lang-based-settings-editor.png │ │ │ ├── lang-based-settings.png │ │ │ ├── lang-selection.png │ │ │ ├── modified-filter-settings.png │ │ │ ├── more-actions-context-menu.png │ │ │ ├── pref-config-lang-settings.png │ │ │ ├── python-feature-contributions.png │ │ │ ├── search-for-activity.png │ │ │ ├── settings-css-example.png │ │ │ ├── settings-edit.png │ │ │ ├── settings-editor-filters.png │ │ │ ├── settings-editor-workspace-tab.png │ │ │ ├── settings-groups.png │ │ │ ├── settings-json-in-editor.png │ │ │ ├── settings-json-intellisense.png │ │ │ ├── settings-json-under-vscode.png │ │ │ ├── settings-modified.png │ │ │ └── settings-search.png │ │ ├── telemetry │ │ │ ├── disable-telemetry.png │ │ │ ├── extension-recommendation-based-on.png │ │ │ ├── online-settings.png │ │ │ ├── open-telemetry-log.png │ │ │ └── output-log-telemetry.png │ │ ├── themes │ │ │ ├── built-in-themes.png │ │ │ ├── category-themes.png │ │ │ ├── colorthemes.png │ │ │ ├── disable-theme.png │ │ │ ├── file-icon-theme-dropdown.png │ │ │ ├── inspect-tm-scopes.png │ │ │ ├── no-semantic-highlighting.png │ │ │ ├── semantic-highlighting-scope-inspector.png │ │ │ ├── theme-activitybar.gif │ │ │ ├── themes_hero.gif │ │ │ ├── token_color_customization.png │ │ │ ├── token_color_customization_advanced.png │ │ │ ├── with-semantic-highlighting.png │ │ │ └── yocodetheme.png │ │ ├── tips-and-tricks │ │ │ ├── Errors_Warnings.gif │ │ │ ├── KeyboardReferenceSheet.png │ │ │ ├── KeyboardShortcuts.gif │ │ │ ├── OpenCommandPalatte.gif │ │ │ ├── PreviewFileIconThemes.gif │ │ │ ├── PreviewThemes.gif │ │ │ ├── QuickOpen.gif │ │ │ ├── add_cursor_current_selection.gif │ │ │ ├── add_cursor_current_selection_one_by_one.gif │ │ │ ├── change_syntax.gif │ │ │ ├── code_folding.gif │ │ │ ├── code_formatting.gif │ │ │ ├── column-select.gif │ │ │ ├── command_p.png │ │ │ ├── configure-debug.png │ │ │ ├── copy_line_down.gif │ │ │ ├── create_open_file.gif │ │ │ ├── debug_data_inspection.gif │ │ │ ├── diff_review_pane.png │ │ │ ├── dirty-write.png │ │ │ ├── editingevolved_gutter.png │ │ │ ├── editor-rulers.png │ │ │ ├── emmet_syntax.gif │ │ │ ├── find_all_references.gif │ │ │ ├── find_by_symbol.gif │ │ │ ├── font-ligatures-annotated.png │ │ │ ├── font-ligatures.png │ │ │ ├── getstarted_page.png │ │ │ ├── git_inline.png │ │ │ ├── git_side_by_side.png │ │ │ ├── git_stage_all.gif │ │ │ ├── go_to_symbol_in_workspace.png │ │ │ ├── goto_definition.gif │ │ │ ├── group_symbols_by_kind.png │ │ │ ├── integrated_terminal.png │ │ │ ├── intellisense.gif │ │ │ ├── interactive_playground.png │ │ │ ├── keyboard-references.png │ │ │ ├── keyboard-shortcuts.png │ │ │ ├── lang-based-settings.png │ │ │ ├── logpoint.png │ │ │ ├── markdown-preview-side-by-side.png │ │ │ ├── markdown-preview.png │ │ │ ├── mdiff-switch-to-inline.png │ │ │ ├── mgutter_icons.gif │ │ │ ├── move_line.gif │ │ │ ├── mp_copy_paste.png │ │ │ ├── msee-changes.gif │ │ │ ├── mstage-unstage.gif │ │ │ ├── mswitch-branch.gif │ │ │ ├── mswitch-to-inline.gif │ │ │ ├── multicursor.gif │ │ │ ├── mundo-last-commit.gif │ │ │ ├── navigate_editors.gif │ │ │ ├── navigate_history.gif │ │ │ ├── navigate_to_line.gif │ │ │ ├── node_debug.gif │ │ │ ├── outline-view.png │ │ │ ├── package_json_intellisense.gif │ │ │ ├── peek.gif │ │ │ ├── quick-open-command-dropdown.png │ │ │ ├── rename_symbol.gif │ │ │ ├── script_explorer.png │ │ │ ├── search_and_modify.png │ │ │ ├── show-popular-extensions.png │ │ │ ├── show-recommended-extensions.png │ │ │ ├── shrink_expand_selection.gif │ │ │ ├── source-control-icon.png │ │ │ ├── split_editor.gif │ │ │ ├── status_errors_warnings.png │ │ │ ├── switch_branches.gif │ │ │ ├── task_runner.gif │ │ │ ├── term-quick-open.png │ │ │ ├── toggle_side_bar.gif │ │ │ ├── transform-text-commands.png │ │ │ ├── trim_whitespace.gif │ │ │ ├── undo_last_commit.gif │ │ │ └── zen_mode.gif │ │ └── userinterface │ │ │ ├── activity-bar-context-menu.png │ │ │ ├── breadcrumbs.png │ │ │ ├── commands.png │ │ │ ├── explorer_menu.png │ │ │ ├── file-explorer-filter.png │ │ │ ├── grid-alt.gif │ │ │ ├── grid-dnd.gif │ │ │ ├── grid-empty.png │ │ │ ├── grid-layout-menu.png │ │ │ ├── grid-layout.gif │ │ │ ├── grid-open-editors.png │ │ │ ├── hero.png │ │ │ ├── markdown-outline-view.png │ │ │ ├── minimap.png │ │ │ ├── outline-view.png │ │ │ ├── preview-tab.png │ │ │ ├── quickopenhelp.png │ │ │ ├── sidebyside.png │ │ │ ├── tabs-editor-groups.png │ │ │ ├── tabs-hero.png │ │ │ ├── view-management.png │ │ │ ├── views.png │ │ │ └── workspace-settings.png │ ├── introvideos.md │ ├── keybindings.md │ ├── locales.md │ ├── settings.md │ ├── telemetry.md │ ├── themes.md │ ├── tips-and-tricks.md │ └── userinterface.md ├── introvideos │ ├── basics.md │ ├── codeediting.md │ ├── configure.md │ ├── customize.md │ ├── debugging.md │ ├── extend.md │ ├── images │ │ └── opengraph │ │ │ └── introvideos.png │ ├── productivity.md │ └── versioncontrol.md ├── java │ ├── extensions.md │ ├── images │ │ ├── azure │ │ │ └── azure-tools.png │ │ ├── extensions │ │ │ └── extensions.png │ │ ├── java-build │ │ │ ├── create-maven-project.png │ │ │ ├── debug-maven-plugin-goals.mp4 │ │ │ ├── gradle-auto-completion.mp4 │ │ │ ├── gradle-daemons.mp4 │ │ │ ├── gradle-dependencies.png │ │ │ ├── gradle-dependency-completion.mp4 │ │ │ ├── gradle-highlighting.png │ │ │ ├── gradle-outline.png │ │ │ ├── gradle-pinned-recent-tasks.mp4 │ │ │ ├── gradle-problems.png │ │ │ ├── gradle-tasks.mp4 │ │ │ ├── maven-add-dependency-2.mp4 │ │ │ ├── maven-add-dependency.mp4 │ │ │ ├── maven-archetype-command.mp4 │ │ │ ├── maven-archetype-folder.mp4 │ │ │ ├── maven-dependency-tree.mp4 │ │ │ ├── maven-effective-pom.mp4 │ │ │ ├── maven-explorer.png │ │ │ ├── maven-favorite-command.mp4 │ │ │ ├── maven-history.mp4 │ │ │ ├── maven-plugin-goal.mp4 │ │ │ ├── maven-pom-editing.mp4 │ │ │ ├── maven-resolve-unknown-type.mp4 │ │ │ └── maven-run.mp4 │ │ ├── java-debugging │ │ │ ├── conditional-bp.mp4 │ │ │ ├── data-breakpoint.png │ │ │ ├── expression-evaluation.mp4 │ │ │ ├── hcr.mp4 │ │ │ ├── java-codelens.png │ │ │ ├── launch-configuration.mp4 │ │ │ ├── launch-in-terminal.mp4 │ │ │ ├── logpoints.mp4 │ │ │ ├── run-debug-button.png │ │ │ ├── run-menu.png │ │ │ ├── single-file-debugging.mp4 │ │ │ └── step-filter.mp4 │ │ ├── java-editing │ │ │ ├── call-hierarchy.gif │ │ │ ├── call-hierarchy.png │ │ │ ├── code-editing.mp4 │ │ │ ├── code-snippet.png │ │ │ ├── create-new-file.mp4 │ │ │ ├── folding-range.mp4 │ │ │ ├── goto-super-implementation.mp4 │ │ │ ├── goto-super.png │ │ │ ├── intellicode.mp4 │ │ │ ├── quick-fix.mp4 │ │ │ ├── search-in-file.mp4 │ │ │ ├── search-in-workspace.mp4 │ │ │ ├── semantic-highlighting.png │ │ │ ├── smart-selection.mp4 │ │ │ ├── spring-navigation.png │ │ │ └── type-hierarchy.mp4 │ │ ├── java-gui │ │ │ ├── create-javafx.png │ │ │ ├── enable-awt.mp4 │ │ │ └── run-javafx.mp4 │ │ ├── java-linting │ │ │ ├── checkstyle-batch.mp4 │ │ │ ├── checkstyle-configuration.mp4 │ │ │ ├── checkstyle-live-linting.mp4 │ │ │ ├── checkstyle.mp4 │ │ │ ├── formatting-editing.mp4 │ │ │ ├── formatting-preview.mp4 │ │ │ ├── formatting-undoredo.mp4 │ │ │ ├── formatting.mp4 │ │ │ ├── quick_fix.png │ │ │ ├── set_config.png │ │ │ ├── sonarlint-description.mp4 │ │ │ ├── sonarlint-rules.mp4 │ │ │ └── sonarlint.mp4 │ │ ├── java-project │ │ │ ├── add-maven-dependency.png │ │ │ ├── configure-classpath.png │ │ │ ├── configure-project-runtime.png │ │ │ ├── context-menu.png │ │ │ ├── download-jdk.png │ │ │ ├── exportjar.gif │ │ │ ├── inline-button.png │ │ │ ├── java.build.status.mp4 │ │ │ ├── manage-referenced-libraries.png │ │ │ ├── overflow-button.png │ │ │ ├── projectmanager-createproject.png │ │ │ ├── projectmanager-overview.png │ │ │ └── switch-to-standard.gif │ │ ├── java-refactoring │ │ │ ├── advancedgettersetter.mp4 │ │ │ ├── assign-to-field.mp4 │ │ │ ├── convert-field.mp4 │ │ │ ├── convert-for-loop.mp4 │ │ │ ├── convert-static-imports.mp4 │ │ │ ├── create-non-exist-package.mp4 │ │ │ ├── extract-field.mp4 │ │ │ ├── extract-local-variable.mp4 │ │ │ ├── extract-rename.mp4 │ │ │ ├── fix-non-access-reference.mp4 │ │ │ ├── generate-constructor.mp4 │ │ │ ├── generate-delegate-methods.mp4 │ │ │ ├── generate-hashcode-equals.mp4 │ │ │ ├── generate-tostring.mp4 │ │ │ ├── getter-setter.mp4 │ │ │ ├── inline.mp4 │ │ │ ├── invert-variable.mp4 │ │ │ ├── move-class.mp4 │ │ │ ├── move-inner-type.mp4 │ │ │ ├── move-static-method.mp4 │ │ │ ├── override-implement-methods.mp4 │ │ │ ├── refactor.mp4 │ │ │ ├── refactoring_menu.png │ │ │ ├── rename-explorer.gif │ │ │ ├── rename.mp4 │ │ │ └── resolve-ambiguous-imports.mp4 │ │ ├── java-spring-boot │ │ │ ├── spring-dashboard.mp4 │ │ │ ├── spring-initializr-add-starters.mp4 │ │ │ ├── spring-initializr.mp4 │ │ │ └── spring-live-info.mp4 │ │ ├── java-spring-cloud │ │ │ ├── access-public-endpoint.png │ │ │ ├── create-app.png │ │ │ ├── create-service.png │ │ │ ├── deploy-app.png │ │ │ ├── log-output.png │ │ │ ├── scale.png │ │ │ ├── signinasa.png │ │ │ └── start-log-streaming.png │ │ ├── java-testing │ │ │ ├── command_palette.png │ │ │ ├── configuration.png │ │ │ ├── enable-tests.mp4 │ │ │ ├── generate-tests-from-main.mp4 │ │ │ ├── generate-tests-from-test.mp4 │ │ │ ├── gutter-icon.mp4 │ │ │ ├── settings.png │ │ │ ├── test-explorer.mp4 │ │ │ ├── test-navigation.mp4 │ │ │ └── test-result.mp4 │ │ ├── java-tomcat-jetty │ │ │ └── server-connector.mp4 │ │ ├── java-tutorial │ │ │ ├── JavaHelloWorld.Project.mp4 │ │ │ ├── JavaHelloWorld.Standalone.mp4 │ │ │ ├── edit-code.mp4 │ │ │ ├── getting-started.png │ │ │ ├── invalid-jdk.png │ │ │ └── run-debug.mp4 │ │ └── java-webapp │ │ │ ├── app-service-view.png │ │ │ ├── clone-repository.gif │ │ │ ├── create-webapp.png │ │ │ ├── debugging-status-bar.png │ │ │ ├── debugging.png │ │ │ ├── deploy-success.png │ │ │ ├── deploy-webapp.png │ │ │ ├── greeting-cloud.png │ │ │ ├── greeting-from-spring.png │ │ │ ├── greeting.png │ │ │ ├── install-extensions.gif │ │ │ ├── login.png │ │ │ ├── overview.png │ │ │ ├── remove-auth.png │ │ │ ├── restart-application.png │ │ │ └── run-spring-boot.gif │ ├── java-build.md │ ├── java-debugging.md │ ├── java-editing.md │ ├── java-faq.md │ ├── java-gui.md │ ├── java-linting.md │ ├── java-on-azure.md │ ├── java-project.md │ ├── java-refactoring.md │ ├── java-spring-apps.md │ ├── java-spring-boot.md │ ├── java-testing.md │ ├── java-tomcat-jetty.md │ ├── java-tutorial.md │ └── java-webapp.md ├── languages │ ├── cpp.md │ ├── csharp.md │ ├── css.md │ ├── dotnet.md │ ├── go.md │ ├── html.md │ ├── identifiers.md │ ├── images │ │ ├── Markdown │ │ │ ├── double-click-preview-switch.gif │ │ │ ├── drop-link.gif │ │ │ ├── find-all-references.png │ │ │ ├── go-to-symbol-in-workspace.png │ │ │ ├── go-to-symbol.png │ │ │ ├── link-validation.png │ │ │ ├── locked-preview-title.png │ │ │ ├── markdown-outline-view.png │ │ │ ├── md-dynamic-preview.gif │ │ │ ├── md-workspace-header-suggestion-insert.png │ │ │ ├── md-workspace-header-suggestion.png │ │ │ ├── path-completions-header.png │ │ │ ├── path-completions.png │ │ │ ├── preview-scroll-sync.gif │ │ │ ├── preview-selection-marker.png │ │ │ ├── preview.png │ │ │ ├── profile-template-dropdown.png │ │ │ ├── rename-header.gif │ │ │ ├── security-alert.png │ │ │ ├── security-selector.png │ │ │ ├── smart-select.gif │ │ │ └── taskwatching.png │ │ ├── cpp │ │ │ ├── choose-x86-64.png │ │ │ ├── condbreak.png │ │ │ ├── copilot-extension.png │ │ │ ├── cpp-extension.png │ │ │ ├── cpp-hero.png │ │ │ ├── cpp-lightbulb.png │ │ │ ├── cpp-toc.png │ │ │ ├── filesearch.png │ │ │ ├── gcc-compiler-list.png │ │ │ ├── gpp-build-task-msys64.png │ │ │ ├── hello-world-cpp.png │ │ │ ├── hello-world-exe.png │ │ │ ├── languages_cpp.png │ │ │ ├── launchjson.png │ │ │ ├── msg-intellisense.png │ │ │ ├── new-file.png │ │ │ ├── parsing.png │ │ │ ├── peekdefn.png │ │ │ ├── run-build-task.png │ │ │ ├── run-hello-world.png │ │ │ ├── search-cpp-extension.png │ │ │ ├── select-environment.png │ │ │ ├── start-build-output.png │ │ │ ├── successful-build-output.png │ │ │ ├── terminal-output.png │ │ │ ├── threads.png │ │ │ ├── welcome-mingw-w64.png │ │ │ └── workspacesearch.png │ │ ├── csharp │ │ │ ├── c_sharp_hero.png │ │ │ ├── codelens.png │ │ │ ├── copilot-extension.png │ │ │ ├── editingevolved.png │ │ │ ├── intellisense.png │ │ │ ├── languages_csharp.png │ │ │ ├── lightbulb.png │ │ │ ├── peek.png │ │ │ ├── selectproject.png │ │ │ ├── snippet.png │ │ │ └── symbols.png │ │ ├── css │ │ │ ├── color.png │ │ │ ├── css-color-picker.png │ │ │ ├── hover.png │ │ │ ├── intellisense.png │ │ │ └── taskwatching.png │ │ ├── go │ │ │ ├── completion-signature-help.gif │ │ │ ├── go-extension.png │ │ │ └── testcommands.png │ │ ├── html │ │ │ ├── auto-close1.gif │ │ │ ├── auto-close2.gif │ │ │ ├── color-picker-html.png │ │ │ ├── emmetsnippet.gif │ │ │ ├── html-mirror-cursor.gif │ │ │ ├── htmlhover.png │ │ │ └── htmlintellisense.png │ │ ├── java │ │ │ ├── Intellisense.mp4 │ │ │ ├── beginner-tips.png │ │ │ ├── code-snippet.png │ │ │ ├── copilot-extension.png │ │ │ ├── package-viewer.mp4 │ │ │ ├── resolve-main.mp4 │ │ │ └── testng.mp4 │ │ ├── javascript │ │ │ ├── auto-import-after.png │ │ │ ├── auto-import-before.png │ │ │ ├── checkjs-example.gif │ │ │ ├── code-suggestions-convert-async-placeholder.png │ │ │ ├── code-suggestions-convert-async.mp4 │ │ │ ├── complex_jsconfig_setup.png │ │ │ ├── copilot-extension.png │ │ │ ├── debug_data_inspection.gif │ │ │ ├── hover.png │ │ │ ├── inlay-parameter-types.png │ │ │ ├── inlay-parameters.png │ │ │ ├── inlay-property-types.png │ │ │ ├── inlay-return-type.png │ │ │ ├── inlay-var-types.png │ │ │ ├── intellisense-placeholder.png │ │ │ ├── intellisense.mp4 │ │ │ ├── js-suggest.png │ │ │ ├── jsconfig_setup.png │ │ │ ├── jsdoc-autofill-placeholder.png │ │ │ ├── jsdoc-autofill.mp4 │ │ │ ├── jsx.png │ │ │ ├── organize-imports-placeholder.png │ │ │ ├── organize-imports.mp4 │ │ │ ├── overview.png │ │ │ ├── refactorings.png │ │ │ ├── references-codelens-peek.png │ │ │ ├── references-codelens.png │ │ │ ├── rename.png │ │ │ ├── signature-help.png │ │ │ ├── snippets-placeholder.png │ │ │ ├── snippets.mp4 │ │ │ ├── tag-complete-placeholder.png │ │ │ ├── tag-complete.mp4 │ │ │ ├── unreachable.png │ │ │ ├── update-imports-placeholder.png │ │ │ └── update-imports.mp4 │ │ ├── json │ │ │ ├── defaultSnippets.png │ │ │ ├── gotosymbol.png │ │ │ ├── hoverandtoggle.png │ │ │ ├── intellisense.png │ │ │ └── json_hero.png │ │ ├── julia │ │ │ ├── code-completion.gif │ │ │ ├── debug1.png │ │ │ ├── debug2.png │ │ │ ├── debug3.png │ │ │ ├── debug4.png │ │ │ ├── julia-extension-marketplace.png │ │ │ ├── julia-tab1.png │ │ │ ├── julia-tab2.png │ │ │ ├── julia-tab3.png │ │ │ └── overview.png │ │ ├── overview │ │ │ ├── copilot-extension.png │ │ │ ├── language-id-intellisense.png │ │ │ ├── language-identifiers.png │ │ │ └── languageselect.png │ │ ├── php │ │ │ ├── category-php.png │ │ │ ├── php-settings.png │ │ │ └── php-snippets.png │ │ ├── polyglot │ │ │ ├── SQLJavaScript.mp4 │ │ │ ├── SQL_connection_example.png │ │ │ ├── kernel_picker.png │ │ │ ├── language_picker.png │ │ │ ├── languages.png │ │ │ ├── polyglot_ext.png │ │ │ ├── polyglot_nb_example.png │ │ │ └── polyglot_new_nb.png │ │ ├── powershell │ │ │ ├── PowerShellExtension.png │ │ │ ├── codeGear.png │ │ │ ├── codeLensFuncRef.gif │ │ │ ├── codeLensPesterSymbol.gif │ │ │ ├── cpPlasterCommand.png │ │ │ ├── pesterCodeLens.png │ │ │ ├── pssaExtensionSetting.png │ │ │ ├── pwshExamples.png │ │ │ └── pwshExtensionIcon.png │ │ ├── python │ │ │ ├── copilot-extension.png │ │ │ ├── interpreters-list.png │ │ │ ├── jupyter.png │ │ │ ├── native-jupyter.png │ │ │ ├── no-interpreter-selected-statusbar.png │ │ │ ├── profile-template-dropdown.png │ │ │ ├── python-debugging.mp4 │ │ │ ├── python-editing.gif │ │ │ ├── python-linting.mp4 │ │ │ ├── python-snippets-placeholder.png │ │ │ ├── run-python-file-in-terminal-button.png │ │ │ ├── select-interpreters-command.png │ │ │ └── selected-interpreter-status-bar.png │ │ ├── r │ │ │ ├── completion.gif │ │ │ ├── linting.gif │ │ │ ├── overview.png │ │ │ └── workspace-viewer.gif │ │ ├── ruby │ │ │ ├── ruby_lsp_breakpoint.png │ │ │ ├── ruby_lsp_debugging_session.png │ │ │ ├── ruby_lsp_extension.png │ │ │ ├── ruby_lsp_extensions_view.png │ │ │ ├── ruby_lsp_inlay_hints.png │ │ │ ├── ruby_lsp_linting.png │ │ │ ├── ruby_lsp_quickfix.png │ │ │ ├── ruby_lsp_refactor.png │ │ │ ├── ruby_lsp_semantic_highlighting.png │ │ │ ├── ruby_lsp_status_center.png │ │ │ └── ruby_lsp_symbols.png │ │ ├── rust │ │ │ ├── add-configuration.png │ │ │ ├── allow-breakpoints-everywhere.png │ │ │ ├── cargo-build.png │ │ │ ├── cargo-run.png │ │ │ ├── code-completions.png │ │ │ ├── debug-hello-world.png │ │ │ ├── hover.png │ │ │ ├── inlay-hints.png │ │ │ ├── install-debugging-extensions.png │ │ │ ├── linter-warning.png │ │ │ ├── mutable-underline.png │ │ │ ├── quick-fixes.png │ │ │ ├── rust-analyzer-extension.png │ │ │ ├── rust-analyzer-extensions-view.png │ │ │ ├── rust-analyzer-status-bar.png │ │ │ └── set-breakpoint.png │ │ ├── tsql │ │ │ ├── execute.gif │ │ │ ├── install-mssql.png │ │ │ ├── intellisense.gif │ │ │ ├── linting.gif │ │ │ ├── peekdefinition.gif │ │ │ ├── save.gif │ │ │ └── snippets.gif │ │ └── typescript │ │ │ ├── Languages_typescript.png │ │ │ ├── compiled-hello-world.png │ │ │ ├── create-new-file.png │ │ │ ├── hover.png │ │ │ ├── overview.png │ │ │ ├── refactorings.png │ │ │ ├── rename.png │ │ │ ├── run-hello-world.png │ │ │ ├── signature-help.png │ │ │ ├── ts-error-inline.png │ │ │ ├── ts-error.png │ │ │ ├── ts-intellisense.png │ │ │ └── ts-snippets.png │ ├── java.md │ ├── javascript.md │ ├── jsconfig.md │ ├── json.md │ ├── julia.md │ ├── markdown.md │ ├── overview.md │ ├── php.md │ ├── polyglot.md │ ├── powershell.md │ ├── python.md │ ├── r.md │ ├── ruby.md │ ├── rust.md │ ├── tsql.md │ └── typescript.md ├── nodejs │ ├── angular-tutorial.md │ ├── browser-debugging.md │ ├── debugging-recipes.md │ ├── emberjs-tutorial.md │ ├── extensions.md │ ├── images │ │ ├── angular │ │ │ ├── Welcome-to-app.png │ │ │ ├── angular-extensions.png │ │ │ ├── bracket-matching.png │ │ │ ├── breakpoint.png │ │ │ ├── debug-variable.png │ │ │ ├── decorator-hover.png │ │ │ ├── hello-world.png │ │ │ ├── hit-breakpoint.png │ │ │ ├── intellisense.png │ │ │ ├── parameter-help.png │ │ │ ├── peek-definition.png │ │ │ ├── profile-template-dropdown.png │ │ │ └── suggestions.png │ │ ├── azure │ │ │ └── azure-tools.png │ │ ├── browser-debugging │ │ │ └── debug-open-link.gif │ │ ├── emberjs │ │ │ ├── bracket-matching.png │ │ │ ├── ember-extensions.png │ │ │ ├── intellisense.png │ │ │ ├── parameter-help.png │ │ │ ├── peek-definition.png │ │ │ ├── suggestions.png │ │ │ ├── tomster-logo.png │ │ │ └── welcome-page.png │ │ ├── extensions │ │ │ ├── chrome_debugger.png │ │ │ ├── document_this.gif │ │ │ ├── eslint.gif │ │ │ ├── javascript_snippets.png │ │ │ ├── npm_intellisense.gif │ │ │ └── sonarlint.gif │ │ ├── nodejs-debugging │ │ │ ├── add-configuration-button.png │ │ │ ├── auto-attach-cluster.gif │ │ │ ├── auto-attach.gif │ │ │ ├── breakpointstoolbar.png │ │ │ ├── breakpointsvalidation.png │ │ │ ├── conditional-breakpoint.gif │ │ │ ├── create-debug-terminal.png │ │ │ ├── dimmed-callstack.png │ │ │ ├── hit-count-breakpoint.gif │ │ │ ├── launch-snippets.png │ │ │ ├── loaded-scripts-explorer.gif │ │ │ ├── loaded-scripts.gif │ │ │ ├── logpoint-breakpoint.gif │ │ │ ├── process-picker.png │ │ │ └── restartFrame.gif │ │ ├── nodejs-deployment │ │ │ └── azure-app-service-tools.png │ │ ├── nodejs │ │ │ ├── app-js-breakpoint-set.png │ │ │ ├── app-js-file-created.png │ │ │ ├── consoleintellisense.png │ │ │ ├── debugicon.png │ │ │ ├── debugsession.png │ │ │ ├── express.png │ │ │ ├── hello-world-debugging.png │ │ │ ├── hello-world-launch-json.png │ │ │ ├── hover.png │ │ │ ├── integrated-terminal.png │ │ │ ├── intellisense.png │ │ │ ├── launchjson.png │ │ │ ├── moduleintellisense.png │ │ │ ├── runtimes_node.png │ │ │ ├── stringintellisense.png │ │ │ ├── toolbar-new-file.png │ │ │ └── warning.png │ │ ├── profiling │ │ │ ├── cpu-profile-nice.png │ │ │ ├── cpu-profile-noise.png │ │ │ ├── heap-profile.png │ │ │ ├── profile-table.png │ │ │ ├── take-profile.png │ │ │ └── toggle-button.png │ │ ├── reactjs │ │ │ ├── app-is-unused.png │ │ │ ├── bracket-matching.png │ │ │ ├── breakpoint.png │ │ │ ├── create-eslintrc.png │ │ │ ├── debug-config.png │ │ │ ├── debug-variable.png │ │ │ ├── eslint-extension.png │ │ │ ├── eslintrc-intellisense.png │ │ │ ├── extra-semi-error.png │ │ │ ├── hello-world.png │ │ │ ├── hit-breakpoint.png │ │ │ ├── intellisense.png │ │ │ ├── js-error.png │ │ │ ├── jsx-intellisense.png │ │ │ ├── markdown-preview.png │ │ │ ├── parameter-help.png │ │ │ ├── peek-definition.png │ │ │ ├── suggestions.png │ │ │ └── welcome-to-react.png │ │ ├── recipes │ │ │ ├── browsers.png │ │ │ ├── electron.png │ │ │ ├── mern.png │ │ │ ├── node-typescript-docker.png │ │ │ └── nodejs.png │ │ ├── vuejs │ │ │ ├── breakpoint.png │ │ │ ├── hello-world.png │ │ │ ├── javascript-suggestions.png │ │ │ ├── peek-definition.png │ │ │ ├── suggestions.png │ │ │ ├── vetur-extension-recommendation.png │ │ │ ├── vetur-extension.png │ │ │ ├── vue-extension-pack.png │ │ │ ├── vue-extensions.png │ │ │ ├── vue-language-features.png │ │ │ ├── vue-linting.png │ │ │ └── welcome-to-vue.png │ │ └── working-with-javascript │ │ │ ├── checkjs-example.gif │ │ │ ├── complex_jsconfig_setup.png │ │ │ ├── disable-TS-language.png │ │ │ ├── jsconfig_setup.png │ │ │ ├── lodash-typings.png │ │ │ └── partial-mode-status-item.png │ ├── nodejs-debugging.md │ ├── nodejs-deployment.md │ ├── nodejs-tutorial.md │ ├── profiling.md │ ├── reactjs-tutorial.md │ ├── vuejs-tutorial.md │ └── working-with-javascript.md ├── other │ ├── images │ │ ├── office │ │ │ ├── appcatalog.png │ │ │ ├── exceladdin.png │ │ │ ├── mailaddin.png │ │ │ ├── mailaddin01.png │ │ │ ├── mailaddin02.png │ │ │ ├── o365spadmin.png │ │ │ ├── office-add-in-manifest.png │ │ │ ├── officeaddinoverview.png │ │ │ ├── owaaddaddin.png │ │ │ ├── owamanageaddins.png │ │ │ ├── runlocally.png │ │ │ └── yoofficemanifest.png │ │ └── unity │ │ │ ├── Unity_Preferences_External_Script_Editor.gif │ │ │ ├── filteredfiles.png │ │ │ ├── omnisharp.png │ │ │ ├── peekreferences.png │ │ │ ├── selectsln.png │ │ │ ├── unfilteredfiles.png │ │ │ └── wow.gif │ ├── office.md │ └── unity.md ├── python │ ├── data-science.md │ ├── debugging.md │ ├── editing.md │ ├── environments.md │ ├── images │ │ ├── azure │ │ │ └── azure-tools.png │ │ ├── create-containers │ │ │ ├── image-in-acr.png │ │ │ ├── image-list.png │ │ │ ├── manage-images.png │ │ │ ├── registries.png │ │ │ └── system-prune-command.png │ │ ├── debugging │ │ │ ├── add-configuration.png │ │ │ ├── added-configuration.png │ │ │ ├── configuration-json.png │ │ │ ├── debug-auto-config.png │ │ │ ├── debug-button-editor.png │ │ │ ├── debug-configurations.png │ │ │ ├── debug-icon.png │ │ │ ├── debug-run.png │ │ │ ├── debug-settings-warning-icon.png │ │ │ ├── debug-settings.png │ │ │ ├── debug-start-button.png │ │ │ ├── debug-start.png │ │ │ ├── debug-status-bar.png │ │ │ ├── debug-troubleshooting-wrong-path.png │ │ │ ├── debugGAE.gif │ │ │ ├── remote-debug-toolbar.png │ │ │ └── select-configuration.png │ │ ├── django-tutorial │ │ │ ├── app-in-browser-01.png │ │ │ ├── app-with-message-list.png │ │ │ ├── autocomplete-for-code-snippet.png │ │ │ ├── code-snippet-inserted.png │ │ │ ├── debug-breakpoint-set.png │ │ │ ├── debug-continue-arrow.png │ │ │ ├── debug-local-variables.png │ │ │ ├── debug-panel-initial-view.png │ │ │ ├── debug-program-paused.png │ │ │ ├── debug-run-result.png │ │ │ ├── debug-status-bar.png │ │ │ ├── default-admin-interface.png │ │ │ ├── django-empty-project-success.png │ │ │ ├── django-hello-app-success.png │ │ │ ├── full-app.png │ │ │ ├── login-prompt.png │ │ │ ├── message-logging-page.png │ │ │ ├── peek-definition.png │ │ │ ├── template-breakpoints.png │ │ │ └── template-debugger.png │ │ ├── editing │ │ │ ├── copilot-extension.png │ │ │ ├── hello-world.gif │ │ │ ├── packageAbbreviations.gif │ │ │ ├── python-editing.gif │ │ │ ├── quickFix.gif │ │ │ ├── refactorExtractMethod.gif │ │ │ ├── refactorExtractVar.gif │ │ │ ├── refactorRenameModule.gif │ │ │ └── sortImports.gif │ │ ├── environments │ │ │ ├── conda-environment-refresh.png │ │ │ ├── conda_environment_python_versions.png │ │ │ ├── create_environment_dropdown.png │ │ │ ├── create_environment_prompt_status.png │ │ │ ├── enter-interpreter-path.png │ │ │ ├── enter-or-find-interpreter.png │ │ │ ├── interpreters-list.png │ │ │ ├── no-interpreter-selected-statusbar.png │ │ │ ├── python-environment-prompt.png │ │ │ ├── select-interpreters-command.png │ │ │ └── selected-interpreter-status-bar.png │ │ ├── flask-tutorial │ │ │ ├── app-in-browser-01.png │ │ │ ├── autocomplete-for-code-snippet.png │ │ │ ├── code-snippet-inserted.png │ │ │ ├── command-palette.png │ │ │ ├── debug-breakpoint-set.png │ │ │ ├── debug-continue-arrow.png │ │ │ ├── debug-local-variables.png │ │ │ ├── debug-program-paused.png │ │ │ ├── debug-run-result.png │ │ │ ├── debug-select-configuration.png │ │ │ ├── debug-status-bar.png │ │ │ ├── debug-toolbar.png │ │ │ ├── full-app.png │ │ │ ├── new-file-icon.png │ │ │ ├── peek-definition.png │ │ │ ├── project-structure.png │ │ │ └── reload-window-command.png │ │ ├── jupyter │ │ │ ├── code-cells-01.png │ │ │ ├── code-cells-02.png │ │ │ ├── enter-url-auth-token.png │ │ │ ├── interactive-window-intellisense.gif │ │ │ ├── jupyter-data-viewer.png │ │ │ ├── jupyter-notebook.png │ │ │ ├── jupyter-running-remotely.png │ │ │ ├── jupyter-variable-explorer.png │ │ │ ├── live-share-and-interactive.gif │ │ │ ├── local-remote-connections.png │ │ │ ├── native-toolbar-convert.png │ │ │ └── plot-viewer.gif │ │ ├── linting │ │ │ ├── enable-linting-dropdown.png │ │ │ ├── install-linter-message.png │ │ │ ├── lint-messages.png │ │ │ └── linting.png │ │ ├── shared │ │ │ ├── command-palette.png │ │ │ ├── debug-panel-initial-view.png │ │ │ ├── debug-toolbar.png │ │ │ ├── environment-in-status-bar.png │ │ │ └── select-virtual-environment.png │ │ ├── testing │ │ │ ├── commands.png │ │ │ ├── debug-test-in-explorer.png │ │ │ ├── install-framework.png │ │ │ ├── pytest-annotation-code-action.png │ │ │ ├── pytest-fixture-autocomplete.png │ │ │ ├── pytest-inferred-parametrized-argument.png │ │ │ ├── python-test-log-output.png │ │ │ ├── run-tests-gutter.png │ │ │ ├── test-discovery-error.png │ │ │ ├── test-explorer-no-tests.png │ │ │ ├── test-explorer-run-all-tests.png │ │ │ ├── test-explorer-run-scoped-tests.png │ │ │ ├── test-explorer.png │ │ │ ├── test-failure-peek-view.png │ │ │ └── test-results.png │ │ ├── tutorial │ │ │ ├── breakpoint-set.png │ │ │ ├── debug-configurations.png │ │ │ ├── debug-external-terminal.png │ │ │ ├── debug-icon.png │ │ │ ├── debug-python-file-in-terminal-button.png │ │ │ ├── debug-settings.png │ │ │ ├── debug-step-01.png │ │ │ ├── debug-step-02.png │ │ │ ├── debug-step-03.png │ │ │ ├── debug-toolbar.png │ │ │ ├── hello-py-file-created.png │ │ │ ├── integrated-terminal.png │ │ │ ├── intellisense01.png │ │ │ ├── intellisense02.png │ │ │ ├── interpreter-venv.png │ │ │ ├── interpreter.png │ │ │ ├── output-in-terminal.png │ │ │ ├── plot-output.png │ │ │ ├── python-extension-marketplace.png │ │ │ ├── run-python-file-in-terminal-button.png │ │ │ ├── run-python-file-in-terminal.png │ │ │ ├── social.png │ │ │ ├── toolbar-new-file.png │ │ │ ├── toolbar-new-folder.png │ │ │ └── virtual-env-dialog.png │ │ └── web │ │ │ ├── debug.png │ │ │ ├── execution-local-files.png │ │ │ └── repl.png │ ├── jupyter-support-py.md │ ├── linting.md │ ├── python-on-azure.md │ ├── python-tutorial.md │ ├── python-web.md │ ├── settings-reference.md │ ├── testing.md │ ├── tutorial-create-containers.md │ ├── tutorial-django.md │ └── tutorial-flask.md ├── remote │ ├── codespaces.md │ ├── dev-containers.md │ ├── faq.md │ ├── images │ │ ├── codespaces │ │ │ ├── PWA-edge-install.png │ │ │ ├── allow-clipboard-access.png │ │ │ ├── allow-new-tab.png │ │ │ └── github-codespaces-extension.png │ │ ├── common │ │ │ ├── local-installed-extensions.png │ │ │ └── restore-forwarded-ports.png │ │ ├── faq │ │ │ └── feature-contributions.png │ │ ├── remote-overview │ │ │ └── architecture.png │ │ ├── remote-tutorials │ │ │ └── remote-extension-pack.png │ │ ├── ssh-tutorial │ │ │ ├── add-ssh-public-key.png │ │ │ ├── check-uname.png │ │ │ ├── create-vm.png │ │ │ ├── debug-view.png │ │ │ ├── enter-port.png │ │ │ ├── express-completions.png │ │ │ ├── express-hover.png │ │ │ ├── express.png │ │ │ ├── hello-world-browser.png │ │ │ ├── init-vs-code-server.png │ │ │ ├── name-port.png │ │ │ ├── remote-commands-simple.png │ │ │ ├── remote-on-activity-bar.png │ │ │ ├── remote-open-folder.png │ │ │ ├── remote-ssh-commands.png │ │ │ ├── remote-ssh-extension.png │ │ │ ├── remote-status-bar.png │ │ │ ├── set-breakpoint.png │ │ │ ├── set-user-host.png │ │ │ ├── ssh-keygen.png │ │ │ ├── ssh-status-bar.png │ │ │ ├── vm-auto-shutdown.png │ │ │ ├── vm-instance-details.png │ │ │ ├── vm-nrms-rules.png │ │ │ └── vm-public-ip-address.png │ │ ├── ssh │ │ │ ├── add-new-port.png │ │ │ ├── architecture-ssh.png │ │ │ ├── change-local-port.png │ │ │ ├── code-command-in-terminal.png │ │ │ ├── forward-port-ssh.png │ │ │ ├── install-all-extn-ssh.png │ │ │ ├── ssh-command-input.png │ │ │ ├── ssh-disabled-extensions.png │ │ │ ├── ssh-explorer-add-new.png │ │ │ ├── ssh-explorer-connect.png │ │ │ ├── ssh-explorer-open-folder.png │ │ │ ├── ssh-host-input.png │ │ │ ├── ssh-installed-remote-indicator.png │ │ │ ├── ssh-listen-on-socket.png │ │ │ ├── ssh-open-folder.png │ │ │ ├── ssh-select-platform.png │ │ │ ├── ssh-settings.png │ │ │ ├── ssh-statusbar.png │ │ │ ├── ssh-use-local-server.png │ │ │ └── ssh-user@box.png │ │ ├── troubleshooting │ │ │ ├── architecture.png │ │ │ └── wsl-log.png │ │ ├── tunnels │ │ │ ├── tunnel-access.png │ │ │ ├── tunneling-download.png │ │ │ ├── tunneling-enabled.png │ │ │ └── tunneling-remote-explorer.png │ │ ├── vscode-server │ │ │ ├── cli-auth.png │ │ │ ├── remote-indicator-server.png │ │ │ ├── remote-servers.png │ │ │ ├── server-arch-latest.png │ │ │ ├── server-connected.png │ │ │ ├── server-name.png │ │ │ └── tunnel-help.png │ │ ├── wsl-tutorial │ │ │ ├── debug-view.png │ │ │ ├── install-ubuntu.png │ │ │ ├── installing-vscode-server.png │ │ │ ├── launch-code.png │ │ │ ├── linux-terminal.png │ │ │ ├── new-terminal-in-wsl.png │ │ │ ├── no-python-on-windows.png │ │ │ ├── open-folder.png │ │ │ ├── powershell-output.png │ │ │ ├── pylint-error.png │ │ │ ├── pylint-not-installed.png │ │ │ ├── python-extension-recommendation.png │ │ │ ├── python-intellisense.png │ │ │ ├── remote-status-bar.png │ │ │ ├── remote-wsl-extension.png │ │ │ ├── select-debug-config.png │ │ │ ├── select-distro.png │ │ │ ├── set-breakpoint.png │ │ │ ├── show-linux-path.png │ │ │ ├── windows-features.png │ │ │ ├── wsl$-mount.png │ │ │ ├── wsl-check.png │ │ │ ├── wsl-commands.png │ │ │ ├── wsl-installed-extensions.png │ │ │ └── wsl-status-bar.png │ │ └── wsl │ │ │ ├── architecture-wsl.png │ │ │ ├── code-command-in-terminal.png │ │ │ ├── dev-container-progress.png │ │ │ ├── install-all-extn-wsl.png │ │ │ ├── select-dev-container-def.png │ │ │ ├── wsl-disabled-extensions.png │ │ │ ├── wsl-installed-remote-indicator.png │ │ │ ├── wsl-local-installed-extensions.png │ │ │ ├── wsl-starting-notification.png │ │ │ └── wsl-statusbar-indicator.png │ ├── linux.md │ ├── remote-overview.md │ ├── ssh-tutorial.md │ ├── ssh.md │ ├── troubleshooting.md │ ├── tunnels.md │ ├── vscode-server.md │ ├── wsl-tutorial.md │ └── wsl.md ├── setup │ ├── additional-components.md │ ├── enterprise.md │ ├── images │ │ ├── linux │ │ │ └── snap-store.png │ │ ├── mac │ │ │ ├── arm64-insiders.png │ │ │ ├── open-anyway.png │ │ │ ├── shell-command.png │ │ │ └── touchbar.gif │ │ ├── network │ │ │ └── proxy.png │ │ ├── quicksetup │ │ │ └── QuickSetup.png │ │ └── raspberry-pi-os │ │ │ ├── RPi-Logo-Landscape-Reg-SCREEN.png │ │ │ └── vscode-under-programming.jpg │ ├── linux.md │ ├── mac.md │ ├── network.md │ ├── raspberry-pi.md │ ├── setup-overview.md │ ├── uninstall.md │ └── windows.md ├── sourcecontrol │ ├── faq.md │ ├── github.md │ ├── images │ │ ├── github │ │ │ ├── auth-prompt.png │ │ │ ├── branch-indicator-status-bar.png │ │ │ ├── change-in-pull-request-view.png │ │ │ ├── changes-view.png │ │ │ ├── codespaces-continue.png │ │ │ ├── continue-working.png │ │ │ ├── copilot-extension.png │ │ │ ├── create-pull-request-button.png │ │ │ ├── create-pull-request-view.png │ │ │ ├── extension-signin.png │ │ │ ├── features-not-available-hover.png │ │ │ ├── git-clone-button.png │ │ │ ├── github-remote-explorer.png │ │ │ ├── github-repo-dropdown.png │ │ │ ├── github-repositories-create-pull-request.png │ │ │ ├── github-repositories-extension.png │ │ │ ├── issue-from-todo.gif │ │ │ ├── issue-hover.png │ │ │ ├── issue-status-bar-actions.png │ │ │ ├── issues-view.png │ │ │ ├── open-github-repository-dropdown.png │ │ │ ├── pull-request-description-editor.png │ │ │ ├── pull-request-view.png │ │ │ ├── remote-indicator.png │ │ │ ├── user-hover.png │ │ │ ├── user-issue-suggest.gif │ │ │ └── working-on-issue.png │ │ ├── intro │ │ │ ├── branch-indicator.png │ │ │ ├── codespace-create.png │ │ │ ├── git-bash.png │ │ │ ├── github-clone.png │ │ │ ├── remote-repo.png │ │ │ ├── scm-init-publish.png │ │ │ ├── scm-staging.png │ │ │ ├── sync.png │ │ │ └── timeline.png │ │ └── overview │ │ │ ├── GitHub-clone-dialog.png │ │ │ ├── additional-scm-providers.png │ │ │ ├── diff-review-pane.png │ │ │ ├── diff.png │ │ │ ├── firstrun-source-control.png │ │ │ ├── git-initialize.png │ │ │ ├── git-status-bar-publish.png │ │ │ ├── git-status-bar-sync.png │ │ │ ├── gitbranches.png │ │ │ ├── gitcommands.png │ │ │ ├── gutter.png │ │ │ ├── initialize-repository.png │ │ │ ├── merge-conflict.png │ │ │ ├── merge-editor-overview.png │ │ │ ├── overview.png │ │ │ ├── scm-more-actions.png │ │ │ ├── scm-provider-category.png │ │ │ ├── scm-providers-list.png │ │ │ ├── scm.png │ │ │ ├── set-repo-URL.png │ │ │ ├── stage-changes.png │ │ │ └── timeline-view.png │ ├── intro-to-git.md │ └── overview.md ├── supporting │ ├── faq.md │ ├── images │ │ ├── faq │ │ │ ├── extensions-view-license-link.png │ │ │ ├── links-release-notes.png │ │ │ └── shell-env-error.png │ │ └── troubleshoot-terminal-launch │ │ │ ├── legacy-console-mode.png │ │ │ ├── search-for-modified-settings.png │ │ │ ├── search-for-settings.png │ │ │ └── settings-json-file.png │ ├── oss-extensions.md │ ├── requirements.md │ └── troubleshoot-terminal-launch.md ├── terminal │ ├── advanced.md │ ├── appearance.md │ ├── basics.md │ ├── images │ │ ├── advanced │ │ │ └── envvarcollection-warning.png │ │ ├── appearance │ │ │ ├── custom-glyphs.png │ │ │ ├── tabs.png │ │ │ └── terminal_appearance.png │ │ ├── basics │ │ │ ├── integrated-terminal.png │ │ │ ├── link-extension.png │ │ │ ├── link-file.png │ │ │ ├── link-folder.png │ │ │ ├── link-open-detected.png │ │ │ ├── link-uri.png │ │ │ ├── link-word.png │ │ │ ├── open-in-terminal-command.png │ │ │ ├── select-profile-dropdown.png │ │ │ ├── shell-integration.png │ │ │ ├── tabs.png │ │ │ ├── terminal-dropdown.png │ │ │ ├── terminal-editor-grid.png │ │ │ ├── terminal-editor.png │ │ │ ├── terminal-find.png │ │ │ ├── terminal-multiple-instances.png │ │ │ └── terminal-split-pane.png │ │ ├── profiles │ │ │ └── unsafe-profile-warning.png │ │ └── shell-integration │ │ │ ├── decoration-menu.png │ │ │ ├── decorations.png │ │ │ ├── quick-fix.png │ │ │ ├── recent-command.png │ │ │ └── setmark.png │ ├── profiles.md │ └── shell-integration.md └── typescript │ ├── images │ ├── compiling │ │ ├── build-hello-world.png │ │ ├── error-status-bar.png │ │ ├── hidingDerivedAfter.png │ │ ├── hidingDerivedBefore.png │ │ ├── select-ts-version-message.png │ │ ├── status-bar-version.png │ │ ├── tsconfigintellisense.png │ │ ├── typescript-build.png │ │ └── version-status-bar.png │ ├── debugging │ │ ├── client-side-debug-breakpoint.png │ │ ├── configure-debugging.png │ │ └── launch-json-intellisense.png │ ├── editing │ │ ├── auto-import-post.png │ │ ├── auto-import-pre.png │ │ ├── hover.png │ │ ├── inlay-parameter-types.png │ │ ├── inlay-parameters.png │ │ ├── inlay-property-types.png │ │ ├── inlay-return-type.png │ │ ├── inlay-var-types.png │ │ ├── jsdoc-autofill-placeholder.png │ │ ├── jsdoc-autofill.mp4 │ │ ├── jsdocs.png │ │ ├── jsx-tag-complete.mp4 │ │ ├── jsx-tag-complete.png │ │ ├── jsx.png │ │ ├── signature-help.png │ │ ├── ts-implementations-code-lens.png │ │ ├── ts-intellisense.png │ │ ├── ts-references-code-lens-peek.png │ │ ├── ts-references-code-lens.png │ │ └── ts-snippets.png │ ├── refactoring │ │ ├── code-suggestions-convert-async-placeholder.png │ │ ├── code-suggestions-convert-async.mp4 │ │ ├── organize-imports-placeholder.png │ │ ├── organize-imports.mp4 │ │ ├── refactor-convert-import.gif │ │ ├── refactor-extract-constant.gif │ │ ├── refactor-extract-function.gif │ │ ├── refactor-extract-interface.gif │ │ ├── refactor-generate-get-set.gif │ │ ├── refactor-move-file.gif │ │ ├── refactorings.png │ │ ├── rename.png │ │ ├── ts-infer-return.gif │ │ └── unreachable.png │ └── tutorial │ │ ├── compiled-hello-world.png │ │ ├── create-new-file.png │ │ ├── debug-breakpoint.png │ │ ├── debug-console.png │ │ ├── incorrect-type-error.png │ │ ├── intellisense.png │ │ ├── parameter-help.png │ │ ├── run-hello-world.png │ │ ├── tsconfig-intellisense.png │ │ └── unreachable-code-detected.png │ ├── typescript-compiling.md │ ├── typescript-debugging.md │ ├── typescript-editing.md │ ├── typescript-refactoring.md │ └── typescript-tutorial.md ├── gulpfile.js ├── images ├── MDPreviewButton.png └── logo-stable.png ├── learn ├── collaboration │ ├── images │ │ └── live-share │ │ │ ├── live-share-extension.png │ │ │ ├── liveshare-icon.png │ │ │ ├── liveshare-invitation.png │ │ │ ├── liveshare-join-session.png │ │ │ └── liveshare-joined.png │ └── live-share.md ├── develop-cloud │ ├── containers.md │ ├── images │ │ ├── containers │ │ │ ├── container-architecture.png │ │ │ ├── dev-containers-extension.png │ │ │ └── python-container.png │ │ ├── overview │ │ │ └── remote-dev-pack.png │ │ ├── ssh-lab-machines │ │ │ └── remote-ssh.png │ │ └── wsl │ │ │ └── wsl-extension.png │ ├── overview.md │ ├── ssh-lab-machines.md │ └── wsl.md ├── educators │ ├── codetour.md │ ├── images │ │ ├── codetour │ │ │ ├── codetour-example-lesson.gif │ │ │ ├── codetour-extension-marketplace.png │ │ │ ├── codetour-space-jam.gif │ │ │ └── space-jam-lessons-home.png │ │ ├── installers │ │ │ ├── dotnet-installer.png │ │ │ └── java-installer.png │ │ ├── learn-modules │ │ │ ├── learn-git.png │ │ │ ├── learn-node-app.png │ │ │ ├── learn-python-notebooks.png │ │ │ └── learn-python-vscode.png │ │ ├── nodejs │ │ │ ├── learn-build-node-app.png │ │ │ └── node-js-extension-pack.png │ │ └── python │ │ │ ├── basic-python-lesson.png │ │ │ ├── integrated-terminal.gif │ │ │ ├── nasa-learning-path.png │ │ │ ├── over-the-moon-learning-path.png │ │ │ ├── python-extension-pack.png │ │ │ ├── setup-python-lesson.png │ │ │ └── wonder-woman-learning-path.png │ ├── installers.md │ ├── learn-modules.md │ ├── nodejs.md │ ├── python.md │ └── webinars.md ├── get-started │ ├── basics.md │ ├── extensions.md │ ├── images │ │ └── overview │ │ │ ├── vscode.png │ │ │ └── vscode2.png │ └── personalize.md ├── overview.md └── students │ ├── github-pack.md │ ├── images │ ├── github-classroom │ │ ├── banner.png │ │ ├── learn-1.png │ │ └── learn-2.png │ ├── nasa-python │ │ ├── nasa-python1.png │ │ ├── nasa-python2.png │ │ ├── nasa-python3.png │ │ └── python-nasa.png │ ├── over-the-moon-python │ │ └── otm-python.png │ ├── spacejam-python │ │ └── spacejam-python.png │ └── wonder-woman-python │ │ └── ww-lesson.png │ ├── nasa-python.md │ ├── over-the-moon-python.md │ ├── spacejam-python.md │ └── wonder-woman-python.md ├── package.json ├── release-notes ├── July_2016.md ├── June_2016.md ├── May_2016.md ├── css │ └── inproduct_releasenotes.css ├── images │ ├── 0_10_0 │ │ ├── add-to-watch.png │ │ ├── colored-output.png │ │ ├── extension-commands.png │ │ ├── extension-language.png │ │ ├── hello-code.png │ │ ├── inline-diff-view.png │ │ ├── marketplace.png │ │ ├── select-debug-env.png │ │ ├── theme-0-10-0.png │ │ ├── theme-0-9-0.png │ │ └── yo-code.png │ ├── 0_3_0 │ │ ├── BlockComments.png │ │ ├── ChineseLoremIpsum.png │ │ ├── CopyPath.gif │ │ ├── CopyPathPalette.png │ │ ├── DebugVisualization.png │ │ ├── EncodingClicked.png │ │ ├── EncodingSelection.png │ │ ├── FileEncoding.png │ │ ├── FilesEncodingSetting.png │ │ ├── WrappingIndentIndent.png │ │ ├── WrappingIndentNone.png │ │ ├── WrappingIndentSame.png │ │ ├── compare.png │ │ ├── expandselection.gif │ │ └── settingserrors.png │ ├── 0_5_0 │ │ ├── CredentialPrompt.png │ │ ├── GitMultiSelect.gif │ │ ├── HidingDerivedResources.png │ │ ├── JsconfigJson.png │ │ ├── MultilineCommit.png │ │ ├── NodeBreakpoints.png │ │ ├── SearchPatterns.png │ │ ├── ShebangColoring.png │ │ ├── ToggleActiveBPs.png │ │ └── WatchExpressions.png │ ├── 0_7_0 │ │ ├── DebugChunkedArrays.png │ │ ├── PHPSnip.png │ │ ├── QuickFixOnMarker.png │ │ └── QuickFixOnSelection.png │ ├── 0_8_0 │ │ ├── colorthemes.gif │ │ └── debugconsole.png │ ├── 0_9_0 │ │ ├── antlanguage.png │ │ ├── debugconsole.png │ │ ├── lang-status.png │ │ ├── mytheme.png │ │ ├── openpreviewside.png │ │ ├── unityshadercolorization.png │ │ ├── yocode.png │ │ ├── yocodelanguage.png │ │ └── yocodetheme.png │ ├── 1_10 │ │ ├── apt-repo.jpg │ │ ├── column-breakpoints.gif │ │ ├── copy-with-syntax-highlighting.gif │ │ ├── drag-and-drop.gif │ │ ├── exception-widget.png │ │ ├── html-document-symbols.png │ │ ├── jsdoc-autofill.gif │ │ ├── launch-keyboard.gif │ │ ├── menu.png │ │ ├── minimap-blocks-scroll.gif │ │ ├── minimap.png │ │ ├── performanto.png │ │ ├── release-highlights.png │ │ ├── search-results-count.png │ │ └── terminal-link.png │ ├── 1_11 │ │ ├── abyss-theme.png │ │ ├── async-stack-after.png │ │ ├── async-stack-before.png │ │ ├── color-settings.gif │ │ ├── column-breakpoints.png │ │ ├── config-exceptions.gif │ │ ├── debug-menu.png │ │ ├── dnd.gif │ │ ├── encoding.png │ │ ├── exception-peekui.png │ │ ├── file-deleted.png │ │ ├── fuzzy-score.png │ │ ├── keyboard-shortcuts.gif │ │ ├── loaded-scripts.gif │ │ ├── panel.gif │ │ ├── release-highlights.png │ │ ├── scm-provider-icon.png │ │ ├── search-viewlet.png │ │ ├── terminal-link-hint.png │ │ ├── terminal-shell-selector.png │ │ ├── terminal-workspace-warn.png │ │ ├── ts-implementations-lens-expanded.png │ │ └── ts-implementations-lens.png │ ├── 1_12 │ │ ├── column-breakpoints.gif │ │ ├── completions-dynamic-sort.gif │ │ ├── edit-watch.png │ │ ├── keyboard-shortcuts-editor.gif │ │ ├── native-tabs.gif │ │ ├── promise-reject-option.png │ │ ├── release-highlights.png │ │ ├── terminal-line-col-link.gif │ │ ├── theme-activitybar.gif │ │ ├── theme-generator.png │ │ ├── theme-kimbie-dark.png │ │ ├── theme-solarized-light.png │ │ ├── theme-tomorrow-blue.png │ │ ├── toggle-skip-file.png │ │ └── ts-checkjs-example.gif │ ├── 1_13 │ │ ├── additional-scm-providers.png │ │ ├── bot-closes-needs-more-info.png │ │ ├── bot-labels-insiders.png │ │ ├── copy-all.png │ │ ├── emmet.gif │ │ ├── exception-link-detection.png │ │ ├── extensions-actions.png │ │ ├── go-menu.png │ │ ├── high-contrast.png │ │ ├── jsdocs.png │ │ ├── jsx-new-coloring.png │ │ ├── letter-spacing.gif │ │ ├── markdown-heading-levels.png │ │ ├── merge-conflict.png │ │ ├── new-setting-defaults.png │ │ ├── release-highlights.png │ │ ├── resize-find-widget.gif │ │ ├── snippets-multi-cursor.gif │ │ ├── step-after.gif │ │ ├── step-before.gif │ │ ├── suggest.gif │ │ ├── task-customize.gif │ │ ├── task-selection.png │ │ ├── terminal-vtop-after.png │ │ ├── terminal-vtop-before.png │ │ ├── typescript-workspace-symbol-names.png │ │ ├── uncover-matched-results.gif │ │ └── views.png │ ├── 1_14 │ │ ├── add-root-folder.png │ │ ├── auto-indent-on-move-lines.gif │ │ ├── auto-indent-on-paste.gif │ │ ├── auto-indent-on-type.gif │ │ ├── bot-labels-emmet.png │ │ ├── bot-labels-new-release.png │ │ ├── close-unmodified.png │ │ ├── commands-history.gif │ │ ├── diff-review-pane.png │ │ ├── emmet.gif │ │ ├── empty-window-restore.gif │ │ ├── explorer-context.png │ │ ├── extensions-view-sections.png │ │ ├── github-issues-and-prs.gif │ │ ├── gitignore.gif │ │ ├── js-new-suggest.png │ │ ├── js-old-suggest.png │ │ ├── js-refactoring.gif │ │ ├── js-super-suggestions.png │ │ ├── md-breaks.png │ │ ├── md-no-breaks.png │ │ ├── minimap-horizontal-slider.gif │ │ ├── multi-root-quickopen.png │ │ ├── quick-switch-windows.gif │ │ ├── release-highlights.png │ │ ├── search-multi-root.png │ │ ├── switch-window.png │ │ ├── tasks-auto-detection.png │ │ ├── tasks-global-menu.png │ │ ├── tasks-matcher-attach.gif │ │ ├── terminal-find.gif │ │ ├── terminal-selection-select.gif │ │ ├── terminal-selection-tmux.gif │ │ ├── terminal-selection-word.gif │ │ ├── ts-build-task.gif │ │ └── update.png │ ├── 1_15 │ │ ├── color-picker.png │ │ ├── compare-with-saved.png │ │ ├── explorer-sorting.png │ │ ├── folder_settings.png │ │ ├── loaded-scripts-explorer.gif │ │ ├── markdown-api-plugins.png │ │ ├── markdown-api-scripts.png │ │ ├── markdown-api-styles.png │ │ ├── markdown-preview-search.png │ │ ├── markdown-security.gif │ │ ├── mr_debug.png │ │ ├── multiroot-search-results.png │ │ ├── open_workspace.png │ │ ├── proxy-authentication.png │ │ ├── react-tutorial.png │ │ ├── recent_workspace.png │ │ ├── release-highlights.png │ │ ├── remove_history.gif │ │ ├── root_icon.png │ │ ├── save_workspace.png │ │ ├── search-options.png │ │ ├── settings_dropdown.png │ │ ├── snippet-choice.gif │ │ ├── tasks-status-bar.png │ │ ├── terminal_quickpick.png │ │ ├── token_color_customization.png │ │ ├── token_color_customization_advanced.png │ │ ├── unsupported_setting_info.png │ │ ├── views_management.gif │ │ ├── workspace.gif │ │ ├── workspace.png │ │ └── workspace_settings.png │ ├── 1_16 │ │ ├── auto-close1.gif │ │ ├── auto-close2.gif │ │ ├── color-picker-html.png │ │ ├── eh-breakpoints.gif │ │ ├── exthost-restart.gif │ │ ├── folder-drop.gif │ │ ├── markdown-refresh.png │ │ ├── multi-root-dnd.gif │ │ ├── multi-root-transition.gif │ │ ├── release-highlights.png │ │ ├── scm-multiroot.png │ │ ├── search-dnd.gif │ │ ├── smooth-scrolling.gif │ │ ├── terminal-find.gif │ │ ├── terminal-quick-pick.png │ │ └── ts-extract.gif │ ├── 1_17 │ │ ├── console_messages.gif │ │ ├── extension_recommendations.png │ │ ├── git-stash.png │ │ ├── js-markdown-intellisense.png │ │ ├── labelformat.png │ │ ├── mac-insiders-green.png │ │ ├── mac-stable-orange.png │ │ ├── markdown-fenced-commenting.gif │ │ ├── nativetabs.png │ │ ├── offside-folding.gif │ │ ├── picker.png │ │ ├── python-string-sub-colorization.png │ │ ├── quick-suggestion-path-intellisense.gif │ │ ├── regexp-colorization-improvements.png │ │ ├── region-folding.gif │ │ ├── release-highlights.png │ │ ├── remote_fs.png │ │ ├── ruby-interpolation-colorization.png │ │ ├── scm.png │ │ ├── snippet_buckets.png │ │ ├── tasks-multi-root.png │ │ ├── terminal_60fps.gif │ │ ├── touchbar.gif │ │ ├── tsc-build-and-watch.png │ │ ├── wait.gif │ │ ├── warning-color.png │ │ ├── windows-insiders-green.png │ │ └── windows-stable-orange.png │ ├── 1_18 │ │ ├── blueicon.png │ │ ├── debug-status.png │ │ ├── diff.gif │ │ ├── difftitle.png │ │ ├── editor-decorations.png │ │ ├── git-decorations.png │ │ ├── merge.png │ │ ├── move-confirmation.png │ │ ├── multiroot.gif │ │ ├── panel-title.gif │ │ ├── recommendationinstall-configure.gif │ │ ├── recommendations-badge.gif │ │ ├── release-highlights.png │ │ ├── repl-color.png │ │ ├── string-quick-suggestions.gif │ │ ├── terminal-faint-text.png │ │ ├── ts-auto-import-post.png │ │ ├── ts-auto-import-pre.png │ │ ├── ts-extract-local.gif │ │ ├── ts-localizable-errors.png │ │ ├── ts-npm-install-quick-fix.png │ │ ├── twistieless-fileicons.png │ │ └── vertical-panel.png │ ├── 1_19 │ │ ├── character-entities.png │ │ ├── edit-breakpoint.png │ │ ├── enable-extensions.png │ │ ├── image-diff.png │ │ ├── jsx-fragment.png │ │ ├── log-picker.png │ │ ├── release-highlights.png │ │ ├── running-extensions.png │ │ ├── shrink.gif │ │ ├── status.png │ │ ├── stdin.gif │ │ ├── suggest_mem.gif │ │ ├── suggest_relax.png │ │ ├── synthetic-variables.png │ │ └── vscode-processes.gif │ ├── 1_20 │ │ ├── add-config.png │ │ ├── auto-attach-cluster.gif │ │ ├── code-action-context-menu.png │ │ ├── cursor-width.gif │ │ ├── custom-file-view.png │ │ ├── custom-view-inline-action.png │ │ ├── dropdown.png │ │ ├── emmetprefix.gif │ │ ├── error-decoration.png │ │ ├── filerec.gif │ │ ├── git-input-validation.gif │ │ ├── image-zoom.gif │ │ ├── issue_reporter.png │ │ ├── language-pack.png │ │ ├── minimap-left-side.png │ │ ├── multi-select.gif │ │ ├── notifications.png │ │ ├── output-log-channels.png │ │ ├── popular-extension.png │ │ ├── release-highlights.png │ │ ├── save_admin.gif │ │ ├── settings-search.png │ │ ├── submodules.png │ │ ├── tab_hover.gif │ │ ├── toggle-ignore-trim-whitespace.gif │ │ ├── ts-auto-import-default.gif │ │ ├── ts-bracket-post.png │ │ ├── ts-bracket-pre.png │ │ ├── ts-fix-all-in-file-post.png │ │ ├── ts-fix-all-in-file-pre.png │ │ ├── ts-optional-prop-completions.png │ │ ├── ts-styled-plugin.png │ │ ├── ts-this-dot-post.png │ │ ├── ts-this-dot-pre.png │ │ └── workspace-settings.png │ ├── 1_21 │ │ ├── activelinenumber.png │ │ ├── breakpoints.png │ │ ├── centeredLayout.gif │ │ ├── emmet-multi-filters.gif │ │ ├── emmet-style.gif │ │ ├── explorer-multiFolderCreation.gif │ │ ├── issue-bot-duplicate-detection.png │ │ ├── language-pack-extensions.png │ │ ├── manage-builtin.gif │ │ ├── md-dynamic-preview.gif │ │ ├── md-locked.png │ │ ├── md-scroll-sync.gif │ │ ├── notification-small.png │ │ ├── notification.png │ │ ├── notifications.gif │ │ ├── path-completion.gif │ │ ├── release-highlights.png │ │ ├── search.png │ │ ├── symlink.png │ │ ├── terminal-split.gif │ │ ├── window-copy-paste.gif │ │ └── window-dnd-files.gif │ ├── 1_22 │ │ ├── auto-attach.gif │ │ ├── css-path-completion.png │ │ ├── explorer-errors.png │ │ ├── f8-navigation.gif │ │ ├── large-file-notification.png │ │ ├── log-points.gif │ │ ├── long-running.gif │ │ ├── markdown-folding.gif │ │ ├── multi-select-quickpick.png │ │ ├── process-picker.png │ │ ├── references-f4.gif │ │ ├── related-diagnostics-information.png │ │ ├── release-highlights.png │ │ ├── report-on-extensions.png │ │ ├── save_part.gif │ │ ├── search-patterns.png │ │ ├── sev-hint.png │ │ ├── syntax-fold.gif │ │ ├── syntaxhighlight-optimization.gif │ │ ├── terminal-command-tracking.gif │ │ ├── terminal-links.png │ │ ├── ts-jsdocs-quicksuggestions.gif │ │ ├── ts-organize-imports.gif │ │ ├── ts-suggestion-change.png │ │ ├── ts-suggestion-click.png │ │ ├── ts-suggestion-hover.png │ │ ├── ts-suggestion-indicator.png │ │ └── wrap.gif │ ├── 1_23 │ │ ├── SublimeSettingsImporter.gif │ │ ├── active-indent-guide.gif │ │ ├── azure-view.png │ │ ├── binary.png │ │ ├── copy-search.gif │ │ ├── css-csstree.gif │ │ ├── css-folding.gif │ │ ├── css-mdn.gif │ │ ├── css-unkown-property.png │ │ ├── custom-view-scm.png │ │ ├── custom-views-container.png │ │ ├── editor-column-select.gif │ │ ├── editor-stability.gif │ │ ├── fsp.png │ │ ├── logpoint-location.png │ │ ├── logpoints.gif │ │ ├── markdown-restore.gif │ │ ├── markdown-workspace-symbol-search.png │ │ ├── open-view.png │ │ ├── problems_filter.gif │ │ ├── process-explorer.gif │ │ ├── release-highlights.png │ │ ├── script-explorer.png │ │ ├── search-include-exclude.png │ │ ├── test-views-container.png │ │ └── webview.png │ ├── 1_24 │ │ ├── callstack.png │ │ ├── continue.png │ │ ├── debug_toolbar.gif │ │ ├── font-zoom.png │ │ ├── grid.gif │ │ ├── inline-diff-syntax.png │ │ ├── outline-all.png │ │ ├── outline-enable.png │ │ ├── release-highlights.png │ │ ├── scss-at.gif │ │ ├── settings-editor.gif │ │ ├── terminal-dom-renderer.png │ │ ├── terminal-italic.png │ │ ├── terminal-quick-open.png │ │ ├── ts-generate-get-set-post.png │ │ ├── ts-generate-get-set-pre.png │ │ ├── ts-grey-fix-all-action.png │ │ ├── ts-grey-post.png │ │ ├── ts-grey-pre.png │ │ ├── ts-import-folding.gif │ │ ├── ts-move-to-file-post.png │ │ ├── ts-move-to-file-pre.png │ │ ├── ts-update-imports.gif │ │ ├── variables.png │ │ └── vsts.png │ ├── 1_25 │ │ ├── css-justify-items.png │ │ ├── css-pseudo-selectors-elements.png │ │ ├── css-unknown-atrules.png │ │ ├── custom_title.png │ │ ├── debugtoolbar.gif │ │ ├── defaultExtensionsView.gif │ │ ├── defaultExtensionsView.png │ │ ├── dismiss.gif │ │ ├── drop.gif │ │ ├── editor-sub-word-navigation.gif │ │ ├── editorPaneBackground.png │ │ ├── grid-alt.gif │ │ ├── grid-background.png │ │ ├── grid-dnd.gif │ │ ├── grid-empty.png │ │ ├── grid-layout-applied.png │ │ ├── grid-layout-menu.png │ │ ├── grid-layout.gif │ │ ├── grid-numbering.png │ │ ├── grid-open-editors.png │ │ ├── lang-pack-recommendation.png │ │ ├── lsp-inspector.gif │ │ ├── md-outline.png │ │ ├── multistepinput.gif │ │ ├── outline.png │ │ ├── release-highlights.png │ │ ├── settings-editor.png │ │ ├── snippet_placeholder_transform.gif │ │ └── suggest_preselect.png │ ├── 1_26 │ │ ├── appearance.png │ │ ├── autosave.png │ │ ├── breadcrumbs_active.gif │ │ ├── breadcrumbs_tabs_notabs.png │ │ ├── customview-decorations.png │ │ ├── exclude.png │ │ ├── extension-intellisense.gif │ │ ├── extension-pack.png │ │ ├── grid-maximize.gif │ │ ├── intellicode-extension.png │ │ ├── multistepinput.gif │ │ ├── npm-script-hover.png │ │ ├── open-folder-uri.png │ │ ├── quickfix-problems.gif │ │ ├── rapid_render.gif │ │ ├── release-highlights.png │ │ ├── settings-editor.png │ │ ├── terminal-column-selection.png │ │ ├── theme_menus.png │ │ ├── ts-28-bad-error.png │ │ ├── ts-30-better-error.png │ │ ├── ts-convert-to-namespace-import.gif │ │ ├── ts-import-all-quick-fix.gif │ │ ├── ts-jsx-folding.gif │ │ ├── ts-jsx-tag-complete.gif │ │ ├── ts-related-diagnostic.png │ │ ├── ts-tsconfig-path-click.png │ │ └── webview-icon.png │ ├── 1_27 │ │ ├── aligned-multiple.png │ │ ├── comments_panel.png │ │ ├── css-definition.gif │ │ ├── css-import.gif │ │ ├── custom_tb_menus.png │ │ ├── deleted-from-disk.png │ │ ├── document_comment.png │ │ ├── dropdown.png │ │ ├── extension-settings.png │ │ ├── github_pull_requests.gif │ │ ├── log-streaming.gif │ │ ├── modified-and-contextmenu.png │ │ ├── picker-highlights.gif │ │ ├── release-highlights.png │ │ ├── search-filter.gif │ │ ├── settings-editor.png │ │ ├── settings-validation.png │ │ └── terminal-menu.png │ ├── 1_28 │ │ ├── comment_edit.gif │ │ ├── copy-relative-path.png │ │ ├── custom-view-focus-commands.png │ │ ├── custom_menus.png │ │ ├── deleted.gif │ │ ├── extension-host-unresponsive.png │ │ ├── file-icons.png │ │ ├── locality-bonus.png │ │ ├── markdown-folding.gif │ │ ├── markdown-preview-link.gif │ │ ├── problem-code.png │ │ ├── project-snippet.jpg │ │ ├── record-keybindings.gif │ │ ├── release-highlights.png │ │ ├── september-issue-grooming-1.png │ │ ├── september-issue-grooming-2.png │ │ ├── staged.png │ │ ├── tabcompletion.gif │ │ ├── ts-convert-to-async.gif │ │ ├── ts-rename-import.gif │ │ └── workspace-prompt.png │ ├── 1_29 │ │ ├── breadcrumb-order.png │ │ ├── breakpoint-widget.png │ │ ├── completion-file-icons.png │ │ ├── console-styles.png │ │ ├── css-specificity.png │ │ ├── error-code.png │ │ ├── file-icon-preview.gif │ │ ├── highlight-modified-tabs.gif │ │ ├── json-schema-loading.gif │ │ ├── linenumbers.png │ │ ├── loaded-scripts-view.png │ │ ├── modified-in-link.png │ │ ├── mojave-dark.png │ │ ├── move-panel.png │ │ ├── multi-repl.png │ │ ├── multiline.gif │ │ ├── pcre2.jpg │ │ ├── pipelines.png │ │ ├── references-view.gif │ │ ├── release-highlights.png │ │ ├── stack-frames.gif │ │ ├── structured-view.png │ │ ├── view-collapse-all.png │ │ ├── view-label-highlights.png │ │ └── workbench-navigation.gif │ ├── 1_30 │ │ ├── api-sighelp-context.gif │ │ ├── custom-title-menu-linux.png │ │ ├── debug-from-process-explorer.gif │ │ ├── downgrade-Extension.gif │ │ ├── exthost-slow-the-movie.gif │ │ ├── go-to-declaration.png │ │ ├── html-custom-tag-attribute.gif │ │ ├── http-proxy-support.png │ │ ├── input-example.gif │ │ ├── menu-bar-overflow.png │ │ ├── multiline-input.png │ │ ├── references-viewlet.png │ │ ├── release-highlights.png │ │ ├── scrolling-menus.gif │ │ ├── settings-actions.png │ │ ├── treeitem-description.png │ │ ├── treeview-message.png │ │ ├── ts-import-icons.png │ │ ├── ts-markdown-jsdocs.png │ │ ├── ts-new-callback-nav.png │ │ ├── ts-new-quickfix.gif │ │ ├── ts-old-callback-nav.png │ │ └── ts-rename.gif │ ├── 1_31 │ │ ├── api-preferred-after.png │ │ ├── api-preferred.png │ │ ├── api-toc.png │ │ ├── customdata.gif │ │ ├── cut.png │ │ ├── go-menu.png │ │ ├── html-css-json-selection.gif │ │ ├── http-proxy-support.png │ │ ├── live-theme-editing.gif │ │ ├── no-reload-language-extension.gif │ │ ├── octicons-updates.png │ │ ├── panel-only.png │ │ ├── problems-multi-line.gif │ │ ├── ref-history.png │ │ ├── release-highlights.png │ │ ├── screencast.gif │ │ ├── select-all.gif │ │ ├── sideBySideTasks.png │ │ ├── smart-select-demo.gif │ │ ├── stylus-completion.png │ │ ├── terminal-conpty-after.png │ │ ├── terminal-conpty-before.png │ │ ├── terminal-cwd-links.gif │ │ ├── terminal-reflow.gif │ │ └── type-filter.gif │ ├── 1_32 │ │ ├── autofix-ligthbulb.png │ │ ├── column-selection-alt-key.gif │ │ ├── debug-console-font.gif │ │ ├── debug-console-wrap.png │ │ ├── debug-toolbar.png │ │ ├── hover.png │ │ ├── html-attribute-completion.gif │ │ ├── keyboard-shortcuts-when.gif │ │ ├── problem-hover.png │ │ ├── problem-peek.png │ │ ├── release-highlights.png │ │ ├── server-ready.gif │ │ ├── theme-install.gif │ │ ├── vetur-intellisense-vue-template.gif │ │ └── webpack-logo.png │ ├── 1_33 │ │ ├── azure-app-service.png │ │ ├── call-hierarchy.png │ │ ├── display-language-picker.png │ │ ├── extension-dep-install.png │ │ ├── formatter-default.gif │ │ ├── intellisense-config.png │ │ ├── release-highlights.png │ │ ├── snap-store.png │ │ ├── source-control-context-menu.png │ │ ├── sub-sessions.png │ │ ├── ts-named-paramters.gif │ │ └── vetur-ts-features.gif │ ├── 1_34 │ │ ├── release-highlights.png │ │ ├── stable-code-lens.gif │ │ └── vetur-interpolation.gif │ ├── 1_35 │ │ ├── breadcrumbs.png │ │ ├── command-enablement.png │ │ ├── compare-conflict.gif │ │ ├── go-to-def-loop.gif │ │ ├── logo-insiders.png │ │ ├── logo-stable.png │ │ ├── octicons-update.png │ │ ├── octicons-update2.png │ │ ├── proposed-documentlink-tooltip.png │ │ ├── release-highlights.png │ │ ├── remote-architecture.png │ │ ├── shell-selector.png │ │ ├── true-color-after.png │ │ ├── true-color-before.png │ │ ├── ts-extract-type.gif │ │ ├── ts-smart-select.gif │ │ └── ts-suggestions.png │ ├── 1_36 │ │ ├── api-documentlink-tooltip.png │ │ ├── comment-reaction.png │ │ ├── dnd-copy.png │ │ ├── find-match-ruler-color.png │ │ ├── java-installer.png │ │ ├── jump-to-cursor.gif │ │ ├── minimap_search.png │ │ ├── online-services-settings.png │ │ ├── release-highlights.png │ │ ├── status-bar.gif │ │ ├── terminal-mac-shell-selector.png │ │ ├── tree-indent-guides.png │ │ └── warning-color.png │ ├── 1_37 │ │ ├── button-toggle-active-state.gif │ │ ├── css-property-value-completion-documentation.png │ │ ├── diag-tag-deprecated.png │ │ ├── icons.gif │ │ ├── info-colors.png │ │ ├── minimap-search-decorations.png │ │ ├── npm-scripts-explorer.png │ │ ├── preserve-case-button.png │ │ ├── preserve-case.gif │ │ ├── release-highlights.png │ │ ├── render-whitespace-on-selection.png │ │ ├── search-reveal-explorer.png │ │ ├── settings-ui-array-of-string.gif │ │ ├── terminal-invalid-shell.png │ │ ├── terminal-search-ux.gif │ │ └── unused-settings.png │ ├── 1_38 │ │ ├── branch-name.png │ │ ├── cancel-search-icon.png │ │ ├── css-deprecated-properties.png │ │ ├── cursor-surrounding-lines.gif │ │ ├── data-breakpoints.png │ │ ├── diff-actions.gif │ │ ├── html-css-mdn-reference.gif │ │ ├── js-await-quickfix.gif │ │ ├── js-jsdoc-merge-after.png │ │ ├── js-jsdoc-merge-before.png │ │ ├── js-no-semicolon.gif │ │ ├── link-protection.gif │ │ ├── maximized-panel.png │ │ ├── multiple-line-support.gif │ │ ├── release-highlights.png │ │ ├── search-preserve-case.png │ │ ├── string-of-array-error-validation.png │ │ ├── suggest-deprecated.png │ │ ├── vscode-icons-repo.png │ │ └── webview-csp-warning.png │ ├── 1_39 │ │ ├── breakpoints.gif │ │ ├── callstack.gif │ │ ├── css-color-swatch-variable.png │ │ ├── css-property-completion-semicolon.gif │ │ ├── extension-readme-highlighting.png │ │ ├── html-aria-reference.png │ │ ├── image-preview-extension.png │ │ ├── improved-trusted-domains-management.gif │ │ ├── japanese-typeface.png │ │ ├── java-deprecated-method.png │ │ ├── minimap-selection.png │ │ ├── prelaunch-choice.png │ │ ├── release-highlights.png │ │ ├── scm-toggle-view-mode.png │ │ ├── scm.gif │ │ ├── selectable-completion-details.gif │ │ ├── suggest-hover-widgets-monospace-typeface.png │ │ ├── updated-octicons.png │ │ ├── website-refresh.png │ │ └── webview-resource-warning.png │ ├── 1_40 │ │ ├── activity-bar-indicator-2.png │ │ ├── activity-bar-indicator.gif │ │ ├── bpts-in-overview.png │ │ ├── bracket-matching-enclosing.png │ │ ├── clone.gif │ │ ├── command-navigation.gif │ │ ├── conflict.png │ │ ├── css-media-query-symbols.png │ │ ├── definition-preview-hover.gif │ │ ├── diff-editor-show-whitespace-button.gif │ │ ├── font-feature-settings.png │ │ ├── icon-editor.png │ │ ├── icon-lightbulb.png │ │ ├── icon-symbols.png │ │ ├── minimap-scaling.gif │ │ ├── october-issue-grooming.png │ │ ├── outline_filtered.png │ │ ├── prelaunch-compound-config.png │ │ ├── release-highlights.png │ │ ├── reveal-in-explorer.png │ │ ├── scm-highlight.gif │ │ ├── slow-taskprovider.png │ │ ├── split-distribute.gif │ │ ├── split-split.gif │ │ ├── task-detail.png │ │ ├── task-problemmatcher-prompt.png │ │ ├── unicode-after.gif │ │ ├── unicode-before.gif │ │ ├── untracked.gif │ │ ├── window-border.gif │ │ └── yarn-web.png │ ├── 1_41 │ │ ├── add-cursors-to-search-results.gif │ │ ├── callhierarchy-view.png │ │ ├── code-action-disabled-error.png │ │ ├── code-action-disabled-faded.png │ │ ├── code-action-keybinding.png │ │ ├── css-ranking-by-popularity.png │ │ ├── debug-color-tokens-1.png │ │ ├── debug-color-tokens-2.png │ │ ├── debug.gif │ │ ├── explorer-compact.gif │ │ ├── figma-toolkit-1.gif │ │ ├── figma-toolkit-2.gif │ │ ├── find-impl.gif │ │ ├── goto-alt.png │ │ ├── goto-impl.gif │ │ ├── html-mirror-cursor.gif │ │ ├── html-rename.gif │ │ ├── js-debug-run-npm.gif │ │ ├── js-debug-worker.gif │ │ ├── js-missing-function-call.png │ │ ├── json-large-file-warning.png │ │ ├── lang-filter.gif │ │ ├── lcd.png │ │ ├── macos-shortcuts.png │ │ ├── minimap-content-changes.png │ │ ├── minimap-errors-and-warnings.png │ │ ├── peek-impl.gif │ │ ├── problems-filters.gif │ │ ├── problems-flexible-filter.gif │ │ ├── problems-show-current.gif │ │ ├── release-highlights.png │ │ ├── repl-decorations.png │ │ ├── restart-frame.png │ │ ├── sass-module-support.gif │ │ ├── save-diff.gif │ │ ├── save-peek.gif │ │ ├── search-editor.gif │ │ ├── search-on-type.gif │ │ ├── terminal-contrast.gif │ │ ├── ts-chain-completion.gif │ │ ├── ts-extract-interface-post.png │ │ ├── ts-extract-interface-pre.png │ │ ├── ts-the-chain.png │ │ ├── vsonline-extension.png │ │ ├── webgl1.png │ │ ├── webgl2.png │ │ └── yarn-web.gif │ ├── 1_42 │ │ ├── 2-step-collapse.gif │ │ ├── call-hierarchy.png │ │ ├── codicon-api-md.png │ │ ├── complex-completion-label.png │ │ ├── data-breakpoints.png │ │ ├── debug-activity.png │ │ ├── debug-console-history.png │ │ ├── debug-console-mode.png │ │ ├── debug-console-table.png │ │ ├── debug-dropdown.png │ │ ├── debug-input-output.png │ │ ├── debug-start.png │ │ ├── diagnostic-link.png │ │ ├── docker-extension.png │ │ ├── editor-limit.gif │ │ ├── editor-mru.png │ │ ├── extension-context-menu-action.png │ │ ├── fold-highlight.png │ │ ├── folding-shift-click.gif │ │ ├── js-debug-code-lens.png │ │ ├── js-debug-terminal.gif │ │ ├── loaded-scripts-view.gif │ │ ├── moving-outline-view-preview.gif │ │ ├── preview-rename-java.gif │ │ ├── refactor-documentation.png │ │ ├── release-highlights.png │ │ ├── save-conflict.png │ │ ├── save-participant.png │ │ ├── search-editor.png │ │ ├── task-pickstring-label.png │ │ ├── timeline.png │ │ ├── ts-semantic-highlighting.png │ │ ├── untitled-copy2.gif │ │ ├── untitled-title2.gif │ │ └── web-dnd.gif │ ├── 1_43 │ │ ├── altclick.gif │ │ ├── code-action-disabled-error.png │ │ ├── code-action-disabled-faded.png │ │ ├── code-action-documentation.png │ │ ├── code-action-keybinding.png │ │ ├── colored-rulers.png │ │ ├── column-selection.gif │ │ ├── debug-console.png │ │ ├── def_link_peek.gif │ │ ├── editor-padding-top.png │ │ ├── explorer.png │ │ ├── fold-ellipses.png │ │ ├── js-debug-pretty-printing.gif │ │ ├── js-debug-webview.png │ │ ├── minimap-size.gif │ │ ├── moving-views-around.gif │ │ ├── notarization.jpg │ │ ├── progress-notification.gif │ │ ├── release-highlights.png │ │ ├── run.png │ │ ├── sash-corners.gif │ │ ├── scm.png │ │ ├── search-editor-apply.gif │ │ ├── search-editor-overview.png │ │ ├── search-editor-triggers.gif │ │ ├── settings-sync-conflicts.gif │ │ ├── settings-sync-ignored-extensions.png │ │ ├── settings-sync-ignored-settings.png │ │ ├── settings-sync-import.gif │ │ ├── settings-sync-log.png │ │ ├── settings-sync-turnoff.gif │ │ ├── tasks_stop_detecting.gif │ │ ├── timeline.png │ │ ├── transparent-minimap.png │ │ ├── ts-call-hierarchy.png │ │ ├── ts-convert-to-template-string.gif │ │ ├── ts-jsdoc-link.png │ │ ├── undo-across-files-prompt.png │ │ ├── unicode11.png │ │ └── whitespace-on-selection.png │ ├── 1_44 │ │ ├── accounts_menu.png │ │ ├── azure-virtual-machines.png │ │ ├── callstack.png │ │ ├── custom-editors.png │ │ ├── debug-console-icon.png │ │ ├── debug-progress.gif │ │ ├── dnd.gif │ │ ├── docker-extension.png │ │ ├── extension-pack-badge.png │ │ ├── extension-pack-editor.png │ │ ├── html-rename-on-type.gif │ │ ├── js-debug-link-handler.gif │ │ ├── js-debug-returnvalue.png │ │ ├── large-scrollbar.png │ │ ├── multipanel.gif │ │ ├── new-codicons.png │ │ ├── panel-view-icons.png │ │ ├── quick-open-filtering.gif │ │ ├── quick-open-symbols-access.gif │ │ ├── quickopen.png │ │ ├── release-highlights.png │ │ ├── reopen-with.png │ │ ├── sync-backup-views.png │ │ ├── sync-configure.png │ │ ├── task-pick.gif │ │ ├── timeline-sash.png │ │ ├── timeline.gif │ │ ├── turn-on-sync.png │ │ ├── view-progress.gif │ │ ├── viewsinactivitybar.gif │ │ ├── web-navigational-links.png │ │ └── web-remote-indicator.png │ ├── 1_45 │ │ ├── callstack-inline.png │ │ ├── clone.gif │ │ ├── custom-editor.png │ │ ├── customized-semantic-highlighting.png │ │ ├── dynamic-views.gif │ │ ├── dynamic.gif │ │ ├── gh-issue-notebook.gif │ │ ├── js-debug-copy.gif │ │ ├── js-debug-profiling.gif │ │ ├── move-composite.gif │ │ ├── new-constant-color-dark-theme.png │ │ ├── new-constant-color-light-theme.png │ │ ├── product-icon-themes.png │ │ ├── publish-repository.gif │ │ ├── quickdiff.gif │ │ ├── release-highlights.png │ │ ├── scroll-tabs.gif │ │ ├── settings-sync-github.png │ │ ├── sidebar-section-header.png │ │ ├── terminal-env-stale.png │ │ ├── terminal-links.gif │ │ ├── terminal-paste-after.png │ │ ├── terminal-paste-before.png │ │ ├── terminal-send-sequence.png │ │ ├── ts-prompt.png │ │ ├── ts-version-entry.png │ │ ├── ts-version-ui.png │ │ └── window-title-separator.png │ ├── 1_46 │ │ ├── automatic-debug-configs.png │ │ ├── azure-static-web-apps-extension.png │ │ ├── breakpoint.gif │ │ ├── code-git-editor.gif │ │ ├── custom-editor.png │ │ ├── custom-view-group.gif │ │ ├── edit-auto-configs.gif │ │ ├── git-add-remote.gif │ │ ├── hex-editor.gif │ │ ├── input-option-foreground.png │ │ ├── json-no-schema-download.png │ │ ├── move-views-panel-sidebar.gif │ │ ├── new-codicons.png │ │ ├── notebook-join-split-cells.gif │ │ ├── notebook-problems.png │ │ ├── notebook-quickouline.png │ │ ├── notebook-unified-undo-redo-stack.gif │ │ ├── pin-tabs.gif │ │ ├── publish-to-github.png │ │ ├── release-highlights.png │ │ ├── retained-notebook-editor.gif │ │ ├── scm-open-in-terminal.png │ │ ├── settings-sync-data.png │ │ ├── settings-sync-machines.png │ │ ├── settings-sync-merge.png │ │ ├── smooth-scrolling.gif │ │ ├── step-into.png │ │ ├── terminal-web.png │ │ ├── timeline-to-scm.gif │ │ ├── ts-common-js-auto-import.gif │ │ ├── ts-import-all-source-action.gif │ │ ├── ts-refactor-newline.gif │ │ ├── vscode-github-triage-ext-screenshot.png │ │ ├── watch-with-debug-console.gif │ │ ├── web-upload.gif │ │ └── win-arm64.png │ ├── 1_47 │ │ ├── call-stack-compaction.png │ │ ├── case-change-replace.gif │ │ ├── cmake-extension.png │ │ ├── codicons-icons.png │ │ ├── debugging-cells.gif │ │ ├── debugging-in-nodebook.gif │ │ ├── github-badge.png │ │ ├── hex-editor-editing.gif │ │ ├── java-installer-macos.png │ │ ├── notebook-create-untitled.gif │ │ ├── notebook-undo-redo.gif │ │ ├── notebook-ux.gif │ │ ├── object-settings-editor-after.jpg │ │ ├── object-settings-editor-before.jpg │ │ ├── object-settings-json-before.jpg │ │ ├── release-highlights.png │ │ ├── run-and-debug-actions.png │ │ ├── scm-view&sort.png │ │ ├── scm.png │ │ ├── settings-sync-turn-off-machine.png │ │ ├── terminal-link-provider.png │ │ ├── ts-deprecated.png │ │ ├── ts-refactor-docs.png │ │ ├── ts-refactor-reason.png │ │ └── web-upload.gif │ ├── 1_48 │ │ ├── cell-collapse.gif │ │ ├── codicons-webview.png │ │ ├── debug-open-link.gif │ │ ├── debug-status.png │ │ ├── extensions-filter-menu.png │ │ ├── extensions-overflow-menu.png │ │ ├── git-submenus.png │ │ ├── github-publish-public.png │ │ ├── hex-copy-paste.gif │ │ ├── hex-find-replace.gif │ │ ├── hex-selection.gif │ │ ├── notebook-dnd-grouped-cells.gif │ │ ├── notebook-reopen-with.gif │ │ ├── notebook-ux.png │ │ ├── release-highlights.png │ │ ├── scm-always-show-repositories.gif │ │ ├── settings-sync-manual-merge.gif │ │ ├── settings-sync-switch.png │ │ ├── settings-sync.png │ │ └── web-encoding.gif │ ├── 1_49 │ │ ├── auto-attach-no-inspect.png │ │ ├── cell_execution_order.png │ │ ├── cell_status_bar_item.png │ │ ├── editor-find-cursorMoveOnType.gif │ │ ├── error-stacktraces.png │ │ ├── filter.gif │ │ ├── format_modified.gif │ │ ├── java-variables.png │ │ ├── load-all.png │ │ ├── notebook-enhanced-text-diff.gif │ │ ├── notebook-switch-to-regular-text-diff.gif │ │ ├── release-highlights.png │ │ ├── scm-repositories.gif │ │ ├── task-detail.png │ │ ├── ts-convert-chain.gif │ │ ├── ts-deprecated-suggest.png │ │ ├── ts-deprecated-warning.png │ │ ├── ts-refactor-reason.png │ │ └── webview-view.png │ ├── 1_5 │ │ ├── Minimal.png │ │ ├── None.png │ │ ├── Seti.png │ │ ├── debug-console-attribute.png │ │ ├── debug_repl_multiline.png │ │ ├── debug_repl_suggest.png │ │ ├── debug_variable_paging.png │ │ ├── extension-details.png │ │ ├── extension-sort.png │ │ ├── extension-update-all.png │ │ ├── social.jpg │ │ └── ts-version-check.png │ ├── 1_50 │ │ ├── autosize-hover.gif │ │ ├── azure-cognitive-search.png │ │ ├── codicons.png │ │ ├── cpp-extension.png │ │ ├── debug-console-badge.png │ │ ├── docs-view.png │ │ ├── edge-tools-extension.png │ │ ├── eslint-dialog.png │ │ ├── eslint-status.png │ │ ├── ext-recommendations-queue.gif │ │ ├── git-no-verify.png │ │ ├── js-debug-compiled-code-step.png │ │ ├── js-debug-realtime.gif │ │ ├── keychain.png │ │ ├── left-heavy-flame.png │ │ ├── linux-arm.png │ │ ├── pinned_tabs.gif │ │ ├── release-highlights.png │ │ ├── scm-saves.gif │ │ ├── scm.gif │ │ ├── settings-editor.gif │ │ ├── template-string-converter-extension.gif │ │ ├── treeview-description.png │ │ └── webview-view.png │ ├── 1_51 │ │ ├── custom-tree-hover.gif │ │ ├── download-folder.gif │ │ ├── emmet-custom-snippets.gif │ │ ├── extension-install-donot-sync.png │ │ ├── git-tags.png │ │ ├── learn-to-code.png │ │ ├── local-echo.gif │ │ ├── markdown-smart-select-demo.gif │ │ ├── open-workspace.png │ │ ├── pinned-tabs.png │ │ ├── proxy-login.png │ │ ├── release-highlights.png │ │ ├── scm-commit-history-demo.gif │ │ ├── suggest-drag.gif │ │ ├── suggest-left.gif │ │ ├── suggest-status.png │ │ ├── timeline.png │ │ ├── tree-icon-color.png │ │ ├── web-confirmation.png │ │ └── webview-styles.gif │ ├── 1_52 │ │ ├── add-keybinding.png │ │ ├── auto-attach-disable.png │ │ ├── checkout-detached.gif │ │ ├── codelens-custom.png │ │ ├── codicons-updated.png │ │ ├── configure-keybinding.gif │ │ ├── configure-terminal-settings.gif │ │ ├── debug-hover-alt.png │ │ ├── edit-condition.png │ │ ├── editor-error-background.png │ │ ├── exception-condition.png │ │ ├── explorer-progress.gif │ │ ├── explorer-undo.gif │ │ ├── ext_bisect1.png │ │ ├── ext_bisect2.png │ │ ├── ext_bisect3.png │ │ ├── extension-activation-events.png │ │ ├── extension-add-recommendation.png │ │ ├── extension-disable.png │ │ ├── extension-editor-actions.png │ │ ├── extension-recommendation-notification.png │ │ ├── extensions-auto-refresh.gif │ │ ├── git-editor-label.png │ │ ├── git-show-output.png │ │ ├── github-learn-module.png │ │ ├── goto-definition.gif │ │ ├── html-unformattedContent.png │ │ ├── inline-markdown-smart-select.gif │ │ ├── keep-open.png │ │ ├── keyboard-shortcut-filters.png │ │ ├── markdown-tree-tooltip.gif │ │ ├── mslearn-module.png │ │ ├── notebook-large-output-optimization.gif │ │ ├── november-issue-grooming.png │ │ ├── open-editors-sorted.png │ │ ├── release-highlights.png │ │ ├── remove-recent-task.gif │ │ ├── repl-collapse.png │ │ ├── sash.gif │ │ ├── shell-env-error.png │ │ ├── shell-env-warning.png │ │ ├── snippet-hide.png │ │ ├── splitview-overflow.gif │ │ ├── status-error.png │ │ ├── sticky-tab-stops.gif │ │ ├── suggest-details.png │ │ ├── suggest-words.png │ │ ├── terminal-keybindings-notification.gif │ │ ├── tree-item-highlights.png │ │ ├── view-welcome.gif │ │ └── word-wrap-diff-editor.png │ ├── 1_53 │ │ ├── CI.png │ │ ├── SearchInOpenEditors.gif │ │ ├── SearchMode.gif │ │ ├── add-new-cell.gif │ │ ├── apple-silicon-download.png │ │ ├── breakpoint-widget.png │ │ ├── breakpoints.gif │ │ ├── choose-default-shell.png │ │ ├── codetour-extension.png │ │ ├── command-palette-dos-and-donts.png │ │ ├── containers-series.png │ │ ├── debug-console.png │ │ ├── destructive-undo.png │ │ ├── emmet-large-html-example.gif │ │ ├── external-opener-prompt.png │ │ ├── js-debug-conditional-exceptions.gif │ │ ├── js-debug-worker-thread.png │ │ ├── loading-icon.gif │ │ ├── macOS-universal-download.png │ │ ├── md-preview-update.gif │ │ ├── multiple-sessions.png │ │ ├── new-folder-file-icons.png │ │ ├── notebook-outline.png │ │ ├── notebook-rich-diff.png │ │ ├── open-editors.png │ │ ├── refactor-preview.png │ │ ├── release-highlights.png │ │ ├── tabs-deco.png │ │ ├── tabs-wrap.gif │ │ ├── testing.png │ │ └── ts-file-references.png │ ├── 1_54 │ │ ├── apple-silicon-download.png │ │ ├── brackets-keymap-extension.png │ │ ├── breakpoint-placeholder.png │ │ ├── breakpoints-x.png │ │ ├── codicons-updated.png │ │ ├── codicons.png │ │ ├── getting-started.gif │ │ ├── inline-values.gif │ │ ├── local-terminal-reconnection.gif │ │ ├── macOS-universal-download.png │ │ ├── new-untitled-file.png │ │ ├── notebook-focus.gif │ │ ├── notebook-math.png │ │ ├── product-icon-themes.png │ │ ├── release-highlights.png │ │ ├── run-menu.png │ │ ├── sash-hover-color.gif │ │ ├── select-for-compare.png │ │ ├── show-menu-bar.png │ │ ├── suggest-when-clause.png │ │ ├── table.png │ │ ├── tree-ux.png │ │ └── ts-deprecated-dom.png │ ├── 1_55 │ │ ├── brand-icon-example.png │ │ ├── brand-icon-exploration.png │ │ ├── brand-icon-insiders.png │ │ ├── brand-icon-stable.png │ │ ├── break-on-value.png │ │ ├── breakpoint-condition.png │ │ ├── copyas.png │ │ ├── extension-pack.png │ │ ├── getting-started.gif │ │ ├── js-debug-symlinks.png │ │ ├── notebook-math.png │ │ ├── notebook-multi-cells-selection-dnd.gif │ │ ├── notebook-multi-cells-selection.gif │ │ ├── notebook-multiselect-border.gif │ │ ├── notebook-show-differences.gif │ │ ├── raspberry-pi.png │ │ ├── release-highlights.png │ │ ├── tabs-deco.png │ │ ├── terminal-profile-selector.png │ │ └── terminal-profiles.png │ ├── 1_56 │ │ ├── actions.gif │ │ ├── azure-machine-learning.png │ │ ├── codicons.png │ │ ├── conflicting-defaults.gif │ │ ├── custom-dialogs.png │ │ ├── custom-hover.gif │ │ ├── data-breakpoints.png │ │ ├── debug-column.gif │ │ ├── exception-breakpoints.png │ │ ├── extensions-auto-update.png │ │ ├── getting-started-markdown.gif │ │ ├── intro-video-debugging.png │ │ ├── java-inline-values.png │ │ ├── js-debug-diagnostic-tool.png │ │ ├── markdown-typographer.png │ │ ├── notebook-math.png │ │ ├── notebook-toggle-line-numbers.gif │ │ ├── open-remote-repository.png │ │ ├── python-flow.gif │ │ ├── release-highlights.png │ │ ├── remote-indicator.png │ │ ├── remote-repositories.gif │ │ ├── status-icon.png │ │ ├── tabs-dropdown-button.png │ │ ├── tabs-inline-actions.png │ │ ├── tabs-menu-right-click.png │ │ ├── tabs-single.png │ │ ├── tabs.png │ │ ├── tasks-terminal-tabs.png │ │ ├── tasks-upgrade.png │ │ ├── trust-dialog.png │ │ ├── untitled-hint.png │ │ ├── webview-inspect-debug-scope.png │ │ ├── webview-inspect-exceptions.png │ │ ├── webview-inspect-in-main.png │ │ └── webview-inspect-open.png │ ├── 1_57 │ │ ├── debug-inspect-button.png │ │ ├── editor-dnd.gif │ │ ├── gear-manage-workspace-trust.png │ │ ├── inline-values.png │ │ ├── js-debug-edge.gif │ │ ├── js-debug-renames.png │ │ ├── js-go-def.gif │ │ ├── js-link.gif │ │ ├── notebook-focus-indicator.png │ │ ├── notebook-layout.png │ │ ├── notebook-output-toolbar.png │ │ ├── notebook-show-folding-icon-on-mouse-over.gif │ │ ├── notebook-toolbar.png │ │ ├── pytorch-logo-dark.png │ │ ├── quick-pick-light.png │ │ ├── release-highlights.png │ │ ├── remote-repositories-remote-explorer.png │ │ ├── restricted-mode-banner.png │ │ ├── restricted-mode-status-bar.png │ │ ├── reveal-breakpoint.gif │ │ ├── status-menu.png │ │ ├── suggest-light.png │ │ ├── suggest-preview.gif │ │ ├── tabs-drag-and-drop.gif │ │ ├── tabs-joining.gif │ │ ├── tabs-overview.png │ │ ├── tabs-split.gif │ │ ├── tabs-unsplit.gif │ │ ├── tb-debugging.png │ │ ├── tb-default.png │ │ ├── terminal-api-message.png │ │ ├── terminal-api-profile.png │ │ ├── terminal-task-status.png │ │ ├── terminal-title-executable.png │ │ ├── terminal-title-sequence.png │ │ ├── testing-peek.png │ │ ├── trusted-folders-workspaces-list.png │ │ ├── ts-import.gif │ │ ├── ts-infer-return.gif │ │ ├── ts-log-notification.png │ │ ├── webview-context-menu.png │ │ ├── welcomePageNoWalkthroughs.png │ │ ├── welcomePageWalkthroughs.gif │ │ ├── whats-new-in-vs-code.png │ │ ├── workspace-trust-dialog.png │ │ └── workspace-trust-editor.png │ ├── 1_58 │ │ ├── bool-object-renderer.gif │ │ ├── builtin-interactive-window.gif │ │ ├── completion-item-label.png │ │ ├── data-science-toc.png │ │ ├── debug-env.gif │ │ ├── enum-array-renderer.gif │ │ ├── inline-suggestions.gif │ │ ├── live-preview-summary-1.gif │ │ ├── live-preview-summary-2.gif │ │ ├── markdown-math-highlighting.png │ │ ├── markdown-math.png │ │ ├── modal-and-detail.png │ │ ├── notebook-debug.png │ │ ├── release-highlights.png │ │ ├── repl.png │ │ ├── rich-statusbar-hover.png │ │ ├── scroll-bar-width.png │ │ ├── settings-sync-troubleshoot.png │ │ ├── terminal-editor-grid.png │ │ ├── terminal-icon.png │ │ ├── terminal-profiles.png │ │ └── workspace-trust-settings.png │ ├── 1_59 │ │ ├── automaticlanguagedetection.gif │ │ ├── codicons.png │ │ ├── disassembly-view.gif │ │ ├── dynamic-extensions-view.gif │ │ ├── enum-array-dnd.gif │ │ ├── extension-details.png │ │ ├── extension-hover.png │ │ ├── extension-pack.png │ │ ├── extension-profile.png │ │ ├── extension-runtime-status.png │ │ ├── interactive-window.gif │ │ ├── java-extension-test-support.png │ │ ├── language-picker.gif │ │ ├── livepreview-browser-features.gif │ │ ├── livepreview-debugging.gif │ │ ├── multiline-setting.png │ │ ├── newFile.gif │ │ ├── notebook-cells.png │ │ ├── notebook-layout-improvements.png │ │ ├── notebook-toolbar.png │ │ ├── object-widget-validation.png │ │ ├── python-interpreters-list.png │ │ ├── release-highlights.png │ │ ├── rich-statusbar-hover.png │ │ ├── run-by-line.gif │ │ ├── run-debug-splitbutton.gif │ │ ├── shared-view-state.gif │ │ ├── terminal-active.png │ │ ├── terminal-animation.png │ │ ├── terminal-dnd.gif │ │ ├── terminal-styles.png │ │ └── testing.png │ ├── 1_6 │ │ ├── builtin.png │ │ ├── corrupt-install.png │ │ ├── dirty.png │ │ ├── extension-identifier.png │ │ ├── hover.png │ │ ├── icons.png │ │ ├── recommendations.png │ │ ├── release-highlights.png │ │ ├── status.png │ │ └── switch-window-animation.gif │ ├── 1_60 │ │ ├── auto-locked-editor-group.gif │ │ ├── bracket-pair-colorization-checker_ts.gif │ │ ├── bracket-pair-colorization-on-off.drawio.png │ │ ├── codicons-update.png │ │ ├── collapse-all-comments-button.png │ │ ├── debug-confirm-exit.png │ │ ├── dirty-terminal-dialog.png │ │ ├── inline-suggestions-suggest-preview.gif │ │ ├── js-spelling.png │ │ ├── julia-extension.png │ │ ├── jupyter-debug.gif │ │ ├── jupyter-rbl.gif │ │ ├── keep-editor-open.png │ │ ├── language-detection-notebooks.gif │ │ ├── language-detection-pipe.gif │ │ ├── language-detection-untitled.gif │ │ ├── locked-editor-group.gif │ │ ├── locked-editor-group.png │ │ ├── locked-editor-layout.png │ │ ├── notebook-layout-customization.png │ │ ├── notebook-links.gif │ │ ├── peek-error.png │ │ ├── peek-info.png │ │ ├── peek-references.png │ │ ├── peek-warning.png │ │ ├── python-run-and-debug-buttons.gif │ │ ├── python-test-explorer.png │ │ ├── quick-pick-buttons.png │ │ ├── quotes-query-pieces.gif │ │ ├── quotes-quick-pick.gif │ │ ├── release-highlights.png │ │ ├── run-to-line.gif │ │ ├── set-value.png │ │ ├── settings-editor-highlighting.png │ │ ├── terminal-custom-glyphs.png │ │ ├── terminal-glyph-after.png │ │ ├── terminal-glyph-before.png │ │ ├── themed-walkthrough.gif │ │ ├── ts-inlay-parameter-types.png │ │ ├── ts-inlay-parameters.png │ │ ├── ts-inlay-property-types.png │ │ ├── ts-inlay-return-type.png │ │ ├── ts-inlay-var-types.png │ │ ├── underscore-after.png │ │ └── underscore-before.png │ ├── 1_61 │ │ ├── bracket-pair-guides.png │ │ ├── buffer-restore.png │ │ ├── codicons.png │ │ ├── diff-editor.png │ │ ├── editor-readonly-deleted.png │ │ ├── emoji-ime.png │ │ ├── extension-toc-subtree.png │ │ ├── locked-editor-group-setting.png │ │ ├── macos-menu.png │ │ ├── new-python-walkthrough.png │ │ ├── non-error-test-output.png │ │ ├── notebook-new-file.gif │ │ ├── notebook-toc.gif │ │ ├── release-highlights.png │ │ ├── remote-containers-extension.png │ │ ├── scm-sync-button.png │ │ ├── scm-too-many-changes.png │ │ ├── split-in-group.gif │ │ ├── split-into-group.gif │ │ ├── terminal-content-width.gif │ │ ├── terminal-dimension-dropdown.png │ │ ├── ts-cross-file-github.png │ │ ├── ts-fold-jsx.png │ │ ├── ts-intellisense-status.png │ │ ├── ts-pin-version-status.gif │ │ └── webview-ui-toolkit-artwork.png │ ├── 1_62 │ │ ├── bidi-control-characters.png │ │ ├── bracket-pair-guides.gif │ │ ├── emmet-update-tag.gif │ │ ├── emoji_decorations.png │ │ ├── filter_kernels.gif │ │ ├── hover-below.png │ │ ├── html-attribute-value-completion.gif │ │ ├── insiders-vscode-dev-badge.svg │ │ ├── kernel_picker.png │ │ ├── notebook-find-capture-groups.gif │ │ ├── october-issue-cleanup.png │ │ ├── parameter-hints.png │ │ ├── release-highlights.png │ │ ├── search-match-whole-word.png │ │ ├── verified-publishers.png │ │ └── vscode-dev-badge.svg │ ├── 1_63 │ │ ├── auth-force.png │ │ ├── browse-themes.gif │ │ ├── commands-screencast.png │ │ ├── emmet-remove-tag.gif │ │ ├── enabled-api-proposals.png │ │ ├── extensions-pre-release-indicators.png │ │ ├── extensions-pre-release-install-indicators.png │ │ ├── extensions-pre-release-install.png │ │ ├── find-actions.gif │ │ ├── hover-providers-after.gif │ │ ├── hover-providers-before.gif │ │ ├── java-walkthrough.png │ │ ├── json-language-indicator.png │ │ ├── kernel_override_python_builtins.gif │ │ ├── md-custom-editor.gif │ │ ├── notebook-bare-link.png │ │ ├── notebook-fenced-codeblock.png │ │ ├── notebook-file-links.gif │ │ ├── notebook-toolbar-dynamic-label.gif │ │ ├── npm-scripts-view.png │ │ ├── numeric-object-settings-editor.png │ │ ├── pip_install.gif │ │ ├── python-limited-support.png │ │ ├── python-module-rename.gif │ │ ├── quickpick-separators.png │ │ ├── quickpickitem-buttons.png │ │ ├── release-highlights.png │ │ ├── ts-attribute-completion.gif │ │ ├── ts-method-completion.gif │ │ ├── ungrouped-config-settings-editor.png │ │ ├── unicode-highlighting-confusable.png │ │ ├── unicode-highlighting-invisible.png │ │ └── webview-web-find.png │ ├── 1_64 │ │ ├── cell-executing-spinner.gif │ │ ├── cell-fold-hint.png │ │ ├── collapse-gutter.gif │ │ ├── configure-layout-button.png │ │ ├── customize_layout.gif │ │ ├── debug-memory.png │ │ ├── explorer-undo.gif │ │ ├── file-nesting.png │ │ ├── github-commit-signing-prs.gif │ │ ├── interpreter_picker.png │ │ ├── js-debug-exclude-caller.gif │ │ ├── latex-sample.png │ │ ├── localAndRemoteJupyterTogether.gif │ │ ├── markdown-strike-through.png │ │ ├── md-header-suggestions.png │ │ ├── md-path-suggestions.png │ │ ├── move-view-locations.png │ │ ├── notebook-find-in-markup-output.gif │ │ ├── open-detected-link.png │ │ ├── panel_alignment.gif │ │ ├── panel_location.gif │ │ ├── pwa.png │ │ ├── python-folding.gif │ │ ├── python-smart-selection.gif │ │ ├── quickpick-separators.png │ │ ├── relative-cwd-link.png │ │ ├── release-highlights.png │ │ ├── remotehub-scm-multiple-selection.gif │ │ ├── settings-editor-search-by-value.png │ │ ├── settings-editor-search-java-first.png │ │ ├── settings-sync-machines.png │ │ ├── settings-sync-user-tasks.png │ │ ├── sidepanel_outline.gif │ │ ├── terminal-auto-reply.gif │ │ ├── terminal-recent-command.png │ │ ├── terminal-recent-directory.png │ │ ├── ts-surround-with.gif │ │ ├── view-reset-location.png │ │ └── vscode-bisect.gif │ ├── 1_65 │ │ ├── audio-cues-dropdown.png │ │ ├── audio-cues-settings.png │ │ ├── codicons.png │ │ ├── command-context-menu.png │ │ ├── command-decorations.png │ │ ├── command-hover.png │ │ ├── comments-view-refresh.png │ │ ├── dnd-problems.gif │ │ ├── hex-editor-data-inspector.png │ │ ├── history-group-aware.gif │ │ ├── history-notebooks.gif │ │ ├── inlay-hints.png │ │ ├── js-syntax-errors.png │ │ ├── lang-detect.gif │ │ ├── language-status.png │ │ ├── layout-control-options.png │ │ ├── lazy-after.gif │ │ ├── lazy-before.gif │ │ ├── lazy-vars.gif │ │ ├── light-hc-theme.png │ │ ├── notebook-search-in-text-output.gif │ │ ├── release-highlights.png │ │ ├── remotehub-merge-conflicts.gif │ │ ├── remotehub-stage-conflicts.gif │ │ ├── remotehub-stage-folder.gif │ │ ├── settings-editor-split-view.gif │ │ ├── status-bar-focus-borders.gif │ │ ├── sticky-scroll.gif │ │ ├── surround-with-snippet.gif │ │ ├── unicode-context.dio-after.png │ │ ├── unicode-context.dio-before.png │ │ └── web-local-recent.gif │ ├── 1_66 │ │ ├── active-interpreter-display.png │ │ ├── command-annotations.png │ │ ├── command-navigation.gif │ │ ├── comment-plus.gif │ │ ├── debug-detail.png │ │ ├── find-matches.png │ │ ├── find-scrollbar.png │ │ ├── focus-side-bar-commands.png │ │ ├── independentColorPoolPerBracketTypeDisabled.png │ │ ├── independentColorPoolPerBracketTypeEnabled.png │ │ ├── inline-quick-suggest.gif │ │ ├── inputboxseverity.png │ │ ├── js-debug-memory-profile.png │ │ ├── local-history.gif │ │ ├── markdown-ref-link.gif │ │ ├── named-index.png │ │ ├── new-notebook.png │ │ ├── notebook-find-scrollbar.gif │ │ ├── notification.png │ │ ├── proposal-drop-into-editor.gif │ │ ├── r-extension.png │ │ ├── release-highlights.png │ │ ├── rst-sample.png │ │ ├── scm.gif │ │ ├── settings-editor-lang-css-settings.gif │ │ ├── settings-editor-workspace-override.gif │ │ ├── sync-dialog.png │ │ ├── timeline-filter.png │ │ └── web-dnd.gif │ ├── 1_67 │ │ ├── api-drop.gif │ │ ├── bracket-matching-new.png │ │ ├── bracket-matching-old.png │ │ ├── command-palette-ux-guidelines.png │ │ ├── confirm-quit.gif │ │ ├── disable-breakpoints.gif │ │ ├── editor-diff-decorators.gif │ │ ├── editor-drop.gif │ │ ├── editor-placeholder.gif │ │ ├── export-settings-profile.gif │ │ ├── horizontal-bracket-guides.png │ │ ├── import-settings-profile.gif │ │ ├── incompatible-extension.png │ │ ├── inlineSuggest.gif │ │ ├── java-inlay-hints.gif │ │ ├── java-lazy-variable.gif │ │ ├── language-detection.gif │ │ ├── languageStatus.gif │ │ ├── lazy-var-button.png │ │ ├── md-drop-external.gif │ │ ├── md-drop-link.gif │ │ ├── md-file-references.gif │ │ ├── md-file-rename.png │ │ ├── md-header-references.png │ │ ├── md-ref-references.png │ │ ├── md-rename-header.gif │ │ ├── md-rename-references.png │ │ ├── md-url-references.png │ │ ├── multiline-comments.gif │ │ ├── nest-default.png │ │ ├── nest-dirname-basename.png │ │ ├── nest-dirname.png │ │ ├── release-highlights.png │ │ ├── rust-analyzer-extension.png │ │ ├── scm-repositories-view-sort.gif │ │ ├── se-filter-button.gif │ │ ├── suspend-debuggee.png │ │ ├── terminal-find-count.png │ │ ├── terminal-quick-pick.png │ │ ├── unbalanced-brackets-shell-new.png │ │ └── unbalanced-brackets-shell-old.png │ ├── 1_68 │ │ ├── branch-generation.gif │ │ ├── command_center.png │ │ ├── comment-primary-button.png │ │ ├── configure-display-language.png │ │ ├── deprecated-extension-alternate.png │ │ ├── deprecated-extension-builtin.png │ │ ├── deprecated-extension-migrate.png │ │ ├── deprecated-extension.png │ │ ├── edge-translations.png │ │ ├── hover-lock.gif │ │ ├── inputboxseverity.png │ │ ├── md-link-validation.png │ │ ├── md-paste.gif │ │ ├── notebook-seed-search-from-selection.gif │ │ ├── problems-view-table.png │ │ ├── release-highlights.png │ │ ├── select-debugger.png │ │ ├── settings-editor-language-specific-default.gif │ │ ├── settings-editor-working-links.gif │ │ ├── snap-layouts.png │ │ ├── sponsor-extension.png │ │ ├── terminal-contrast-dom.png │ │ ├── terminal-contrast-foreground.png │ │ ├── terminal-contrast-powerlines.png │ │ ├── terminal-contrast-reverse.png │ │ ├── terminal-find-bg.png │ │ ├── translations-core.png │ │ ├── ts-go-to-source.gif │ │ ├── ts-snippet-method.gif │ │ ├── ts-strict-null.png │ │ ├── view-as-table-button.png │ │ ├── view-toolbar.png │ │ └── vscode-dev-download.png │ ├── 1_69 │ │ ├── bp-hover.png │ │ ├── cc-polish.png │ │ ├── debug-filter-and-select.gif │ │ ├── debug-view-menu.gif │ │ ├── do-not-disturb.jpg │ │ ├── drag-for-comment.gif │ │ ├── emmet-inline-html.gif │ │ ├── eslint.png │ │ ├── goto-debug-quickaccess.gif │ │ ├── help-and-start.png │ │ ├── js-debug-custom-tostring.png │ │ ├── js-debug-step-in-target.png │ │ ├── js-debug-toggle-sourcemaps.gif │ │ ├── json-notifications.png │ │ ├── jupyter-extension-install.png │ │ ├── jupyter_chemiscope_widget.gif │ │ ├── jupyter_ihaskell_widgets.gif │ │ ├── loaded-scripts.gif │ │ ├── merge-editor.gif │ │ ├── merge-editor2.gif │ │ ├── merge-editor3.gif │ │ ├── minimap-context-menu.png │ │ ├── refactor-preview.png │ │ ├── refactoring-editor.gif │ │ ├── release-highlights.png │ │ ├── scm-branch-protection-picker.png │ │ ├── scm-branch-protection-statusbar.png │ │ ├── scm-commit-action-button.gif │ │ ├── scm-git-editor.gif │ │ ├── settings-editor-new-indicators.gif │ │ ├── settings-profile-create.gif │ │ ├── settings-profile-multiple.png │ │ ├── settings-profile-remove.png │ │ ├── settings-profile-switch.gif │ │ ├── share-vscode-dev-link.gif │ │ ├── task-error.png │ │ ├── task-icon.png │ │ ├── task-success-fail.png │ │ ├── terminal-message-loud.png │ │ ├── terminal-message-subtle.png │ │ ├── terminal-powerline-after.png │ │ ├── terminal-powerline-before.png │ │ ├── terminal-setmark.png │ │ ├── terminal-si-command-nav.gif │ │ ├── terminal-si-decoration-menu.png │ │ ├── terminal-si-decorations.png │ │ ├── terminal-si-go-to-dir.gif │ │ ├── terminal-si-recent-command.png │ │ └── theme-tester-marketplace.png │ ├── 1_7 │ │ ├── css-intellisense-in-html.png │ │ ├── disableAll.png │ │ ├── disableExtension.png │ │ ├── extensionPack.png │ │ ├── format-context-menu.png │ │ ├── hitCount.gif │ │ ├── horizontal.png │ │ ├── keyboard-shortcuts-pdf.png │ │ ├── keymaps.png │ │ ├── launchjson.png │ │ ├── marketplace-formatters.png │ │ ├── multiDebug.gif │ │ ├── release-highlights.png │ │ └── toggle-horizontal-layout.png │ ├── 1_70 │ │ ├── api-drop.gif │ │ ├── automatic-debug-configuration.gif │ │ ├── azure-dev-cli-extension.png │ │ ├── clear-display-language.png │ │ ├── code-action-all.gif │ │ ├── copy-plot-to-clipboard.png │ │ ├── debug-sessions.gif │ │ ├── dev-containers-spec.png │ │ ├── go-to-most-recently-failed-cell.gif │ │ ├── interactive-window-restore.gif │ │ ├── interpreter-info.png │ │ ├── macos-title-bar-zooming.gif │ │ ├── manual-folding-range.gif │ │ ├── markdown-attachment-rendered.png │ │ ├── markdown-attachment-source.png │ │ ├── menu-bar-folding.gif │ │ ├── new-file.png │ │ ├── python-get-started.png │ │ ├── qute-html-participant.gif │ │ ├── release-highlights.png │ │ ├── restored-folding-ranges.gif │ │ ├── search-decorations.png │ │ ├── search-multiselect.gif │ │ ├── select-image-png.png │ │ ├── set-display-language.png │ │ ├── settings-profiles.gif │ │ ├── sticky-scroll.gif │ │ ├── system-context-menu.png │ │ ├── terminal-curve-render.png │ │ ├── terminal-nav-feedback.png │ │ ├── terminal-render-clip.png │ │ ├── terminal-render-px.png │ │ ├── terminal-semi-circle.png │ │ ├── terminal-si-config.png │ │ ├── terminal-si-intro.png │ │ ├── terminal-si-multi-line.png │ │ ├── terminal-si-run-recent-command.gif │ │ ├── title-bar-context-menu.png │ │ ├── tree-filter.gif │ │ └── webview-context-menus.png │ ├── 1_71 │ │ ├── code-action-disabled-hover.png │ │ ├── code-action-widget.png │ │ ├── codec.gif │ │ ├── comments-editor-decoration.gif │ │ ├── comments-filtering.gif │ │ ├── continue-on-codespaces.gif │ │ ├── enum-item-labels.png │ │ ├── live-preview-multi-root-demo.gif │ │ ├── live-preview-server-status.png │ │ ├── livestream.png │ │ ├── md-link-update.gif │ │ ├── merge-editor-open-file-old-decorators.gif │ │ ├── merge-editor-side-by-side.gif │ │ ├── mergeHint.gif │ │ ├── pylance-notebooks-lsp.gif │ │ ├── release-highlights.png │ │ ├── renameToggle.gif │ │ ├── rounded-buttons.png │ │ ├── screenshot_paste.gif │ │ ├── settings-profiles-temp.gif │ │ ├── sticky-scroll-ctrlclick.gif │ │ ├── suggestMatchWordStart.gif │ │ ├── terminal-blurry.png │ │ ├── terminal-descenders.png │ │ ├── terminal-inactive.png │ │ ├── terminal-mcr-flip.png │ │ ├── terminal-powerline-clip.png │ │ ├── terminal-underlines.png │ │ └── windows-snap-layout.png │ ├── 1_72 │ │ ├── bp-hover.png │ │ ├── code-vscode.mp4 │ │ ├── code-vscode.png │ │ ├── continue-on-codespaces.mp4 │ │ ├── continue-on-codespaces.png │ │ ├── continue-on-turn-on.png │ │ ├── create_venv.gif │ │ ├── dev-containers-extension.png │ │ ├── editor-hover-after.mp4 │ │ ├── editor-hover-before.mp4 │ │ ├── editor-hover.png │ │ ├── extensions-badge.png │ │ ├── extensions-filter-sort.png │ │ ├── extensions-ignore-updates.png │ │ ├── extensions-recently-updated.png │ │ ├── extensions-require-attention.png │ │ ├── extensions-undo-ignore-updates.png │ │ ├── ghe-auth.mp4 │ │ ├── ghe-auth.png │ │ ├── ghin-code-actions.gif │ │ ├── hide-actions.mp4 │ │ ├── iw-keyboard.gif │ │ ├── log-output-channel.png │ │ ├── md-link-validation.png │ │ ├── merge-editor-checkboxes-vs-codelens.drawio.png │ │ ├── merge-editor-checkboxes.png │ │ ├── merge-editor-code-lens-ui.png │ │ ├── merge-editor-open-in-merge-editor.png │ │ ├── notebook-cell-tags.gif │ │ ├── notebook-outline-html-headers.png │ │ ├── notebook-slideshow.gif │ │ ├── pinned-tasks.png │ │ ├── python-execution.png │ │ ├── python-repl.png │ │ ├── quick-fix-create-pr.png │ │ ├── quick-fix-free-port.png │ │ ├── quick-fix-push.png │ │ ├── quick-fix-similar.png │ │ ├── release-highlights.png │ │ ├── remote-status-message.png │ │ ├── search-file-decoration-settings.png │ │ ├── search-tree-view.gif │ │ ├── selection-auto-scroll.mp4 │ │ ├── selection-auto-scroll.png │ │ ├── settings-profiles-indicator.png │ │ ├── settings-profiles-menu.png │ │ ├── terminal-hyperlink.png │ │ ├── tree-item-checkbox-state.png │ │ ├── tree-move.gif │ │ ├── tree-remember.gif │ │ ├── video-preview.png │ │ ├── view-badge.png │ │ ├── vscode-coi.png │ │ ├── warning.png │ │ ├── webview-context-menus.png │ │ ├── workspace-edit-snippet.mp4 │ │ └── wsl-extension.png │ ├── 1_73 │ │ ├── Nov2022-PylintPrompt.png │ │ ├── command-center-home.mp4 │ │ ├── compare-with-base.gif │ │ ├── diff-algorithm-after.png │ │ ├── diff-algorithm-before.png │ │ ├── exclude-folder-from-search.gif │ │ ├── folding-limit-warning.png │ │ ├── list-icon-styles.mp4 │ │ ├── log-level-output-channel.png │ │ ├── md-duplicate-link-def.png │ │ ├── md-insert-image.mp4 │ │ ├── md-link-highlight.png │ │ ├── md-link-update.gif │ │ ├── merge-accept-both.gif │ │ ├── merge-accept-combination.gif │ │ ├── merge-conflict-counter.gif │ │ ├── new-view-menu.png │ │ ├── quick-pick-list-styles.mp4 │ │ ├── release-highlights.png │ │ ├── restrict-search-to-folder.gif │ │ ├── rounded-corners-inputs.png │ │ ├── secondary-sidebar-foreground.png │ │ ├── settings-editor-indicators-keyboard.gif │ │ ├── synced-profiles.png │ │ ├── windows11_insiders_context_menu.png │ │ └── windows11_insiders_context_menu_setup.png │ ├── 1_74 │ │ ├── audio-cues-dropdown.png │ │ ├── comments-view-badge.png │ │ ├── continue-on-command-palette.png │ │ ├── exception-breakpoints.gif │ │ ├── hide-view-badge.gif │ │ ├── kernel-picker.gif │ │ ├── lock-branch.png │ │ ├── profile-export.gif │ │ ├── profile-import.gif │ │ ├── python-debug.png │ │ ├── release-highlights.png │ │ ├── scm-action-button.png │ │ ├── settings-indicator-tabbing.gif │ │ ├── task-action-dropdown.png │ │ ├── terminal-action-widget.png │ │ ├── tunnels-turn-on.mp4 │ │ ├── visible-resolve-button.png │ │ └── wco-rtl-example.png │ ├── 1_75 │ │ ├── code-action-scroll.mp4 │ │ ├── commonly-used-with-recently-used.png │ │ ├── commonly-used.png │ │ ├── contiguous.mp4 │ │ ├── continue-on-local-clone.mp4 │ │ ├── continue-on-publish-branch.mp4 │ │ ├── continue-on-remote-indicator.png │ │ ├── css-color-decorators.png │ │ ├── customize-layout.png │ │ ├── eslint-language-status.png │ │ ├── export-share-profile.gif │ │ ├── extension-show-keyboard-shortcuts.png │ │ ├── find-go-to-match.gif │ │ ├── git-repository-in-parent-folders.png │ │ ├── global-settings-menu.png │ │ ├── grid.mp4 │ │ ├── inline-completions-hover.gif │ │ ├── keyboard-shortcuts-extensions.png │ │ ├── large-file-confirm.png │ │ ├── livepreview-custom-browser.png │ │ ├── livepreview-server-root-demo.mp4 │ │ ├── notebook-join-cells.gif │ │ ├── notebook-overviewruler.png │ │ ├── notebook-renderer-fallback.png │ │ ├── noterbook-kernel-picker.gif │ │ ├── panel-context-menu.png │ │ ├── pylance-auto-indent.mp4 │ │ ├── release-highlights.png │ │ ├── release-notes.png │ │ ├── sash.mp4 │ │ ├── settings-indicators-keynav.mp4 │ │ ├── suggest-select-mode.mp4 │ │ ├── terminal-accessibility-help.png │ │ ├── terminal-after-triangle.png │ │ ├── terminal-before-triangle.png │ │ ├── terminal-dnd.png │ │ ├── terminal-feedback-provider.png │ │ ├── terminal-go-to-dir.png │ │ ├── terminal-open-link.png │ │ ├── terminal-profile-1.png │ │ ├── terminal-profile-2.png │ │ ├── terminal-profile-3.png │ │ ├── terminal-run-command.png │ │ ├── terminal-selected-text-after.png │ │ ├── terminal-selected-text-before.png │ │ ├── terminal-square-bracket.png │ │ ├── terminal-view-overflow.png │ │ ├── terminal-view-toggle.png │ │ ├── trust-editor-shortcuts.png │ │ ├── v2-themes.png │ │ ├── when-context-key-suggestions.png │ │ └── work-profile.png │ ├── 1_76 │ │ ├── default-log-level.png │ │ ├── experimental_notebook_search.mp4 │ │ ├── file-explorer-panel.png │ │ ├── list-audio-cues-dropdown.png │ │ ├── md-workspace-header-suggestion-insert.png │ │ ├── md-workspace-header-suggestion.png │ │ ├── multiple-quick-diff.png │ │ ├── notebook-error-renderer.gif │ │ ├── notebook-renderer-performance-diagnostics.png │ │ ├── profile-badge.png │ │ ├── pylance-pytest-intellisense.mp4 │ │ ├── quickpick-prompt-links.png │ │ ├── quickpick-tooltip.mp4 │ │ ├── quickpick-validation-links.png │ │ ├── release-highlights.png │ │ ├── remote-indicator.mp4 │ │ ├── remote-profiles.png │ │ ├── search_after.png │ │ ├── search_before.png │ │ ├── star-activation.png │ │ ├── switch-profile.png │ │ ├── verified-publisher-domain.png │ │ ├── web-git-lfs.mp4 │ │ └── when-clause-linter.png │ ├── 1_77 │ │ ├── copilot-extension.png │ │ ├── create-env-python-dependencies-files.png │ │ ├── github-permalink.mp4 │ │ ├── gitignore.mp4 │ │ ├── merge-editor-overview.png │ │ ├── notebook-find-in-output.mp4 │ │ ├── notebook-format-on-save.mp4 │ │ ├── notebook-kernel-empty-conda-env.png │ │ ├── notebook-scrollable-output.mp4 │ │ ├── notebook-search.mp4 │ │ ├── pylance-move-symbol.mp4 │ │ ├── release-highlights.png │ │ ├── scm-inline.png │ │ ├── slash-commands-example.png │ │ ├── terminal-tab-hover.png │ │ └── ts-case-completions.mp4 │ ├── 1_78 │ │ ├── ask-copilot.png │ │ ├── chat-code-actions.mp4 │ │ ├── chat-codeblock-commands.png │ │ ├── chat-editor.png │ │ ├── command-palette-similar-results-2.png │ │ ├── command-palette-similar-results.png │ │ ├── dark-light-modern-themes.png │ │ ├── data-science-project-template.png │ │ ├── deprecated-extension-notification.png │ │ ├── diff-example1-advanced.png │ │ ├── diff-example1-legacy.png │ │ ├── diff-example2-advanced.png │ │ ├── diff-example2-legacy.png │ │ ├── diff-example3-advanced.png │ │ ├── diff-example3-legacy.png │ │ ├── diff-example4-advanced.png │ │ ├── diff-example4-legacy.png │ │ ├── drop-widget.mp4 │ │ ├── extension-recommendations-notification-multiple.png │ │ ├── extension-recommendations-notification-single.png │ │ ├── glyph-decorations.png │ │ ├── html-strict-null.png │ │ ├── md-video-insert.mp4 │ │ ├── notebook-drop-attachment.png │ │ ├── notebook-drop.png │ │ ├── notebook-find-replace.mp4 │ │ ├── notebook-toggle-scrolling.mp4 │ │ ├── profile-template-dropdown.png │ │ ├── pylance-fstring-conversion.mp4 │ │ ├── pylance-string-navigation.mp4 │ │ ├── release-highlights.png │ │ ├── run-python-submenu.png │ │ ├── scm-quick-fix.mp4 │ │ ├── standalone-color-picker.png │ │ ├── terminal-accessibility-help.mp4 │ │ ├── testing-continous-run.png │ │ └── ts-rename-jsx.mp4 │ ├── 1_8 │ │ ├── add-config.gif │ │ ├── breakpoints.png │ │ ├── css-in-html.png │ │ ├── debug-actions-widget.png │ │ ├── debug-callstack.png │ │ ├── debug-start.png │ │ ├── diff-indicators.png │ │ ├── hide-activitybar.gif │ │ ├── javascript-in-html.gif │ │ ├── overflow.png │ │ ├── quick-edit-settings.gif │ │ ├── recommended-keymap-extensions.png │ │ ├── release-highlights.png │ │ ├── render-line-highlight.png │ │ ├── reverse-continue.png │ │ ├── search-settings.gif │ │ ├── selection-menu.png │ │ ├── settings-groups.png │ │ ├── view-picker.png │ │ └── viewlet.gif │ ├── 1_9 │ │ ├── add_launch.png │ │ ├── closeall.png │ │ ├── configure-lang-mode.png │ │ ├── confirming-php.png │ │ ├── copy_stack.png │ │ ├── dimmed-callstack.png │ │ ├── extensionpack-generator.png │ │ ├── inline_values.png │ │ ├── inspect-tm-scopes.png │ │ ├── interactive-playground.png │ │ ├── interface-overview.png │ │ ├── lang-based-settings.png │ │ ├── lang-selection.png │ │ ├── language-mode.png │ │ ├── launch-snippets.png │ │ ├── log-objects.png │ │ ├── markdown-double-click-preview-switch.gif │ │ ├── markdown-preview-to-editor-scroll-sync.gif │ │ ├── markdown-selection-preview-scroll-sync.gif │ │ ├── no_folder_debug.gif │ │ ├── output_scroll_lock.png │ │ ├── panel.png │ │ ├── pref-config-lang-settings.png │ │ ├── release-highlights.png │ │ ├── search-result-nav.gif │ │ ├── settings.png │ │ ├── tab-context.png │ │ ├── tabclose.png │ │ ├── tasks.gif │ │ ├── terminal-after.gif │ │ ├── terminal-before.gif │ │ ├── toggle-skip-file.png │ │ ├── ts-references-code-lens-peek.png │ │ ├── ts-references-code-lens.png │ │ ├── ts-select-ts-version-message.png │ │ ├── ts-status-bar-version.png │ │ └── welcome-page.png │ ├── April │ │ ├── call-stack-paging.png │ │ ├── es6-generator-support.png │ │ ├── es6-map-support.png │ │ ├── es6-set-support.png │ │ └── smartStepping.gif │ ├── December │ │ ├── debug-repl-wrap.png │ │ ├── extension-issues.png │ │ ├── fuzzy-search.png │ │ ├── git-status-bar-publish.png │ │ ├── git-status-bar-sync.png │ │ ├── key-binding-widget.png │ │ ├── keybindings-json.png │ │ ├── path-search.png │ │ └── render-key-binding.png │ ├── February │ │ ├── breakpoint-exclam.png │ │ ├── breakpoint-options.png │ │ ├── close-other-files.png │ │ ├── ext-csharp.png │ │ ├── extension-tips-2.png │ │ ├── folding.png │ │ ├── function-breakpoint.gif │ │ ├── high-contrast.png │ │ ├── indentation-1.png │ │ ├── indentation-2.png │ │ ├── mono-debug-install.png │ │ ├── open-definition-to-side.png │ │ ├── pre-launch-task-error.png │ │ ├── quick-open-working-files.png │ │ ├── react-native.png │ │ ├── relative-path-error.png │ │ └── shell-command.png │ ├── January │ │ ├── api-virtual-documents.png │ │ ├── conditional-breakpoints.png │ │ ├── dark_plus_theme.png │ │ ├── debug-hover.png │ │ ├── debug-inlined-source.png │ │ ├── editor-ligatures.png │ │ ├── es3-classes.png │ │ ├── find-widget-counts.png │ │ ├── german-vscode.png │ │ ├── intellisense-1.png │ │ ├── intellisense-2.png │ │ ├── jsdoc.png │ │ ├── jsx-salsa.png │ │ ├── light_plus_theme.png │ │ ├── output.png │ │ ├── salsa-commonjs.png │ │ ├── salsa-status-failure.png │ │ ├── salsa-status.png │ │ └── variables-change.png │ ├── July_2016 │ │ ├── editor-actions-title.png │ │ ├── groupSorting.png │ │ ├── insertSnippet.gif │ │ ├── restartFrame.gif │ │ ├── social.jpg │ │ ├── tabCompletion.gif │ │ ├── terminal_ime.png │ │ └── variablePaging.png │ ├── June_2016 │ │ ├── attach_to_process.png │ │ ├── color_decorators.png │ │ ├── commad_ids.png │ │ ├── dnd_debug.gif │ │ ├── dnd_editor.gif │ │ ├── editor-indent-guides.jpg │ │ ├── editor-mouse-wheel-zoom.gif │ │ ├── extensions-view-icon.png │ │ ├── extensions_viewlet.png │ │ ├── menus-contributions.png │ │ ├── monaco-editor-playground.png │ │ ├── multiline-find.gif │ │ ├── open_editors.png │ │ ├── overflow.png │ │ ├── preview_editor.png │ │ ├── problems.png │ │ ├── searchAndReplace.png │ │ ├── set_variable_value.gif │ │ ├── social.jpg │ │ ├── stacks.png │ │ ├── step_back.png │ │ ├── tabs.png │ │ ├── terminal_multiple_instances.png │ │ ├── terminal_run_selected.png │ │ ├── terminal_run_selected_result.png │ │ └── terminal_selection.png │ ├── March │ │ ├── column-select-mouse.gif │ │ ├── diagnostics.png │ │ ├── extension-widget-notification.png │ │ ├── extension-widget.png │ │ ├── gitconfig.png │ │ ├── indentation.png │ │ ├── jsconfig-hint.png │ │ ├── jsconfig-template.png │ │ ├── language.png │ │ ├── statusbar_bom.png │ │ └── tasks.png │ └── May_2016 │ │ ├── css-peek-definition.png │ │ ├── integrated-terminal.png │ │ ├── many-locals.png │ │ ├── peek.gif │ │ ├── selectAllFindMatches.gif │ │ ├── tabsprogress.png │ │ └── trimAutoWhitespace.gif ├── v0_3_0.md ├── v0_5_0.md ├── v0_7_0.md ├── v0_8_0.md ├── v0_9_0.md ├── v1_10.md ├── v1_11.md ├── v1_12.md ├── v1_13.md ├── v1_14.md ├── v1_15.md ├── v1_16.md ├── v1_17.md ├── v1_18.md ├── v1_19.md ├── v1_20.md ├── v1_21.md ├── v1_22.md ├── v1_23.md ├── v1_24.md ├── v1_25.md ├── v1_26.md ├── v1_27.md ├── v1_28.md ├── v1_29.md ├── v1_30.md ├── v1_31.md ├── v1_32.md ├── v1_33.md ├── v1_34.md ├── v1_35.md ├── v1_36.md ├── v1_37.md ├── v1_38.md ├── v1_39.md ├── v1_40.md ├── v1_41.md ├── v1_42.md ├── v1_43.md ├── v1_44.md ├── v1_45.md ├── v1_46.md ├── v1_47.md ├── v1_48.md ├── v1_49.md ├── v1_5.md ├── v1_50.md ├── v1_51.md ├── v1_52.md ├── v1_53.md ├── v1_54.md ├── v1_55.md ├── v1_56.md ├── v1_57.md ├── v1_58.md ├── v1_59.md ├── v1_6.md ├── v1_60.md ├── v1_61.md ├── v1_62.md ├── v1_63.md ├── v1_64.md ├── v1_65.md ├── v1_66.md ├── v1_67.md ├── v1_68.md ├── v1_69.md ├── v1_7.md ├── v1_70.md ├── v1_71.md ├── v1_72.md ├── v1_73.md ├── v1_74.md ├── v1_75.md ├── v1_76.md ├── v1_77.md ├── v1_78.md ├── v1_79.md ├── v1_8.md ├── v1_9.md ├── vApril.md ├── vDecember.md ├── vFebruary.md ├── vJanuary.md ├── vMarch.md └── vNovember.md ├── remote-release-notes ├── css │ └── inproduct_releasenotes.css ├── images │ ├── 1_35 │ │ └── docker-host-attach.png │ ├── 1_36 │ │ ├── close-connection.png │ │ ├── dnd.gif │ │ ├── download.png │ │ ├── explorer-label.png │ │ ├── reopen-in-wsl.png │ │ ├── rpi.png │ │ ├── save_local.png │ │ ├── select-distro.png │ │ ├── terminal-local.png │ │ └── wsl-with-distro.png │ ├── 1_37 │ │ ├── alpine.png │ │ ├── install-local-extensions-remote.gif │ │ └── remote-settings.png │ ├── 1_38 │ │ ├── consistency-setting.png │ │ └── containers-explorer.png │ ├── 1_39 │ │ ├── prompt-rebuild-container.png │ │ ├── repository-containers-explorer.png │ │ ├── terminal-tunnel.gif │ │ └── wsl-remote-explorer.png │ ├── 1_41 │ │ ├── remote-explorer.gif │ │ └── remote-try-sample.png │ ├── 1_42 │ │ ├── addtodevcontainerjson.png │ │ ├── dotfiles.png │ │ ├── forwarded-ports.png │ │ ├── reveal-in-explorer-2.png │ │ └── reveal-in-explorer.png │ ├── 1_43 │ │ ├── general-dotfiles-settings.png │ │ └── remote-recommendation.png │ ├── 1_44 │ │ ├── checkout-pr-status.png │ │ ├── checkout-pr.png │ │ ├── checkout-unique.png │ │ ├── devcontainer-progress.png │ │ └── k8s-attach.png │ ├── 1_45 │ │ ├── add-configuration.png │ │ └── containers-wsl2-support.png │ ├── 1_46 │ │ ├── docker-path.png │ │ ├── extensions-install-preferred.png │ │ └── inspect-volume.png │ ├── 1_47 │ │ ├── reopenincontainernotification.png │ │ └── repoconfigpathssetting.png │ ├── 1_49 │ │ ├── clone-github-repo.png │ │ ├── java-option-picker.png │ │ ├── java-version-picker.png │ │ ├── welcome-containers-docker.png │ │ ├── welcome-containers-no-docker.gif │ │ ├── welcome-ssh.png │ │ └── welcome-wsl.png │ ├── 1_50 │ │ ├── containers-details-section.png │ │ ├── containers-log-coloring.png │ │ ├── containers-show-all-logs.png │ │ ├── port-forwarded-notification.png │ │ └── wsl-inherit-env.png │ ├── 1_51 │ │ ├── auto-forward-console.gif │ │ ├── moveable-ports-view.gif │ │ ├── ports-statusbar.png │ │ ├── ports-welcome-view.png │ │ └── terminal-attach.gif │ ├── 1_52 │ │ ├── ports-view-no-process.png │ │ ├── ports-view-with-process.png │ │ └── remote-open-browser.gif │ ├── 1_53 │ │ ├── ports-attributes.gif │ │ ├── ports-view-more-info.png │ │ ├── reconnecting.png │ │ ├── terminal-link-hover.gif │ │ └── terminal-splits-persist.gif │ ├── 1_54 │ │ ├── ports-attributes-devcontainer-json.png │ │ ├── ports-extension-host-process.png │ │ ├── ports-view-table.gif │ │ ├── postcreate-in-background.gif │ │ ├── preview-port-in-editor.gif │ │ └── set-port-label-devcontainer.gif │ ├── 1_56 │ │ ├── containers-view.png │ │ ├── devvolumes-view.png │ │ ├── local_terminals.png │ │ ├── ports-view-running-icon.png │ │ └── remote-indicator-menu.png │ ├── 1_57 │ │ └── port-multi-delete.gif │ ├── 1_58 │ │ └── host-requirements.png │ ├── 1_61 │ │ ├── configure_container_features.png │ │ ├── container_features_intellisense.png │ │ ├── execute_in_wsl.png │ │ └── forwarded_port_dns.png │ ├── 1_62 │ │ ├── distro-picker.png │ │ ├── ssh-folder-sorting-setting.png │ │ └── wsl-remote-indicator-hover.png │ ├── 1_63 │ │ ├── container-features-documentation-links.png │ │ ├── reopen-in-container-from-ssh.png │ │ ├── ssh-port-range-setting.png │ │ └── ssh-server-path-setting.png │ ├── 1_64 │ │ ├── ssh-pre-release.gif │ │ └── ssh-remote-command.png │ ├── 1_70 │ │ ├── dev-container-stages.png │ │ └── devcontainer-feature-test.png │ ├── 1_72 │ │ ├── dev-containers-extension.png │ │ └── wsl-extension.png │ ├── 1_73 │ │ ├── create-dev-container.png │ │ ├── dev-container-feature-picker.png │ │ ├── dev-container-gh-editor.png │ │ └── dev-container-template-picker.png │ ├── 1_74 │ │ └── create-dev-container.png │ ├── 1_75 │ │ ├── rebuild-devcontainer-notification.png │ │ └── select-devcontainer-config.png │ ├── 1_76 │ │ └── bind-mount-performance.png │ ├── 1_77 │ │ ├── clean-up-containers-and-volumes.png │ │ ├── remote-tunnel-singleton.png │ │ └── tunnel-open-in-desktop.png │ └── 1_78 │ │ └── devcontainers-lockfile.png ├── v1_35.md ├── v1_36.md ├── v1_37.md ├── v1_38.md ├── v1_39.md ├── v1_41.md ├── v1_42.md ├── v1_43.md ├── v1_44.md ├── v1_45.md ├── v1_46.md ├── v1_47.md ├── v1_48.md ├── v1_49.md ├── v1_50.md ├── v1_51.md ├── v1_52.md ├── v1_53.md ├── v1_54.md ├── v1_55.md ├── v1_56.md ├── v1_57.md ├── v1_58.md ├── v1_59.md ├── v1_60.md ├── v1_61.md ├── v1_62.md ├── v1_63.md ├── v1_64.md ├── v1_65.md ├── v1_66.md ├── v1_67.md ├── v1_68.md ├── v1_69.md ├── v1_70.md ├── v1_71.md ├── v1_72.md ├── v1_73.md ├── v1_74.md ├── v1_75.md ├── v1_76.md ├── v1_77.md └── v1_78.md ├── remote └── advancedcontainers │ ├── add-local-file-mount.md │ ├── add-nonroot-user.md │ ├── change-default-source-mount.md │ ├── configure-separate-containers.md │ ├── connect-multiple-containers.md │ ├── develop-remote-host.md │ ├── docker-options.md │ ├── environment-variables.md │ ├── images │ ├── configure-separate-containers │ │ ├── containers-explorer-python.png │ │ ├── dev-container-progress.png │ │ ├── open-folder-python.png │ │ ├── remote-dev-status-bar.png │ │ └── select-dev-container-def-python.png │ ├── environment-variables │ │ └── inherit-env.png │ ├── improve-performance │ │ └── workspace-mount-setting.png │ └── platform-options │ │ └── docker-path-setting.png │ ├── improve-performance.md │ ├── overview.md │ ├── persist-bash-history.md │ ├── questions-feedback.md │ ├── reduce-docker-warnings.md │ ├── set-docker-compose-project-name.md │ ├── sharing-git-credentials.md │ ├── start-processes.md │ └── use-docker-kubernetes.md ├── wiki └── images │ └── README.md └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | trim_trailing_whitespace = true 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | node_modules 3 | 4 | .DS_Store 5 | .vscode/spell.json 6 | 7 | .idea 8 | 9 | *.sublime-project 10 | *.sublime-workspace -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | ./node_modules/.bin/lint-staged -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore all Markdown files: 2 | *.md -------------------------------------------------------------------------------- /api/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 92, 3 | "tabWidth": 2, 4 | "singleQuote": true 5 | } -------------------------------------------------------------------------------- /api/references/images/theme-color/line.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c036ce00e13b07547c9c8c08ca08a2a44cea415b01413dc362d8b7510c89ec4 3 | size 4867 4 | -------------------------------------------------------------------------------- /api/references/images/theme-color/link.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f389bf72e37640a0c0c0f4b4f671e3bc1edf585f6f5b17189e78f0f3b30544e 3 | size 3739 4 | -------------------------------------------------------------------------------- /blogs/2016/02/01/insiders_build_icon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4e4bd3e7ee90c7ae44bd9a5bc1d510a2f38bbf97b0bcc4b5eec11dafcb9fe47f 3 | size 44224 4 | -------------------------------------------------------------------------------- /blogs/2016/02/01/opengraph_insiders.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a541434120012ce00b7316ca5bbd90509da04a1b29f8512599e9a4da614326ae 3 | size 19039 4 | -------------------------------------------------------------------------------- /blogs/2016/03/11/change-case_demo.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b9df54ee26a1e55c552856d023fad8c5d8d6153ad6735385aba15e621de4d31a 3 | size 172289 4 | -------------------------------------------------------------------------------- /blogs/2016/03/11/ruby_debugging.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73751be8caa8ee5bfdff679132a62d41a3760ff13967a1e8e32e4e4cc3cd7acb 3 | size 362064 4 | -------------------------------------------------------------------------------- /blogs/2016/03/11/yo_demo.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2acc5b22b51621fb12815743f7d0340a4939c817c6814caa7678f35e4964594b 3 | size 127414 4 | -------------------------------------------------------------------------------- /blogs/2016/04/14/header.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff831e61d96fb3bae37dd0a7b0f4e989906c2945f37bc37490b4080fd0f8e2c4 3 | size 125608 4 | -------------------------------------------------------------------------------- /blogs/2016/04/14/installs.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:388289a60e7424ee6c765369763d7e33d6581a93246aee7f6603edf7f08219fc 3 | size 118404 4 | -------------------------------------------------------------------------------- /blogs/2016/04/14/timeline.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6fc75299484aa0ba7d0aa314d85443e523bd8f91d436659d422cbd3e8860d841 3 | size 68638 4 | -------------------------------------------------------------------------------- /blogs/2016/05/04/auto-complete.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7900f0a3a64e0567668d243596691eaf3592060240d338a1c074d6fe76aac059 3 | size 502974 4 | -------------------------------------------------------------------------------- /blogs/2016/05/04/complexity-codelens.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b025a398e713acdd35374401f6f5f2089c492d64caf2b721ee6a7ea9c4962f47 3 | size 473462 4 | -------------------------------------------------------------------------------- /blogs/2016/05/04/debugger-for-edge.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0317300c155d0800c85b092af0c556d997b6be3fbe7363c6111db9a6c6d76f45 3 | size 3778926 4 | -------------------------------------------------------------------------------- /blogs/2016/05/04/svg-viewer.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:602459fdedd8893bc3ea603e78ce4033bde066abd9b73c2a86199c1f09ff4131 3 | size 1027120 4 | -------------------------------------------------------------------------------- /blogs/2016/07/29/annotate-animation.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1136c6d27dc90bd8a41801fab45be037d020b08a690252e288fc2213ef0c142e 3 | size 1019972 4 | -------------------------------------------------------------------------------- /blogs/2016/07/29/git-project-manager.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ed6819f213bc28f36e13491ba4068724fa2bf68f354a5326ed688df23edb8f90 3 | size 57514 4 | -------------------------------------------------------------------------------- /blogs/2016/07/29/gitignore-rightclick.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e73ed12011b3b77565ef15e9c229e8dc13041821301349c2a6a1e4705d58ce3 3 | size 14015 4 | -------------------------------------------------------------------------------- /blogs/2016/07/29/gitignore-template.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:78b5861b3bc1169b71cb700525cbb60ff78b90edda18679bb42e82acf0b7f5c8 3 | size 47151 4 | -------------------------------------------------------------------------------- /blogs/2016/07/29/open-in-github.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90507ec6c8aa4cd61c7cd60a98f7fbb8a4584a568379a039f1bdb13257f0959a 3 | size 53164 4 | -------------------------------------------------------------------------------- /blogs/2016/07/29/partial-diff.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b454fba7c912d0255d628edf70cf39887f19e33df2181be2d14b45b3f9cbc37b 3 | size 754862 4 | -------------------------------------------------------------------------------- /blogs/2016/08/19/github_reaction.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:626a0d3e3322fe081a7020385c66d2bf9f5df59cfae9cbe53cb5b1dc1413b61d 3 | size 259921 4 | -------------------------------------------------------------------------------- /blogs/2016/08/22/ios-debugger-demo.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6fe7cc94ce6ce5677af7e05d84111735ac9dac057d88fbb1d121000f0a8099f4 3 | size 2925514 4 | -------------------------------------------------------------------------------- /blogs/2016/08/22/ios-debugger-splash.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:70453611ad900a1cd6a17eb0a68afd350031ab6de8fbcf1e8905f3ca9bfafc64 3 | size 29358 4 | -------------------------------------------------------------------------------- /blogs/2016/09/08/i-heart-seti.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85a41ef1440c4782b163d38570ea99cbc78ce6b418742b416cf2cc42167bc44a 3 | size 11414 4 | -------------------------------------------------------------------------------- /blogs/2016/09/08/minimal-icon-theme.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1370fe9b843c06cebdb2e5a64809206cc77dfb34a36fe0219fabd2c5309d3477 3 | size 5330 4 | -------------------------------------------------------------------------------- /blogs/2016/09/08/select-icon-theme.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e5e96b2cb5bed1a24e4069c2208be0ae40e200f9a6e5a4be2fe7b277964369d3 3 | size 9178 4 | -------------------------------------------------------------------------------- /blogs/2016/09/08/seti-icon-theme.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac8e72aea88736d48b8136588bd88671d803a7718c8cf543e4c1540fa6c9f7e9 3 | size 16401 4 | -------------------------------------------------------------------------------- /blogs/2016/09/08/vscode-icons.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e0ec510b5af01c13d2b7fa477241433edac16696f884d168a4e267d3a7f95b7 3 | size 10773 4 | -------------------------------------------------------------------------------- /blogs/2016/09/14/eslint.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b9f8e40114e67297145246c66ba39cbb5e4d8a1767e4808f0d5a89113163e12 3 | size 50437 4 | -------------------------------------------------------------------------------- /blogs/2016/09/14/javascript_snippets.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:850fef4c989b68cabec089484a0fffd6d93791a0b2f87fd102a19ba14acb2000 3 | size 43851 4 | -------------------------------------------------------------------------------- /blogs/2016/09/14/npm_intellisense.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7900f0a3a64e0567668d243596691eaf3592060240d338a1c074d6fe76aac059 3 | size 502974 4 | -------------------------------------------------------------------------------- /blogs/2016/09/14/path_intellisense.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea62ee397a68e418451dd2ff9e21dc7dee9f9fa8f2a448afd5f56f7a306e7c3d 3 | size 91277 4 | -------------------------------------------------------------------------------- /blogs/2016/10/31/chrome_debugger.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7000291fe613d6f077bd8547517af605aefc8a38179591c3b24a76722afca853 3 | size 848158 4 | -------------------------------------------------------------------------------- /blogs/2016/10/31/document_this.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:768de8e496bb661a4d0ac7ff65041c129a9140b30651ddf3c00308a424246a64 3 | size 194610 4 | -------------------------------------------------------------------------------- /blogs/2016/10/31/git_project_manager.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a49fd4a3f24b2c3c043166db51a6ddc89500d21dbdf932e5ede48baa88c03160 3 | size 175720 4 | -------------------------------------------------------------------------------- /blogs/2016/11/30/opengraph_insiders.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a541434120012ce00b7316ca5bbd90509da04a1b29f8512599e9a4da614326ae 3 | size 19039 4 | -------------------------------------------------------------------------------- /blogs/2016/12/12/settings_sync.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:472cdb9320d58aac34c2aaacfb4c0b674702900ed5a3d2d7bcd096943973a2d0 3 | size 32088 4 | -------------------------------------------------------------------------------- /blogs/2016/12/12/theme-preview.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6471d7577ebfa0e656ee091e1717fb8025477bce5ddf9c4aae8d3f7a9f032500 3 | size 674264 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/AllResources.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc214531f93aaec1359e778e11965cc39727ac8c1a74647af31abf12ea3d812b 3 | size 61893 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/AppSettings.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa5dedf53a520016acbe5cd479583644acec8397f574671dd9cc03be9c04e130 3 | size 105641 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/AzurePortal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d0927c93d3757f49ad0fbdf6997dd1e7055455d5d2e80f870c950bcb1114b83 3 | size 177025 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/Breakpoint.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b1983ab019e2dd8b2f6521a980942d39278eee19254f88df481ff593dff35f79 3 | size 30881 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/BrowseApp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:520c9ff8a7dcc891d24e64ab7431c2d692d1225062d909c9020d0c48541530d8 3 | size 47950 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/Chrome.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3eb94e06bb2c5393fde88e90f1101213323bd16a69e04f5351cad21f31ebd782 3 | size 80627 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/ChromePause.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67cfa05e27104bf793b8a2f52b49b3cddf788a4e5367611391ea184e73c9a146 3 | size 168613 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/CodePeek.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8bd3b534e7acd0a6f0190cdd3e6d6d8120c85eb595dfc5edb482653082be4fbe 3 | size 49895 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/ConnectionString.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd36e9c4df47b945bd228ede251c41826305fba5e97d67a71d847c6876096081 3 | size 71334 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/Console.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f5c528f6e9288175f5b79cdbfb6e064a14770dd548e262a9e8a15a8494ad7740 3 | size 30133 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/ConsoleCode.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73363f7a93c019f6f18745fd51b080e5f07890be955065227e77889919f0a680 3 | size 65669 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/CreateDocDB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a18f3bb23a9cc92ce8e9016b6305c28cde78f1cf353c689809b72c6676d09dcb 3 | size 124264 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/DebugConfig.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e004bcfb7c76f4620e379fce4b75a11b5ddbae35d6e96e6fc82b658c889fa71d 3 | size 23867 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/Debugger.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7442ed1b696e9b7248b989deb68d77b932f45764e16f49a52684e1a22ec996b 3 | size 196793 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/DocDBCreate.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:88c8e1f3f82f8a6ef950396ad2a8008a3995b5ca322f82ae61d362121263c0f5 3 | size 35854 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/DocDBScale.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d1d41e53375aae30789fd413c7d735dfda55fced862d39bf85cc45e4e2802c58 3 | size 90711 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/DockerBuild.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:88f212b836d4be0466741043e9185b603e2b6ee492274ff6fb64b40cd4f7bd7b 3 | size 77915 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/DockerCommands.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6feda4dd75e266d78469bbd5d0654e19cd582a9e2dbf519a47e5deefd6fd4d 3 | size 33352 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/DockerCompletion.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b676befe8177a701b4f8d33d6fbb3d87661a531b24e1cb1021702c864297044 3 | size 58491 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/DockerSearch.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90e276e391b5c74298ca0634d75302ecb80f49a1d6f61309ecb2a6ec6810e0a0 3 | size 25402 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/Dockerfile.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:efd542646f9b012dadc83011990f3f94f32f364f4dee3a2197ddb486f9277463 3 | size 101520 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/Explorer.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a5c97843513e9db6ea5d69f100446726572203ff13696ad243bbcb73b7d7bed6 3 | size 23321 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/FilePicker.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9aca22901bc2df5c43f5e700039173d769293897b1e621334ffbfdb9b744df8 3 | size 48536 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/FinishedDemo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f30a863e3d6d176515e0d2b76b6c23be6883fb7caa76658803d2563135dfd52 3 | size 45532 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/FullStackProfile.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3093a965beb5dde2e7e88b3c4af376623821898724b84210f75c9350aa35773 3 | size 7343 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/Git.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12dd40835b5b46d5b8f00a148ddd0086573c55c574f730eacc59a397ca4ffd02 3 | size 11946 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/GitClone.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aadfc4daca8525c163ab0797644857c589402dd2e0f152066bb94283fdc880c8 3 | size 3970 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/GitOutput.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f29e747c7a8b6b1db1eaf74e84ede29982d2d0efbbc6a93c1138c1888bc0c28 3 | size 17963 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/HoverHelp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb8d74e4246d863d36f232b4697ec978faaac3471b9c3a65c210329f414867e1 3 | size 32968 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/LaunchJson.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a70aeadbd04c2539c1314b77a282a15cf2616a7c5b1cd5b05b1b478a37fff0f 3 | size 63759 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/Mongoose.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8aa908131a3c4921c8e43730213eb814b98695733f9cd8f0b93499939c7ec0a 3 | size 41934 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/ProcessEnv.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d830f9b9403add9ff3ac65d9975e1045a8bd491e593db970abf1d0d047a5eb43 3 | size 90927 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/Terminal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:048b6d65808573d304fab5e51ee9dd33fd254beb82691014a7fa6c96e4dcf692 3 | size 44788 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/Todo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee72bf9109818aebf6d94df63d31388f47218e94942c24fe3c18590be3e579c4 3 | size 32672 4 | -------------------------------------------------------------------------------- /blogs/2017/01/15/WordHighlight.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f1e0f60e1938f20dd059bb1415eb736511e1ce71aff1e283e40d51508ea8096 3 | size 45843 4 | -------------------------------------------------------------------------------- /blogs/2017/02/08/TM-scope-inspector.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f9ab0a17568f7a7f2e3a76548b4c45ec928c720ed721a75557a86077db0fe8d 3 | size 390192 4 | -------------------------------------------------------------------------------- /blogs/2017/02/08/TM-scopes.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e5deff6d71251ee7c60175c8299f9dc7a0ec3f272198a37202cdda27c36e5b62 3 | size 9600 4 | -------------------------------------------------------------------------------- /blogs/2017/02/08/line-offsets.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb44b083b6a449effc17e2bb416fa4df4c8a207e6644ba88ae60cf205bcd9d24 3 | size 3046 4 | -------------------------------------------------------------------------------- /blogs/2017/02/08/monokai-after.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8518ad348286be4c6217ccc55511a797bf7a6dfdf406a788377311719d8994c7 3 | size 7652 4 | -------------------------------------------------------------------------------- /blogs/2017/02/08/monokai-before.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8b7c8f3292984887396dd68dccf01f9d578e5866ae6a2b25c4cea4c8e3690d6 3 | size 7702 4 | -------------------------------------------------------------------------------- /blogs/2017/02/08/monokai-tokens.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:668a6d07463791bc4258d773a060b32f4ffee862962ecb42f1f369e82a722957 3 | size 1589 4 | -------------------------------------------------------------------------------- /blogs/2017/02/08/quiet-light-after.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:926bb5ee2acd68d551784cb29f653ab7a06d72ad5d3af1c511b67cc0362636c8 3 | size 8909 4 | -------------------------------------------------------------------------------- /blogs/2017/02/08/quiet-light-before.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6658f9d5ae8c937623a06abc2b1d08e0307ccb74a31a7abd6e5531ecc9d341a1 3 | size 8601 4 | -------------------------------------------------------------------------------- /blogs/2017/02/08/red-after.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e410910d728f9677c3eab3d56b9bee3acd5d0c2c4533d43e6c62dcc2367dae16 3 | size 12177 4 | -------------------------------------------------------------------------------- /blogs/2017/02/08/red-before.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f79a003153f09e041385e05ba109c8494fde482faee8e193bd2f68a625fd5718 3 | size 12399 4 | -------------------------------------------------------------------------------- /blogs/2017/02/08/tokenization-1.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1c2cf5ec31d3cc304ca28e84d302367caa421b33dca58cbdfba8731e57b9ee0 3 | size 97643 4 | -------------------------------------------------------------------------------- /blogs/2017/02/08/tokenization-2.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0081d5826882148978ae8891556d1a767940ff969f7853ed4c067d78f69e3e19 3 | size 533524 4 | -------------------------------------------------------------------------------- /blogs/2017/02/08/tokenization-memory.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:98ba1aacd46d849d7f8cd1a1f2324c72be9e4f59acdc4e687d4be69151e395cf 3 | size 6827 4 | -------------------------------------------------------------------------------- /blogs/2017/02/08/tokenization-times.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d9357b2b375782553e99834171d7d408bb593f6b3ee4669cf82ad532ada2c309 3 | size 8443 4 | -------------------------------------------------------------------------------- /blogs/2017/02/08/trie.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4601bf9f8318aa7a7793db48eb563709147b918035ede5cd936e0f72116a375b 3 | size 14725 4 | -------------------------------------------------------------------------------- /blogs/2017/02/12/appinsights.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:839eeb702a2bb4381b653fcc8ece09147cc0b44c393b0a950eb4f9e6c99fe3b0 3 | size 43201 4 | -------------------------------------------------------------------------------- /blogs/2017/02/12/code_lens.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f7c679c7db4748a4308e8fe66aef9051cd2937035de6dc14667931015bc5dc2 3 | size 1188639 4 | -------------------------------------------------------------------------------- /blogs/2017/02/12/codemetrics.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6c781e3614a999c69443cda94f09639bf47c4147073f811366ee63d71361e34 3 | size 47122 4 | -------------------------------------------------------------------------------- /blogs/2017/02/12/manifest_preview.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc0c9a6b104a3a0a880d897abf90ccfe3ef951dbb6d77b5f5fb5864a0069cb53 3 | size 736411 4 | -------------------------------------------------------------------------------- /blogs/2017/02/12/preview_gitlens.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:278d654662341e1704c671d90eb4cdc6c8e09b1259e16fbc3181bda5cd1c8113 3 | size 1192144 4 | -------------------------------------------------------------------------------- /blogs/2017/02/12/regex.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6bffbcfad6b66479c3695da5f6a7bffc5c22c3b124776baf6d163c52f50539d6 3 | size 47974 4 | -------------------------------------------------------------------------------- /blogs/2017/02/12/typelens.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a18d7741a5b9b70ca262f31f1c01d462608b90ca037c824dcf68869a0dc37d57 3 | size 47737 4 | -------------------------------------------------------------------------------- /blogs/2017/02/12/typescript_code_lens.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:19ab57eda57442776120d36470f6d43eb18bbdad4947048f73d28f156e9238e5 3 | size 52764 4 | -------------------------------------------------------------------------------- /blogs/2017/02/12/versionlens.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fbe24ddd00948fc13dd8ea99cdbb288bb29a828df1ea00ef3a0d8b92cffffa75 3 | size 20995 4 | -------------------------------------------------------------------------------- /blogs/2017/04/10/close_html_xml_tag.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5a4e8462a3f92deb642865ab6bd3c1a2c1fc1165d6eb2259de1612cd6c7fac97 3 | size 191143 4 | -------------------------------------------------------------------------------- /blogs/2017/04/10/expand_selection.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34022193f631388c22b240c527d968b360efd2b824012c8bf2f34af2f3714c3a 3 | size 74623 4 | -------------------------------------------------------------------------------- /blogs/2017/04/10/sublime_text_keymap.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:39989f2a0e093457a91c58d0189b8c58483cc632ebf69e838f58990264246d88 3 | size 11791 4 | -------------------------------------------------------------------------------- /blogs/2017/06/20/themes-ayu.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7e70c0d0cfbb1377796214c7646e426e8811d4f6c7bc9106844d492f51c895a 3 | size 491358 4 | -------------------------------------------------------------------------------- /blogs/2017/06/20/themes-nord.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b10872fde22ebf6d9d72f1b6352a78078ca15bdacef9a1cd65a67b1a86b82a1 3 | size 125952 4 | -------------------------------------------------------------------------------- /blogs/2017/06/20/themes-sapphire.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa10d96210ca94a92795689f1437b08435e4964b09c98df282fc76b1bbe40991 3 | size 550285 4 | -------------------------------------------------------------------------------- /blogs/2017/06/20/vscode-great-icons.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2600b014a1c979b8ab162e1352f102a11ff41d15a036b501240f79bd30675c02 3 | size 150667 4 | -------------------------------------------------------------------------------- /blogs/2017/08/07/emmet.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82f194f2b74764015768c47308feeaec03ef3484242357d2d870a2e38a20a117 3 | size 194330 4 | -------------------------------------------------------------------------------- /blogs/2017/09/28/debug-features.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:19dfdf145ae0ba8c3ea3dfdf12e16dba81fbf6c543857cdafbeebc27b6d7de6c 3 | size 93270 4 | -------------------------------------------------------------------------------- /blogs/2017/09/28/java-debug-extension.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dcd4ab5a3cb644eec74ebe4e0055a81cd998333bfa0d07c9bb888de368adecd7 3 | size 22842 4 | -------------------------------------------------------------------------------- /blogs/2017/09/28/java-debug.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81b0a4ae8a3b98ff8f30c125000cc446221791827c6bd5532237d346e8196062 3 | size 1694905 4 | -------------------------------------------------------------------------------- /blogs/2017/09/28/java-extension-pack.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f20c84d22254bd2eb428f51b8238acae477ef55f1e28fa69eede620399546461 3 | size 16368 4 | -------------------------------------------------------------------------------- /blogs/2017/10/03/60fps.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f9f6ffe899f207ed10dcb364a2eef8ed7295613aa706173a448a8af18b9dc727 3 | size 3940464 4 | -------------------------------------------------------------------------------- /blogs/2017/10/03/misaligned.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:368ffb73ae79e455683dbc3130c417e4e884ebd9c1b7be7cd4d7b3949d64736e 3 | size 44151 4 | -------------------------------------------------------------------------------- /blogs/2017/10/03/paint-flashing.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e8cecca163edb3f8291469fcb2786f4f71b1ba12c193e969ffce20f69f354abf 3 | size 251126 4 | -------------------------------------------------------------------------------- /blogs/2017/10/03/texture-atlas.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dd36924c77e0e0ae5bbfd92227f36dbc87d4c7dd0c9c2897a077534fc9b7e1a8 3 | size 281555 4 | -------------------------------------------------------------------------------- /blogs/2017/10/24/blueicon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9756abf9a5cd00482ff2ff9a6707bb87f71cee24c84e6ba748bbeaa7378dfea5 3 | size 15282 4 | -------------------------------------------------------------------------------- /blogs/2017/10/24/colorrecognition.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b1de7a6220d52ff750aff4ec78747f6280d3a9b6bfd70a1bf58247eb1ad2414 3 | size 36481 4 | -------------------------------------------------------------------------------- /blogs/2017/10/24/earlydesigns.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09cdb2b058bbf3a37a1d9ca16f6ce55309388d681e57a6f52118f3a4594a1080 3 | size 87995 4 | -------------------------------------------------------------------------------- /blogs/2017/10/24/editorlinesicon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73afaeab484ba8cd5f4faae31812c34c1b37f035a741b0d58ec7298140ae903e 3 | size 6248 4 | -------------------------------------------------------------------------------- /blogs/2017/10/24/hurtsmyeyes.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5c32f7194ea3fd08ef4478964b2240625addf8f5a47996866fc75ef387f0840f 3 | size 6483 4 | -------------------------------------------------------------------------------- /blogs/2017/10/24/insidersgreen.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d205ead54808dbb9bebba9dab2c5138856431b5b308099439843c798efbb14d 3 | size 17326 4 | -------------------------------------------------------------------------------- /blogs/2017/10/24/insidersgreenwindows.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:59164be5c5ba88a5d894885caa2d7bfc90368f32bc4e38e821b9d6f3621ca13c 3 | size 17347 4 | -------------------------------------------------------------------------------- /blogs/2017/10/24/orangeprerelease.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89fdaae88985663e934fb1bd099c4234a371e68909a6ef45b39266f88881fc93 3 | size 65467 4 | -------------------------------------------------------------------------------- /blogs/2017/10/24/originalblueicon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65771e049b516879def37373164e3a6c6aedd83eded089d0311f23eaf969f511 3 | size 16329 4 | -------------------------------------------------------------------------------- /blogs/2017/10/24/outlines.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:386bc38d5f2c5b5ed0e3bcf5692ed691c52ea444b5392b76b6a8283132d27410 3 | size 33064 4 | -------------------------------------------------------------------------------- /blogs/2017/10/24/stablewithblue.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6d498e585e5e9c67ee2d05e0d0d9faea882d1cfb636e1589f4d9eee728328c76 3 | size 172545 4 | -------------------------------------------------------------------------------- /blogs/2017/10/24/variationsoninfinity.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bfbc23a9256f7a83bb2b9133a97d693dc857732f706d9f7fdebde90615c38d7c 3 | size 14879 4 | -------------------------------------------------------------------------------- /blogs/2017/10/24/vscodenewlogoissue.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae89123453a9567e98412fd6cc85d76ee79210ac3a995ccfdc8cd6773b85e35b 3 | size 51307 4 | -------------------------------------------------------------------------------- /blogs/2017/11/15/ls-dual-screen.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02acc0d4ac582d98574f589bd889037b611aad96abfaba6a1662419c59edab1a 3 | size 291804 4 | -------------------------------------------------------------------------------- /blogs/2017/11/15/ls-social-resized.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f13cfb294222e083150456233b3f361cdbaac3dba3eb09ac594691a0019d2d90 3 | size 176206 4 | -------------------------------------------------------------------------------- /blogs/2017/11/15/ls-social.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a2fe520ea801513f56c4db31de1b09a77618e4bfd6f83687cd89e651cf1a71fa 3 | size 563824 4 | -------------------------------------------------------------------------------- /blogs/2017/11/15/vs-code-ls-session.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b9ce638da4eb04a11249d7780cab8f150914b9148003ac1c7cece8ab0e2fdaf 3 | size 496893 4 | -------------------------------------------------------------------------------- /blogs/2017/11/15/vs-code-ls-session2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a3b137026cd6698767187abb0826682986842d0d30c5bcc2503a431da331e2c 3 | size 531144 4 | -------------------------------------------------------------------------------- /blogs/2017/11/16/connect-social.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4fe4b2978691a15a83e33bddd0afae9ca987bf3e3eb8d6fab3747e76926c79fa 3 | size 35526 4 | -------------------------------------------------------------------------------- /blogs/2017/12/20/break_on_load_after.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7e900d73ed9e8323ea14e12e8db24fa30a81e20f6e97d9f8319ab0c74ce1d93 3 | size 128230 4 | -------------------------------------------------------------------------------- /blogs/2017/12/20/break_on_load_before.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7597306bbd5c00cdfa118c4c426e5825da1dee9e14272418e4c2983a7f8ffab4 3 | size 94389 4 | -------------------------------------------------------------------------------- /blogs/2017/12/20/locale1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:183797e3d1eb5ba9db4ab32fefe52bfe13c13beb00be1b7ed21000ad908a19c2 3 | size 63743 4 | -------------------------------------------------------------------------------- /blogs/2017/12/20/social_paused.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff09908e6493eae6def742f78ab2478fa91c1d1d2a1c64db29c90d60a014d547 3 | size 408988 4 | -------------------------------------------------------------------------------- /blogs/2017/12/20/sync_stepping.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6327a421be31ab50074a0fc6ff5dbd92197c68fd0d6baa254061c846f5e8e21b 3 | size 9731770 4 | -------------------------------------------------------------------------------- /blogs/2018/03/23/fileopen.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3eefe50faf69c6fce412bae00040abfc1e70d0079797d354be27a15b6a043885 3 | size 35129 4 | -------------------------------------------------------------------------------- /blogs/2018/03/23/memoryusage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd30e959ecddf7aebc355324ee06942389630bb7de5dee270507b0f2b9696e88 3 | size 35709 4 | -------------------------------------------------------------------------------- /blogs/2018/03/23/piece-tree.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:610e3d21a34ef0f8167709a774ad1775b460937ed0d69f33e0335faa7dbbada7 3 | size 102083 4 | -------------------------------------------------------------------------------- /blogs/2018/03/23/read.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:06e20e109712d91379721db9caa9fd1e60456e7670877fd05aecece87e4f6fbd 3 | size 73566 4 | -------------------------------------------------------------------------------- /blogs/2018/03/23/scrolling.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:54d1198e963eb2412ac03e3518aadbfeeee05e16b3bb5d74618f5262dbaecdd5 3 | size 79436 4 | -------------------------------------------------------------------------------- /blogs/2018/03/23/write.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34a291085f75f117362b32c01a354e11bd44c25e522cafa1590264b9474b35bb 3 | size 144891 4 | -------------------------------------------------------------------------------- /blogs/2018/04/25/Beautify.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:997c9d61325479e97325556b141c6e80cf983dfa27d4c9d76eaf75cc17afd4ee 3 | size 7911346 4 | -------------------------------------------------------------------------------- /blogs/2018/04/25/BingDiagram.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:db1c9e5df728fa8812910ee5d1460785df2fbd74a8537eadda3bd946d62b1849 3 | size 171005 4 | -------------------------------------------------------------------------------- /blogs/2018/04/25/FormatOnKeypress.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a19f72482ae6173862c1a3fa2044be095be8cc636281c9265ccc818f90231642 3 | size 5928834 4 | -------------------------------------------------------------------------------- /blogs/2018/04/25/OpenFilesOnLeft.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:afdeabbf1f85b7ef6ebfe239a8484105cbe6d6c2cb9eec4f2e95a8d5cd2bba05 3 | size 8431694 4 | -------------------------------------------------------------------------------- /blogs/2018/04/25/SocialImg.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6a5d4bd38283b79bc503dc042c23927187a31c26de8881df0d866aa7e261e69a 3 | size 2818380 4 | -------------------------------------------------------------------------------- /blogs/2018/04/25/ZoomScrollWheel.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a3223e8e9e4ad730431b3368e92dca095851123ed735f3900a8cd5101401ab3 3 | size 1669715 4 | -------------------------------------------------------------------------------- /blogs/2018/05/07/lsp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f22a1bdb8b247b1a5682c93d1cd6fdb07d97036a2ab5153df4401756133e2fa5 3 | size 237105 4 | -------------------------------------------------------------------------------- /blogs/2018/05/07/shared-terminal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dcf67a1165658fba5a5b67e6bb46729665de8c28b5f03f70caf385b59916a162 3 | size 806459 4 | -------------------------------------------------------------------------------- /blogs/2018/05/07/user-accept.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d2d218ce2f6be4e6127c7bc35bfd668379630f98d8add6c4e5d902f89b41bf17 3 | size 73928 4 | -------------------------------------------------------------------------------- /blogs/2018/05/07/vsls.json.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53c987cc1074223da5ded1664c3c182a4322ec6c0943d1c7eaa163dc4ce8a34a 3 | size 44226 4 | -------------------------------------------------------------------------------- /blogs/2018/07/12/auto-attach.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b87482ad595de9ef24c716aae61ab49ef8be781489d6d5336c631394e3020f5 3 | size 1241094 4 | -------------------------------------------------------------------------------- /blogs/2018/07/12/debug-extension-api.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e473bc6fa3aef160833a5eafc88abbd65d0612463cc1bff94a6ba4b6188e66b 3 | size 119146 4 | -------------------------------------------------------------------------------- /blogs/2018/07/12/debugger.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02d5750457436e5c26be781b2ff0c55e648311708a16aaa1b99d1110a362a71d 3 | size 850844 4 | -------------------------------------------------------------------------------- /blogs/2018/07/12/logpoints.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc80150db6320dc5cb14458bdde78c3dd0fd5a99fde28a75d019fa53455c33d8 3 | size 1582288 4 | -------------------------------------------------------------------------------- /blogs/2018/07/12/npm_scripts.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8509e51c928e372435dd73e331b82d4ab3ca08d3d3aaed61479e391a2fdfc996 3 | size 324580 4 | -------------------------------------------------------------------------------- /blogs/2018/08/07/breakpoint.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6180d00004686f58750983481f75ec3a4f4b980aba9c99ec5de1b361af6a36cc 3 | size 57479 4 | -------------------------------------------------------------------------------- /blogs/2018/08/07/with-DAP.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9afe8d0c2ea4bd565e925ee46e43502ed7ba2d245f59f88ee325a701c75e3fc 3 | size 40507 4 | -------------------------------------------------------------------------------- /blogs/2018/08/07/without-DAP.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0cda862d8f3baf1c0a68449b7b28b48ea8c0ef12d17ab9b1743866bf9a0a9973 3 | size 40684 4 | -------------------------------------------------------------------------------- /blogs/2018/09/10/github_pr_hero.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7fa5abeb13d40e4ca410a527c9b668ad17740e72cbe40b1ab17f0c8bdf08880b 3 | size 227982 4 | -------------------------------------------------------------------------------- /blogs/2018/09/10/github_pr_overview.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:36c7b11d25ce5da0b7319ce834f43c7577572a635ee3e1441419eb068581631e 3 | size 674238 4 | -------------------------------------------------------------------------------- /blogs/2018/09/12/build.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24b629f7c76cb0e779fdeb0451f74224089e49949a6d8aee1a3b7b3ba2fdba78 3 | size 311456 4 | -------------------------------------------------------------------------------- /blogs/2018/09/12/pr.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:48501146c62ad75be9b90f1527efdc4d0420b3fed6f47a84337daef8a291727b 3 | size 113242 4 | -------------------------------------------------------------------------------- /blogs/2018/09/12/slack.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13203fbb8079a0fc0b597af78754b7649f6f8a40f7f43218e14be9a216e2f43f 3 | size 171549 4 | -------------------------------------------------------------------------------- /blogs/2018/09/12/social_pipelines.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1386be87ef7277ca252f925509cf68a4ee800c9aff090e81b15944b8b72f0437 3 | size 66171 4 | -------------------------------------------------------------------------------- /blogs/2018/09/12/tweet.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5ab0dfd5da97e9b05de37e7031c4c4876fc2a4bdc1650ccd9652b882ac85439 3 | size 139585 4 | -------------------------------------------------------------------------------- /blogs/2018/12/04/CPlusPlus.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:58c13f7b0d3f772e930be3b5dfbabea3868bc88f4c24e5324462b870cc746629 3 | size 1719266 4 | -------------------------------------------------------------------------------- /blogs/2018/12/04/CSharp.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:17ea134f696758cfafa9ec22428b76e2577fee3ceca02a8f2f690f82ea7d038c 3 | size 2245750 4 | -------------------------------------------------------------------------------- /blogs/2018/12/04/CrossRepoJump.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bd362374b23f6284a14677355d489de665033fb9001e0ef9cd34721803e15a8a 3 | size 1850798 4 | -------------------------------------------------------------------------------- /blogs/2018/12/04/Java.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8fbcb67f3e8a39b787e4b1b9d8c891fde8badb169027389a1b5250a0c6a11990 3 | size 2482101 4 | -------------------------------------------------------------------------------- /blogs/2019/02/19/foldingRange.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42208ef5fcdfcc19801b138bfca39de955bd368e7bedec4f791cc9a721fb835f 3 | size 11616 4 | -------------------------------------------------------------------------------- /blogs/2019/02/19/hover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f9b1c7de19da669483cff67830d9cd7be6d66d9f806b5ea15f547d05f1b78d9 3 | size 4721 4 | -------------------------------------------------------------------------------- /blogs/2019/02/19/hoverResult.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d033743d6ed961c79aec99dfc1af07e1f4a19c65796b22e493243a476417033e 3 | size 13606 4 | -------------------------------------------------------------------------------- /blogs/2019/05/02/remote-environment.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e0d81016f465f447ba182fd9f75931c34b66f7db09be600b35a3776118deda11 3 | size 205389 4 | -------------------------------------------------------------------------------- /blogs/2019/05/02/remote-extensions.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8eeafd16adf5445866135e9a9565117161bc12f7fb375ad5f9178208357dbde3 3 | size 199625 4 | -------------------------------------------------------------------------------- /blogs/2019/05/02/social-remote.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:60c20f8047ed4944b25179352a2784284bdb107ce57e14df48d781659ef37c3b 3 | size 95500 4 | -------------------------------------------------------------------------------- /blogs/2019/05/02/social_remote.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:60c20f8047ed4944b25179352a2784284bdb107ce57e14df48d781659ef37c3b 3 | size 95500 4 | -------------------------------------------------------------------------------- /blogs/2019/05/02/worker-processes.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b21b2928b7d91094dc1ada8cdf1ba5e9250ccc112d632be110b1bc3f867feb2 3 | size 186256 4 | -------------------------------------------------------------------------------- /blogs/2019/05/23/social-strict-null.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca768b366c78a89305a717a21a5300dfa2f2727add15697a477abe0f1c768531 3 | size 208297 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/add-ssh-public-key.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cb45a9a495193e5dfb223f4fd9c4d7ea070eab4ba1217cfd6f76c8c39e0451be 3 | size 80279 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/architecture-ssh.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:01e24a19ace5eac023b90296b711bf8c476415fb8d74a247b4b629416168f78d 3 | size 44171 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/check-uname.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2e02a0ca1077d62c35d89ab1d32ac14e3b5cc2c43d96b5a197643c71ffa9381d 3 | size 33496 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/create-vm.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c446cafb90c673573420f056907d63c29f83e644577d9a9b06dfc70b7cb06fdf 3 | size 39369 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/debug-hello-world.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27784c11e09d3df09cc7c4f1985d772fe042956bd1ee3007fe280304fb188001 3 | size 54745 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/enter-port.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:28693b8f434eddc2831b9c17083fef2b466a4ce37914b3d5b84cedba99e7158a 3 | size 20198 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/hello-world-browser.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:77a54599d6c9e11f9e96b8280346533f311706e769843881f4bde0f56056f369 3 | size 56588 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/init-vs-code-server.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8608b208a4de8cd9fa01036f929b4d7b45b85f29c0472127143435dba137813 3 | size 18143 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/name-port.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:404fe0db4684cb60f6805979415c54eae7c05c11632a1e6b05a82ed748d5b363 3 | size 20983 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/python-intellisense.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d7061a87cbe69aacfede637139ad7f697bea4625ddf02fc840176fb3a78de151 3 | size 73462 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/remote-commands.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c3407c9dcd820b9ba20d945a11b003a4bb511ee4f25fad9b18c517cd24f2046 3 | size 262214 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/remote-open-folder.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b27f07221ddd227938ecd9901b320bdbb716c6959c8ec481a179ebed24dc16a 3 | size 23862 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/remote-ssh-extension.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd2fd745d276622b8da40bcead1f6b1f615223098e3f08e8d6de1e317dfe83e8 3 | size 27462 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/set-user-host.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:521c646ac316f5ab4521315166a41b51e5720cad77b8a5f1b560dadcf5c8884a 3 | size 19846 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/social-remote-ssh.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0adcb01f71283284f5f693ac76e303641b049cf65093712f7256e64b8faae4b3 3 | size 91460 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/ssh-keygen.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f6e03930c99c9c8114074a6f76689d176a748de9497845007cb3769afbd4085 3 | size 48279 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/ssh-status-bar.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:844417f7434c425b35a287ca46bec4bc954795dbb6bf0d77f895003cc66ea049 3 | size 13197 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/vm-auto-shutdown.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27b5d3abae29c325cb9c7ab54623135c66586258c0c9d8e9a6c1566e30693bce 3 | size 13450 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/vm-instance-details.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f642e27272a26c7208cbcab6283909fb764494cfed7ec0fe7f8b5820b6b9b9f 3 | size 19359 4 | -------------------------------------------------------------------------------- /blogs/2019/07/25/vm-public-ip-address.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:019f7609fc3ffa7e5fc02ccfb7c98392755a2f48d0e5af00ff5c18da5a5184e9 3 | size 97594 4 | -------------------------------------------------------------------------------- /blogs/2019/09/03/matts-setup.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:41e75e74d34d3fdb3a9da4132a31f8e47b8164619343fbaf1fc02331dbd67baa 3 | size 344405 4 | -------------------------------------------------------------------------------- /blogs/2019/09/03/remote-wsl-extension.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2fd724eb2152d18afe904cbc22886b13271321930dfba13c525e9cfd824b82e2 3 | size 69387 4 | -------------------------------------------------------------------------------- /blogs/2019/09/03/wsl-cow-say.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:519f0789448401a5413388404d0f4f4b0666d984c74b020af1122028593e17fc 3 | size 23133 4 | -------------------------------------------------------------------------------- /blogs/2019/10/03/python-linux-vm.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:52f42ad97c5e7f7cb5a4e237a74ac9224803978c3b5270e3a0f90add42c9820e 3 | size 64693 4 | -------------------------------------------------------------------------------- /blogs/2019/10/03/remote-ssh-extension.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:acfad28ba95dbf78741e8ba98c500f0f6c8b5c8ce2e43abb8dd47d7132bd7e1a 3 | size 27396 4 | -------------------------------------------------------------------------------- /blogs/2019/10/03/social-remote-ssh.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0adcb01f71283284f5f693ac76e303641b049cf65093712f7256e64b8faae4b3 3 | size 91460 4 | -------------------------------------------------------------------------------- /blogs/2019/10/03/ssh-config-file.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebf5a56d7d21e119b53208c49d8d40177e49e80520ac8bd7ec9ab8fdecab1206 3 | size 85238 4 | -------------------------------------------------------------------------------- /blogs/2019/10/31/attached-containers.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:519884881d741ff65102a37a6c4e96a7a8a3129e964239d2990601d6e6c38840 3 | size 62427 4 | -------------------------------------------------------------------------------- /blogs/2019/10/31/docker-exec.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03b8f0a1ec8fae4f11748b724c3fb584a6562aa3a5aabab75b085421b8cc4e1b 3 | size 73322 4 | -------------------------------------------------------------------------------- /blogs/2019/10/31/express-server-json.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:409c0995d3625cb39a1ccd0c103f0f84ccc852662eca5829a0fa8d41b62a282e 3 | size 27349 4 | -------------------------------------------------------------------------------- /blogs/2019/10/31/gitlens-information.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b9bbbea5570b541606d92a4608987280838024186cc27f1484bbd5a405fb185 3 | size 14099 4 | -------------------------------------------------------------------------------- /blogs/2019/10/31/node-process-picker.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f81b33da2d9155dfb9595408c81486329a17b3f0139884c395914e0ecc7213d 3 | size 225650 4 | -------------------------------------------------------------------------------- /blogs/2019/10/31/open-folder-dialog.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb0e2df07f77206fabfb79eafeae8ff00c3245e5d28d3ab7bfacef598529e7d6 3 | size 12194 4 | -------------------------------------------------------------------------------- /blogs/2019/10/31/search-for-gitlens.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f3da8191fd84ad4530592e2b807730cffba10b4fe281334b5ec0fddd52081f4 3 | size 17640 4 | -------------------------------------------------------------------------------- /blogs/2019/10/31/welcome-express.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:190f0c156b7ff038c9ed2dcc51f86f3f4ac6bc46a4aeb2437adda4f9affcc296 3 | size 75885 4 | -------------------------------------------------------------------------------- /blogs/2020/02/18/chart.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:072b111ca4fde203b1c52a1613519fa84aa350e17145e1cae456a73965315513 3 | size 5640 4 | -------------------------------------------------------------------------------- /blogs/2020/02/18/hero.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79990507f3cd21f8a19211694ba3b61ed7f9d20aba81c11373bd65cafa2c8a6d 3 | size 18164 4 | -------------------------------------------------------------------------------- /blogs/2020/02/24/mavo-demo.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02e32a73435880a6f799dc870e274bb56d7d5333c48c37b412544dd0c464b715 3 | size 7763448 4 | -------------------------------------------------------------------------------- /blogs/2020/02/24/simple-interface.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:abac9281cd9e0800e314e4c8130965f42ec61cb49193d5476136552a5127993f 3 | size 72994 4 | -------------------------------------------------------------------------------- /blogs/2020/03/02/docker-in-wsl2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a239914559fa70fdfb87a3a3d2ac3225bea562fc26bd4bf8cf7270f224ac2cd3 3 | size 63928 4 | -------------------------------------------------------------------------------- /blogs/2020/03/02/docker-ps-in-wsl.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b05e7d4912398142767e9399e566dbafae842f0c709b58a44ba1887b440b9241 3 | size 47776 4 | -------------------------------------------------------------------------------- /blogs/2020/03/02/docker-run-mongo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5efb10726f10e7057a3c7ebb8a39c8c0bccdf596507206847910334bafac9c9b 3 | size 38053 4 | -------------------------------------------------------------------------------- /blogs/2020/05/06/create-from-todo.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4bf0fa9888d9b764e9e4c964d3b1439a67c088e2cfcff1d85cdb576ab684651a 3 | size 2890999 4 | -------------------------------------------------------------------------------- /blogs/2020/05/06/issue-hover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4ae33ddea5ce56e57bd54b5194567058f36a37b1ed551847d19801c57e5e235 3 | size 353915 4 | -------------------------------------------------------------------------------- /blogs/2020/05/06/issue-queries.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d315a472ebf6239b6f669e26c9adc9130321c83cf750a8943582ef435d138d3 3 | size 20972 4 | -------------------------------------------------------------------------------- /blogs/2020/05/06/user-hover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f821a76b38427d6f96363686ce3c8a65206f2a893fb1d1c1fb5f1e009a533ca 3 | size 349675 4 | -------------------------------------------------------------------------------- /blogs/2020/05/06/work-on-issue.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a522e5444d709830538875a3902c182b4a8f662a6a8b07d1d41d29261115af93 3 | size 789892 4 | -------------------------------------------------------------------------------- /blogs/2020/05/14/build-2020.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae11681f7c263323f37e2f061ec09ab38f1219c242b2b9a33e01e0392387bc70 3 | size 116780 4 | -------------------------------------------------------------------------------- /blogs/2020/05/14/vscode-build-social.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:54ae2e497d3cb5cc5d21eb9ea2420870d3fae05fc08e9a1840f68314483c45c2 3 | size 25513 4 | -------------------------------------------------------------------------------- /blogs/2020/06/09/go-extension.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0faca938c62571e05655bf6c384bc3b50ba1502da5b8a9005a5879e428af4d88 3 | size 50263 4 | -------------------------------------------------------------------------------- /blogs/2020/07/01/10-uname-node.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1927e516d1615d1b02136f6e79f838ea13b6c84bff5f8b07bb998889ca1d5bc 3 | size 104557 4 | -------------------------------------------------------------------------------- /blogs/2020/07/01/2-ubuntu-launch.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5330b632ba201c9a09f87b576dcd1ab2c18f7d1de96adc221b9e1887fc543f55 3 | size 47393 4 | -------------------------------------------------------------------------------- /blogs/2020/07/01/4-reload-vscode.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e8bd80dc2c82a1c70e6247ff24737d68853368272e8edb67dc50d5afc25cabd 3 | size 37907 4 | -------------------------------------------------------------------------------- /blogs/2020/07/01/5-wsl-left-indicator.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d938bf406c34a26b68eb30997860984918214bff506b503a48387efc2506f698 3 | size 10989 4 | -------------------------------------------------------------------------------- /blogs/2020/07/01/7-reopen-container.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6525e02381dd675a936490877c6748a98020ee1e6a4782edacab60623a415c11 3 | size 10148 4 | -------------------------------------------------------------------------------- /blogs/2020/07/01/8-node-14.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c8a080a68c2bd151822993779d2eb376e14cc03140a02133a6b1bc5551aac345 3 | size 119927 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/1-containers-abc.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb1f328d7081c649fff3301de40d431a04982e892d3aababaa76a41bf985b5ff 3 | size 56082 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/11-sortpy-cropped.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9d32615bbfa904fc5b792043c499b2958b6551a8a76f6d6f4ca4cdeb4889469a 3 | size 182244 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/13-debug-cropped.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bbcbd86306e3c721c810779070d254aabe5e05af4b2b9429da0c478c479a6726 3 | size 142374 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/15-add-config.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07a96319132d1447b86de2420ecfe3b03bd801ad53fb23e6b85a10a86a0a210a 3 | size 17087 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/16-python-config.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f5beb2ff1267000eb0b6d0241de51032d6dfc2ae30363b495c1206e7848c0a8 3 | size 141437 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/17-node-devcontainer.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27ec74c761ce8b8341004cd47c36120f6041bc4eee3895a57ecf7ef589a8fede 3 | size 21778 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/19-dockerfile-crop.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:80451d1e6985cba8a313c00d616ba03847ba4a9d4d41210484f2a103f7bfa241 3 | size 264927 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/2-code-ps-cropped.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e214943576b9b9459295bffffa8a5a6e2a9e0c0f163faf888f52ea50ff0ed3b 3 | size 42859 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/20-change-cycle.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63c5f872e7ef57ea1cfed259c2a2f8e11893ad80095bdf9cfc8a53855ef89eb2 3 | size 47680 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/21-reopen-notif.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7389607d9ff17d04b30da133e75f5cea536a35eaba5dae9567a5de1cbf1ef472 3 | size 435671 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/22-reload-starting.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9791c8f329ea6353dc1a17b6ffa3932f15c2ce922c20469e6ea869ad5e569737 3 | size 234457 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/23-in-container.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bc3d29a76840463de50700351ec32b168c37f90c6ccb1dabfeefc4f39d2afe42 3 | size 105364 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/24-run-code-cropped.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:60ab238acb72b35ee20010b87cecbb6ae086b606bc6ca9bf03d4eeca3db6e80f 3 | size 156120 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/25-create-repo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c60c6bfb077ff6080428dc6df6ed7e3f467f6387e49099dc5653c927592377bd 3 | size 175015 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/26-git-setup-cropped.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0bc8a018188becbdbc72581694728bfa59610c2029fc2c19778369012b14b4d 3 | size 61642 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/27-git-push.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a6bd58671edea489ccec7ed3f031cf35cb054d0d5d75c1a7b5c046025467f2a 3 | size 94804 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/28-github-browser.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5cce40328987635f24f679e646da53d21048b3098019aea1a4412e5841bcd3ef 3 | size 86982 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/3-extension.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d679715cc32460ee2ac60bed624db7360eea81539b581add78d8ba75ba2eb705 3 | size 124457 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/4-remote-indicator.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1de97c9ec02d8d49d053ddc5d67b23d47eed396e908ac53388e35936be98f252 3 | size 8298 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/5-commands-list.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:567e7caf559c7b10526ed65d8ffac4fc360aa8ddca660c0c9d504fd5152c3611 3 | size 54184 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/6-clone-repo-command.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d392ef6cebe29e89bece4844addd2edf02f98639a985d90ba81412135572be8d 3 | size 25345 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/7-paste-repo-command.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c33b15c03032198b852b4f9a0f0bed772ffbfa3040417eb3e95d1de96dfb510 3 | size 43122 4 | -------------------------------------------------------------------------------- /blogs/2020/07/27/8-volume-command.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:14b0db19ab1b1f5c1e07c79f1620091901e5ba93d8a1199f9bbdc635e738e08a 3 | size 29344 4 | -------------------------------------------------------------------------------- /blogs/2020/12/03/downloads.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7abe83a88464f664ba473fbf7bdc2c6024bdc6b050995ad94e52a7df3cdbd20 3 | size 55896 4 | -------------------------------------------------------------------------------- /blogs/2020/12/03/dpkg-arch.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27e6c8b9ec5da44d730be87c983bc608186e364b49dafc93386ea8af7624a21d 3 | size 13105 4 | -------------------------------------------------------------------------------- /blogs/2020/12/03/enable-crostini.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7f4303d3b6615d424d4123b3521c3ff86f376a156fd30c0ca3566f684aae5ddb 3 | size 35854 4 | -------------------------------------------------------------------------------- /blogs/2020/12/03/install-deb.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37e7c245aed13081fd5041f636b5d2870757ce6e7a31173ac8755b763b16d7b1 3 | size 61513 4 | -------------------------------------------------------------------------------- /blogs/2020/12/03/install-deps.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:370cd2d880553ed53501da8b8873ca767f0c27a10a89222bde9b06052303df1c 3 | size 167584 4 | -------------------------------------------------------------------------------- /blogs/2020/12/03/install-node.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9bc2ea243c23d36b84f38a09cd7ed7ef9250894f7a4b1aa1b7893ef44621ef2 3 | size 110326 4 | -------------------------------------------------------------------------------- /blogs/2020/12/03/install-nvm.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63fcb84a5fac9852fc8e05bc6401f2df5f0f11c4685315b043d5e23c09f9e24c 3 | size 112331 4 | -------------------------------------------------------------------------------- /blogs/2020/12/03/install-python-deps.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3bf7ee47063c3027aecf2e8d9b0ea4f7d14873189c0afa1396b429b120daacaf 3 | size 139589 4 | -------------------------------------------------------------------------------- /blogs/2020/12/03/install-python-ext.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:18bf10d6cde19031d575e1a68e38d8d694f6cb4fedee1ea04440c5c8af9410db 3 | size 227108 4 | -------------------------------------------------------------------------------- /blogs/2020/12/03/intro-to-js-cover.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c261af4d11e650945f96539e4b8d2b29ff476edc58edaed26a7edac506a356ce 3 | size 44169 4 | -------------------------------------------------------------------------------- /blogs/2020/12/03/launch-vscode.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de0183241f5295bc0171fe5f877ed818de77f343f94f1ca4add9fc6a7cb759d5 3 | size 366233 4 | -------------------------------------------------------------------------------- /blogs/2020/12/03/terminal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:17d848642b834d3fd405c3d7afc08923968858d965bd72e1f4400f68ddcce8b1 3 | size 12231 4 | -------------------------------------------------------------------------------- /blogs/2020/12/03/vscode-running.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:97a51ad8a0e882aad428e7692432d7cc81ae2509d2a0de533a0c161ed89e3cef 3 | size 141462 4 | -------------------------------------------------------------------------------- /blogs/2021/02/16/bisect.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27078815f3c3a9cc6c28330592f01425c2abf4b7006ac00f0227f5113c59801e 3 | size 1632017 4 | -------------------------------------------------------------------------------- /blogs/2021/02/16/disable_manually.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:71b698d4e85f3455e869984bce1fa8c28b7e720294e9d9f04123b888315ae3d3 3 | size 666303 4 | -------------------------------------------------------------------------------- /blogs/2021/06/02/remote.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0fa995a24bf131d4b3bdbf0bcbb2d2639a7fb4cff5e27d601d1a64b2f6c3bd59 3 | size 46852 4 | -------------------------------------------------------------------------------- /blogs/2021/06/02/typescript.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4bd926e0f35d585ddf22012b8be6f81d70ff234b9f25630aebad3a75431ce4cf 3 | size 34857 4 | -------------------------------------------------------------------------------- /blogs/2021/06/10/continue-options.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:805003c70a893d9c2e3f37761c478dbde1223ea4404cb93a09816a03bc37eda2 3 | size 43148 4 | -------------------------------------------------------------------------------- /blogs/2021/06/10/continue-working.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:582cd6846cb402ad05bab4cf4209fa28a139f15816c05b9bb24dc2488ba96eac 3 | size 9327 4 | -------------------------------------------------------------------------------- /blogs/2021/06/10/extension-limits.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f4042c38136f6c346fbff7e82db79285bb612ede0669371ac69000749510ba2 3 | size 115702 4 | -------------------------------------------------------------------------------- /blogs/2021/06/10/main-branch.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f913f8408bc16c6514243c9c73cff51e7736ff97a53faa8d020a06f99693324 3 | size 16479 4 | -------------------------------------------------------------------------------- /blogs/2021/06/10/open-any-repo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:686ea0bc336a2d76df1d9e4326851462cacef2e10c8ac6fee4730d5bd86b2aac 3 | size 509255 4 | -------------------------------------------------------------------------------- /blogs/2021/06/10/open-repo-or-pr.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:280f23ad0ac8ce7bf3d4002cfda3a4c5f3e0190d2f38d4a4843e5062ecb91453 3 | size 29464 4 | -------------------------------------------------------------------------------- /blogs/2021/06/10/remote-branch.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a277369bc17f481d5d45ca9b9498ca7be11f40e5932ba273439bef8a2f9debcf 3 | size 33429 4 | -------------------------------------------------------------------------------- /blogs/2021/06/10/remote-indicator.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8b0540c202293d9812ba9eabc29d72d0d95402a5af7045223b47f062910b077 3 | size 26279 4 | -------------------------------------------------------------------------------- /blogs/2021/06/10/switch-branch.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6305ae65ee122d9e3a3169d2ae9c488c91d97e069c1a0158f7ebd11d20335c32 3 | size 44624 4 | -------------------------------------------------------------------------------- /blogs/2021/07/06/eslint-warning.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:098c40525c3ffd852e738f1f89253de3f0de75a66f774fadf1e4f62ad4989c9b 3 | size 431564 4 | -------------------------------------------------------------------------------- /blogs/2021/07/06/trust-security-icons.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb3ea281636e088ec6ab2cf542a173e9f7f5a33b7c5d279c6a364aa314f3d3de 3 | size 46302 4 | -------------------------------------------------------------------------------- /blogs/2021/07/06/trust-social-image.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:62ea5a80675b7919370a498a140ff8952a33a93d7e85fcdffe865fbd6c3f0646 3 | size 208090 4 | -------------------------------------------------------------------------------- /blogs/2021/08/05/notebook.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:222916c52765322487e68c9465d3cd776d9dad0d11878b18ce8faef4ed928cca 3 | size 211722 4 | -------------------------------------------------------------------------------- /blogs/2021/09/29/checker_ts-native.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dbe2f01c047f87dcca1e816752574c4b897bbd1cc648b77dd18c4ba929b9c789 3 | size 98257 4 | -------------------------------------------------------------------------------- /blogs/2021/10/20/continue-on-dropdown.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:599eec21bfc74b8929d343beb175b7ef4046de4d79aafac7a785fab3eae2d30c 3 | size 43603 4 | -------------------------------------------------------------------------------- /blogs/2021/10/20/join-live-share.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0452975cbc90f2538a93e10c177afe94f3f5e0a2bf76a913cb184e8a08df064e 3 | size 83505 4 | -------------------------------------------------------------------------------- /blogs/2021/10/20/vscode-dev.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12b1e798ed1bbccf7c2a642a232bd3cb21c921817cb5db0960e926b4872ce54f 3 | size 1459135 4 | -------------------------------------------------------------------------------- /blogs/2021/11/08/notebook.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a870c3f3f9b70520006fc8c468ee4447532eb3b13e2a169cc71a7dfdd19e9347 3 | size 2307509 4 | -------------------------------------------------------------------------------- /blogs/2021/11/08/rest-book.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e3dfeff6b2492833418efbe69e735bc8c050bc5558782138a221fd2f3834098 3 | size 1022157 4 | -------------------------------------------------------------------------------- /blogs/2022/03/08/add-dev-container.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:40e6549a7d76a4fb3bb3e8bdbeba0113536bc49bd6a8a9df40590fa5a5596289 3 | size 15925134 4 | -------------------------------------------------------------------------------- /blogs/2022/03/08/container-logs.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b96743d51813b2d0decad7a5d671cff738ce44398b51c7b7372b5531d4d3fb1 3 | size 276068 4 | -------------------------------------------------------------------------------- /blogs/2022/03/08/docker-extension.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4c10448aece3502b13325d0d79b236af4e5ca2089bddaed3b42e433e07359c08 3 | size 51825 4 | -------------------------------------------------------------------------------- /blogs/2022/03/08/laravel-app.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:648b0a8d9d789b735b8914e16b49fc1066655bd3784c1d2aead5e75ec573719a 3 | size 91848 4 | -------------------------------------------------------------------------------- /blogs/2022/03/08/port-forwarding.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38d6fb78de3dbc6ddec892a75ff8ca31d578917758fe43f8848d519e33fbff65 3 | size 13144 4 | -------------------------------------------------------------------------------- /blogs/2022/03/08/remote-indicator.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:553ef71316f1c7e477d5fbdd17151e33613a1b2b9efed2d64de2e5aba308603a 3 | size 55563 4 | -------------------------------------------------------------------------------- /blogs/2022/03/08/terminal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:628c2ab497aa960c243eee081dfca8d00fb0fc5d34bf79afd756d64f1d38bfd0 3 | size 13323 4 | -------------------------------------------------------------------------------- /blogs/2022/04/04/codespaces-diagram.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e448e5ba6742cdb722204a8213858a62d08fcc55cfaee4bec93448e6f1ac2ba 3 | size 56162 4 | -------------------------------------------------------------------------------- /blogs/2022/04/04/container-diagram.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7c7e2753f85d0050cebfebe439ff8e5b20f75732277f752b013c12bf2c20f0a 3 | size 36866 4 | -------------------------------------------------------------------------------- /blogs/2022/04/04/this-is-fine-meme.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8572c632fd1487c4cc93a5a27bc71c13780854c1df4a7267080bdd178689bf93 3 | size 161744 4 | -------------------------------------------------------------------------------- /blogs/2022/05/18/dev-container-stages.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:91fa228815927cd9ed9a6805a7c1d47e70d195a5e2deac9a77074af767519bb7 3 | size 46234 4 | -------------------------------------------------------------------------------- /blogs/2022/07/07/cli-auth.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:48bfa9100da3054544452689055de1941dea62fbd89ae0ca35dda4ef1ca7ab35 3 | size 37842 4 | -------------------------------------------------------------------------------- /blogs/2022/07/07/help-and-start.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c60972727b49f7003844b6afe829cd31d1ac70b35fd165c113968594bb1dab89 3 | size 1121304 4 | -------------------------------------------------------------------------------- /blogs/2022/07/07/server-name.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:02acbfe00cfc693d3d77f5d0574ce401a76a183009c678421979934c44c4ffa5 3 | size 15408 4 | -------------------------------------------------------------------------------- /blogs/2022/09/15/features-list-site.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4af6e699a1fa7010c61559806377777dd845c2c9419516020cb614483a06d6e0 3 | size 385754 4 | -------------------------------------------------------------------------------- /blogs/2022/10/04/github-discussions.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a49e9ed51d92f52809c5cf50a26f772daeb13403c5b27353c6a379c86dfb5cd 3 | size 791207 4 | -------------------------------------------------------------------------------- /blogs/2022/11/28/html-node-web-page.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:102c338ccdd997a26bed369e2ad43f3842451160ae8390ce9be15436fccebaac 3 | size 109190 4 | -------------------------------------------------------------------------------- /blogs/2022/11/28/ipc-preload-scripts.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:402e5c8e1b1e63cb63dcacf5f84ef7950225845a7c223232b137421f5dc45e47 3 | size 14333 4 | -------------------------------------------------------------------------------- /blogs/2022/11/28/messageport-exchange.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bde4e6a30e6e37e04120229d61f864c63458e78dfe25acffd2c0210af3a6c335 3 | size 28623 4 | -------------------------------------------------------------------------------- /blogs/2022/11/28/vsbuffer-class.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99f06c7f700137abc5bf0d05c81f47947762fd49221c84aa2cac8197326f5ece 3 | size 86431 4 | -------------------------------------------------------------------------------- /blogs/2022/11/28/vscode-web.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:35a0ea8f81446ee206d052f48209a581325fa37707f1920bcc45886cee039400 3 | size 280602 4 | -------------------------------------------------------------------------------- /blogs/2022/12/07/tunneling-blog-list.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b8d04a1efa18a648dd70b64816d2c686fbd31957f5adefc9e3d397f8c5b0ac1 3 | size 24760 4 | -------------------------------------------------------------------------------- /blogs/2022/12/07/tunneling-blog-wsl.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b099e330d7101d3a5ebd6fb86cc6cd4a99c71d64191ad8102df8186daf812b9 3 | size 82912 4 | -------------------------------------------------------------------------------- /blogs/2023/03/30/editor-ghost-text.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:908337eff96952fcbd724778471f04c7e74f5ea614b133934226a2b841a6b9c6 3 | size 64358 4 | -------------------------------------------------------------------------------- /blogs/2023/03/30/extension-chat-view.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f31f9bfdca91856649de308721682a87e7fdd5698891fb865e5eecec5d56136e 3 | size 49618 4 | -------------------------------------------------------------------------------- /blogs/2023/03/30/inline-chat-preview.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:af7c873adfbfd68e13221ac5b3876c9f7be8e803adfafeae3033a4f97bd21e15 3 | size 80282 4 | -------------------------------------------------------------------------------- /blogs/2023/03/30/turn-off-breadcrumbs.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e82cc734c135257b7d03c14a71eefa55a88329719956fd1f8fc09ae13005c348 3 | size 37277 4 | -------------------------------------------------------------------------------- /blogs/2023/04/13/monaco-workbench.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e472d20068f7fe9216a2696281e3558a37d6432b4b234a5e72298da299ab8757 3 | size 137276 4 | -------------------------------------------------------------------------------- /blogs/2023/04/13/vscodeday-header.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:adc6b89345b5e706155f5ec8776d9e59c569daf93e3f2cfad759ec6f6318cb7b 3 | size 342413 4 | -------------------------------------------------------------------------------- /docs/azure/images/mongodb/connection.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e1c7c664ae0f7d15e430a73ebdb5d61d0341603829e8fee1e0c783bd9cff7fe 3 | size 13689 4 | -------------------------------------------------------------------------------- /docs/azure/images/mongodb/scrapbook.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5177ab219fdb792887f50b7d1f49242f95d5455f561b6cef7224d81727a0272d 3 | size 21629 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/Lightbulb.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1be597255fe31610270616195ae219924c691bb7ad341f9346ad71e5815a01ca 3 | size 5139 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/bash-ubuntu.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3b26f061620397585dfbef13788bbc401efb3271d7bd9ecac08d3ec706ab31d 3 | size 3835 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/breakpoint-default.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c8e9a5758be23559e19e90439e8fd1e4e4b5da25c283ea2e655834c0a304023 3 | size 9263 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/breakpoint-in-main.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e31875ca613ed433d70f175e8eb504bdf19aadd16de6beed526985d12bed21d 3 | size 4716 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/cmake-build.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8c457610b62b45ebabaa66f9c5ce8717b243ab7f9d8e574fc1b377d697c771a9 3 | size 9772 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/cmake-choose-type.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ca0515e91b1b2293d822cfbed099598e591543e4ad4db76463d6a10ace97c47 3 | size 14418 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/cmake-debug.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81282b41c659bcac2cac16b111dfe74d182dd90ad52a55e35b9e1d56d8e512a4 3 | size 17284 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/cmake-extension.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:988296b61f71646902372ee840af99b01a65f28543f92a1db720bada68f52c1e 3 | size 14447 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/cmake-selectkit.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9dbe90e592338e6ec0081ca401d32af876b34db18fea4de37e4fc3a69c6ad2f1 3 | size 23093 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/command-palette.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5dceac5c458ca4404012c2c180eb0e9b71f4565394e68738b1ceab1d7eeab8b8 3 | size 13756 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/compile_commands.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:73c91e0511746ae666b6d04161710bc911fd06248bfa2600bda16d543ebd38b0 3 | size 5933 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/condbreak.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42243966c9b69c542e04ec431e5fc23f8600cf00efbecc2aaed8f68c1b9f8603 3 | size 8107 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/cpp-extension.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d5d10e3d0596cc4f25b4591bdb0ba44385a5eacdb5650b91ecf38f164758664 3 | size 35557 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/cpp-lightbulb.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8730de1c3bab858809ed7c7236333a820a333aca5d8d946998ab506bc5d2cac2 3 | size 5499 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/create-launch-json.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6fa711741122ab4b2e2a93f355e738d3373879b777849ea9c05a058ecabf3612 3 | size 3697 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/create-tasks-json.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:97e7ee286b377e3c5914323e31aebf10f7640e75137b3ad8d4af1c401fd465bc 3 | size 6126 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/debug-controls.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eccf362481390e4eed31b5a2a5ba7ff91e7dc8416f39c45b29cb25687f08fac7 3 | size 590 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/debugger-panel.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bac299f85ccc46981ca1a213cad7a69feeec60792baf6d89006a0203936c533a 3 | size 7684 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/file-explorer-mac.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e34f96107cf13100630d1d0f1b4b2259af2f4d993becd4cf67dbe04c90a044d9 3 | size 4672 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/file-explorer-msvc.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a428c74e26d8f8086c65d083ef4b99c0ba7c2c16f3b705f0ab4ad87dfb9c1ea8 3 | size 6434 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/filesearch.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae130fef3c0615b2acbfb0bcdae915bf20eda1468937b950fe1fe5100abd8a76 3 | size 17408 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/include-errors.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a290b7025ead328ea254cf5dff6165c8416832b849b1556985b64513f1337b69 3 | size 24768 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/languages_cpp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cad78f4c0aa010b6e3b52dde7d8fb5eafe498341356cf35f3275258e7138f9cc 3 | size 66988 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/launchjson.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31025cb94c5f63c46c9de189e753384fdac9ce89a76d677bd9dff69e3cc35a6d 3 | size 21150 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/list-members-cpp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f252b721d385b94978908f9c04c400f81be2828f1d6fcc514c800f3c66325a1 3 | size 20455 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/logging-level.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:037c6a1574b7fbe7de81fab60f475152d6830d4c7ed518e99e5c59200b51e82d 3 | size 6118 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/mouse-hover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:72ced94a1f73ec1698eac839b24d7606db58e788267df7ddf3b22f86c6603e16 3 | size 3254 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/msvc-build-output.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3325c702eca7b73cfe8902b66ed981d40d7c0451a8cb6cbe1a845d4491cb5a58 3 | size 7499 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/parsing.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:01be558a71d2f41e9bd2a9aa532478b4f21759534c6c34fbd2a1a932afac073e 3 | size 1537 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/peekdefn.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0b6df745a0434cbd87494269bdad14ebc87b56d00a41a2a6accdbd600e7f34d8 3 | size 17805 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/start-ubuntu.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6638d53d60962ffe4c7bdbd97e4931e58b34962a29ecf00cb2053937fd74e72 3 | size 3890 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/step-over-button.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a136197151ed63b9b524306c86ce6450cbae1de294e4524205f9e20fa7ded62 3 | size 1711 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/threads.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f548b786b90ab1489907c66cdd4fa4856ae2730363e3b1f3411ca57da6968052 3 | size 9269 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/watch-window.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be5b48e650534d22cb7efeae5616a65c85332b28a20aff6c78946db0b97c89a6 3 | size 6701 4 | -------------------------------------------------------------------------------- /docs/cpp/images/cpp/workspacesearch.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eaae5dc38a4e8b0dcea5d133725602aaac47a692ff95a44d4720de503803beda 3 | size 16963 4 | -------------------------------------------------------------------------------- /docs/cpp/images/mingw/new-file-button.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad257138cb5cd682e4e3f61df3d1bbfcb80b0bf081f89af245f29f07b86c6335 3 | size 7756 4 | -------------------------------------------------------------------------------- /docs/cpp/images/mingw/quickinfo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dea5e9ce4a7280c9a8b6206864785fe5bfbefd85225324eacb17b43bc7c3deed 3 | size 21355 4 | -------------------------------------------------------------------------------- /docs/cpp/images/mingw/stopAtEntry.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5657113e500eedb4ba993b02bd6c5f029173f24912fb90636dceccbd5949935a 3 | size 33838 4 | -------------------------------------------------------------------------------- /docs/cpp/images/msvc/build-active-file.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cdce3d9e3d8ba81487a14337f684b57de09b7b1c3561471c9dd1c724bce2b3a1 3 | size 3482 4 | -------------------------------------------------------------------------------- /docs/cpp/images/msvc/check-cl-exe.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a4e6c7aec6fa2b85f818a3ca320921a8c1b41dd3cf120cb6fb11f3b3d4f44dae 3 | size 18313 4 | -------------------------------------------------------------------------------- /docs/cpp/images/msvc/file-explorer.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d529d2523f914f28ef6ef80a70c2ee22ac8b16ed7178caf92348983d786697a 3 | size 13655 4 | -------------------------------------------------------------------------------- /docs/cpp/images/msvc/new-file-button.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11997360062d679d578a2614075858eabfb6addfbf6b782828cbc2d1ccb52367 3 | size 8599 4 | -------------------------------------------------------------------------------- /docs/cpp/images/msvc/stopAtEntry.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a34ec63a7d46d7735a0b54be63273a0cb622fe8471d272d928d71f2da8e0d5ce 3 | size 35271 4 | -------------------------------------------------------------------------------- /docs/cpp/images/wsl/bash-ubuntu.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3b26f061620397585dfbef13788bbc401efb3271d7bd9ecac08d3ec706ab31d 3 | size 3835 4 | -------------------------------------------------------------------------------- /docs/cpp/images/wsl/build-active-file.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:de0f6868f4b6819b5e9cfbab6d1bd7ed495485687a4d588532e0ba6cf5538f1a 3 | size 8404 4 | -------------------------------------------------------------------------------- /docs/cpp/images/wsl/file-explorer-wsl.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1865e71c75bd35536741bdc31abe30114335e65b8051ccbfdfedf88683c08ef0 3 | size 18720 4 | -------------------------------------------------------------------------------- /docs/cpp/images/wsl/install-in-wsl.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6b6d36f2cea125d4c39e6c36c03a85774a360cb3b7d213d5c0cf7a487bae9cb 3 | size 64874 4 | -------------------------------------------------------------------------------- /docs/cpp/images/wsl/msg-intellisense.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f1a51517a9a12df6e1fabe54010d202e8f694caeac048bf876b485793683221 3 | size 43922 4 | -------------------------------------------------------------------------------- /docs/cpp/images/wsl/new-file-button.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a81df2614c9c4513898d6a9d4a7e9aca2fe075e30d72c3e31d81e9c012d7ac0 3 | size 7666 4 | -------------------------------------------------------------------------------- /docs/cpp/images/wsl/start-ubuntu.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e6638d53d60962ffe4c7bdbd97e4931e58b34962a29ecf00cb2053937fd74e72 3 | size 3890 4 | -------------------------------------------------------------------------------- /docs/cpp/images/wsl/wsl-bash-terminal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e1c2d472948378049d7277c4609505a8db8346b7d7b478bd754d99e3539031f 3 | size 12216 4 | -------------------------------------------------------------------------------- /docs/cpp/images/wsl/wsl-status-bar.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c76d890753ca5de87308bac85b336086e79dabd776abb3a018cbf134aee0ab56 3 | size 1686 4 | -------------------------------------------------------------------------------- /docs/editor/images/codebasics/folding.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:51edea519748be0d0babec37d9ef612dcfcd0724c8ebe02819527652758aa880 3 | size 10557 4 | -------------------------------------------------------------------------------- /docs/editor/images/codebasics/search.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6bf2e4993bc2892996541656231c39a2022826e7ff50bb9851bd33671dcef39c 3 | size 25115 4 | -------------------------------------------------------------------------------- /docs/editor/images/command-line/hero.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:abf9537e56cb24cac0b971f906bace20688748eddc66ad9c7d311e19eacdecf4 3 | size 5698 4 | -------------------------------------------------------------------------------- /docs/editor/images/debugging/run.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6bb271a687c4a6720c65c4f201b33b1b999ca2f60c9cc463f351bfd3350cfb81 3 | size 13518 4 | -------------------------------------------------------------------------------- /docs/editor/images/debugging/toolbar.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eb8b53f303b1be2c8f0f1ba8213a8c7e6dabed223aad8617dd5e77939849c9da 3 | size 439 4 | -------------------------------------------------------------------------------- /docs/editor/images/debugging/variables.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e1004a1d82653afb388bd543972d3a0279c529689e4ef99dea9ec803145bf521 3 | size 5819 4 | -------------------------------------------------------------------------------- /docs/editor/images/debugging/watch.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6af1c176f79dd5d21764426a9c0e7331e39994abafee1e886d06cb66ec67833 3 | size 3375 4 | -------------------------------------------------------------------------------- /docs/editor/images/emmet/emmet.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82f194f2b74764015768c47308feeaec03ef3484242357d2d870a2e38a20a117 3 | size 194330 4 | -------------------------------------------------------------------------------- /docs/editor/images/keybinding/outline.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:963061b4ff2fe4273063009a58a859db9b64c1496b436a0f9781e8b30360722d 3 | size 4807 4 | -------------------------------------------------------------------------------- /docs/editor/images/refactoring/rename.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca1a7b1580256e379f6639ad2e921dc46982c0c1b25b39c7c9faa30b0b0e3068 3 | size 8869 4 | -------------------------------------------------------------------------------- /docs/editor/images/tasks/intellisense.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f5a8c23705965bbbe8fd5b85b076aec8c26795a231bd05e158d4d5deb54e91a 3 | size 5004 4 | -------------------------------------------------------------------------------- /docs/editor/images/tasks/tasks-array.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67c1c94f8baa0d02c1bb7d73fedf141b6797c3443d5de6fc068020c387d26875 3 | size 12638 4 | -------------------------------------------------------------------------------- /docs/editor/images/tasks/tasks_hero.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6547ca047e274bf30014db5c4f6afdcf61f31918a98be482c307bd573e9b52c6 3 | size 13301 4 | -------------------------------------------------------------------------------- /docs/getstarted/images/settings/hero.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac88fba770a4ea942ba2540f3b3713974c3ad72ed20d299e6ac315dcf1babe18 3 | size 114551 4 | -------------------------------------------------------------------------------- /docs/java/images/azure/azure-tools.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:027c808d27ae82b77734a7fccc64d415e813ba77f6dc4bafda29c845c0275a56 3 | size 19510 4 | -------------------------------------------------------------------------------- /docs/java/images/java-debugging/hcr.mp4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e1e9bb3963c4623c68534060d2b0ce3a9b525129928fc61d684021b7291066b 3 | size 320443 4 | -------------------------------------------------------------------------------- /docs/java/images/java-gui/enable-awt.mp4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1255805114fe5f4ccf8f35225deb366a9e18ad398fac876e7b24394b5e8a3272 3 | size 487159 4 | -------------------------------------------------------------------------------- /docs/java/images/java-gui/run-javafx.mp4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cdcd895a7e0ef7f25fc9812f797b177f7b066d9aaa213daa65f6be69a87c870f 3 | size 397130 4 | -------------------------------------------------------------------------------- /docs/java/images/java-testing/settings.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:710db812974a2c76d3082cf5ea851dc6c9c94b4d85a206d551b3c70b8c90bf35 3 | size 8994 4 | -------------------------------------------------------------------------------- /docs/java/images/java-webapp/greeting.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e794c47e6ff612f93edc67bef0cc04bd60dca92de37763453d094a5fa2c81090 3 | size 6896 4 | -------------------------------------------------------------------------------- /docs/java/images/java-webapp/login.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b52e01be959af5b54347ca488a1981774b07c174b2b7a9b1299e811af9ad05a 3 | size 27025 4 | -------------------------------------------------------------------------------- /docs/java/images/java-webapp/overview.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3829d13c9e3ea660d6a0a57eb14d324df455a0a14e3e8b8f91b55a5401706ecb 3 | size 15515 4 | -------------------------------------------------------------------------------- /docs/languages/images/cpp/condbreak.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42243966c9b69c542e04ec431e5fc23f8600cf00efbecc2aaed8f68c1b9f8603 3 | size 8107 4 | -------------------------------------------------------------------------------- /docs/languages/images/cpp/cpp-hero.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d4030e1989c33b7b5b78154862bb09f53477e84d9545936328d4e51fbd7380bb 3 | size 9426 4 | -------------------------------------------------------------------------------- /docs/languages/images/cpp/cpp-toc.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f261a19f7afa97b54f694a1ee7624a5d5ae921e33a59c6823dddb937e25f3c0 3 | size 145414 4 | -------------------------------------------------------------------------------- /docs/languages/images/cpp/filesearch.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae130fef3c0615b2acbfb0bcdae915bf20eda1468937b950fe1fe5100abd8a76 3 | size 17408 4 | -------------------------------------------------------------------------------- /docs/languages/images/cpp/launchjson.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:31025cb94c5f63c46c9de189e753384fdac9ce89a76d677bd9dff69e3cc35a6d 3 | size 21150 4 | -------------------------------------------------------------------------------- /docs/languages/images/cpp/new-file.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a25cd1306425821aeab929ed0343093a848262c5e9fcdcf2c9509bd2ca3df372 3 | size 7611 4 | -------------------------------------------------------------------------------- /docs/languages/images/cpp/parsing.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0232a8722ee335331f95398e603a85ca69f4f8cb11b01208e94c824ca308c995 3 | size 1543 4 | -------------------------------------------------------------------------------- /docs/languages/images/cpp/peekdefn.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0b6df745a0434cbd87494269bdad14ebc87b56d00a41a2a6accdbd600e7f34d8 3 | size 17805 4 | -------------------------------------------------------------------------------- /docs/languages/images/cpp/threads.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f548b786b90ab1489907c66cdd4fa4856ae2730363e3b1f3411ca57da6968052 3 | size 9269 4 | -------------------------------------------------------------------------------- /docs/languages/images/csharp/codelens.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:71d75cbf3bfa9542e0397191707e048dc5a156b8d7ba041ec093b831cb76a60f 3 | size 5403 4 | -------------------------------------------------------------------------------- /docs/languages/images/csharp/lightbulb.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b7662bb260c52f295c92d460968686c7f2412df7733a68a29231c47591075e8 3 | size 2356 4 | -------------------------------------------------------------------------------- /docs/languages/images/csharp/peek.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0475e9d830126bcdbc893ec8fefda22acf3e1e9ee40543ce9739c1e644b04b69 3 | size 24779 4 | -------------------------------------------------------------------------------- /docs/languages/images/csharp/snippet.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd7e41ffb334c5dd6a0fc101758050552172634bd7bf20853e94c443ef565eb8 3 | size 3131 4 | -------------------------------------------------------------------------------- /docs/languages/images/csharp/symbols.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6bc19a51bb89afcf66ebddd7965917a6d894babc7ff580a2810f7cc8638703e4 3 | size 14812 4 | -------------------------------------------------------------------------------- /docs/languages/images/css/color.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a006d7ddbf15396c47839499464743339748fdba718e1ed92827519786ca27c 3 | size 7685 4 | -------------------------------------------------------------------------------- /docs/languages/images/css/hover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6d0fb3d13fe092e0852b4a90fdd6c235da9c4e281f503e3769905120c160c26 3 | size 4636 4 | -------------------------------------------------------------------------------- /docs/languages/images/css/intellisense.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6d4d0db1ed3e0c7ce79bde9dbd3ab188fb8dff436e2864054c6e5d44c44f8b7 3 | size 9715 4 | -------------------------------------------------------------------------------- /docs/languages/images/css/taskwatching.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a14869c4c822a3e2f91428a36c3e4cf1e35d21f1bf48d325b623c9182a54e29c 3 | size 2680 4 | -------------------------------------------------------------------------------- /docs/languages/images/go/go-extension.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99aaef4847ab94f8083b686c920d18926b51502519414c6ab197deccf0a2047b 3 | size 11567 4 | -------------------------------------------------------------------------------- /docs/languages/images/go/testcommands.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1da88a479bc3a7978dd480558ff7e024f0cee50018d1c174fcbeb8528c05665b 3 | size 3810 4 | -------------------------------------------------------------------------------- /docs/languages/images/html/htmlhover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a472c752d3e06bee13204a92302baf2fd4d9acbc4b40fa19173d10560ecd153 3 | size 3965 4 | -------------------------------------------------------------------------------- /docs/languages/images/java/testng.mp4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffaa65f70e35f897a4933f1878a42d6a2fdf030c0ab7ce0ff099f749b6bce8b7 3 | size 1095269 4 | -------------------------------------------------------------------------------- /docs/languages/images/javascript/hover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0c242f360581a67915b5440efafcb18554c21d7813b73c8ce2eeea2cd9669f5 3 | size 7291 4 | -------------------------------------------------------------------------------- /docs/languages/images/javascript/jsx.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:127227722c2bd9183a71e801eb69b8f1152f69f2c2addea52b35aaeaadc4262c 3 | size 36083 4 | -------------------------------------------------------------------------------- /docs/languages/images/json/gotosymbol.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f1a9d002b5432f2999255306d55c2bc79e9e8e38f5917d912fd8bb0672d9ba7 3 | size 4066 4 | -------------------------------------------------------------------------------- /docs/languages/images/json/json_hero.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8ef352f04f286a33ef99fd6cf18a2b4e0b2886011295c9f042f3131e35915bf0 3 | size 11287 4 | -------------------------------------------------------------------------------- /docs/languages/images/julia/debug1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d29ef20faf1223dd5eccfaa1dfe272ccc77e568f3ab01822fbd2f7826c91e141 3 | size 181095 4 | -------------------------------------------------------------------------------- /docs/languages/images/julia/debug2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:92fdbe9522c96f19901cf9d3c5dd2c055d917c787c2e9a9cf2c89ba5c55394d9 3 | size 191530 4 | -------------------------------------------------------------------------------- /docs/languages/images/julia/debug3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a81a40c88d9f57e5179518212f80ab655368c545fd45e62cd15663151469b7ae 3 | size 154010 4 | -------------------------------------------------------------------------------- /docs/languages/images/julia/debug4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7bf4d9789374158312e0129330404b4874aefa04a75d06bb0f4480ed22d4c0f1 3 | size 156015 4 | -------------------------------------------------------------------------------- /docs/languages/images/julia/overview.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e75a54d7328edab26be378020b84d5730b0f67c66b2ab1af24fd03130c0fb81 3 | size 102416 4 | -------------------------------------------------------------------------------- /docs/languages/images/php/php-snippets.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d47a110b2741f55e20878a599338cab908742577f790eced486e16b1b7c476a9 3 | size 4419 4 | -------------------------------------------------------------------------------- /docs/languages/images/python/jupyter.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f0c32d7c826f1d382a65a4340bf3f63bcfe77d3c3108cbe4b8d97574e2c74e07 3 | size 123372 4 | -------------------------------------------------------------------------------- /docs/languages/images/r/completion.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:803982eef55e2808c731fd8b1e1d356a3af880ffe1af0b82a7e2d4a9768112b3 3 | size 4880978 4 | -------------------------------------------------------------------------------- /docs/languages/images/r/linting.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2777706d3d86f68b5ab17b5dbedaeeb6a1584c9fbcfe6766227ae1f1078e41a7 3 | size 396964 4 | -------------------------------------------------------------------------------- /docs/languages/images/r/overview.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:89103afc1cfe5fa8f586cc4cda4901aacdae37a4f715995bb7878b050d4c8206 3 | size 986048 4 | -------------------------------------------------------------------------------- /docs/languages/images/rust/cargo-run.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab8f746c23bd7db601015428264e5e1ec46393243e006fde9d15ad94fd7f17b9 3 | size 51361 4 | -------------------------------------------------------------------------------- /docs/languages/images/rust/hover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:520a044cb84651381e97100b5c0c6b6b30b1378831a6e21641c39f04f49ec065 3 | size 77232 4 | -------------------------------------------------------------------------------- /docs/languages/images/tsql/execute.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fea89cbbef93d3d5cd964659be8f4d7e1acbd9668d5f649c19a47ffd35dfba25 3 | size 240949 4 | -------------------------------------------------------------------------------- /docs/languages/images/tsql/linting.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e65c54ef99a759ea78247870376deed2ae9f149dedab69be4bf73dcde416d271 3 | size 308016 4 | -------------------------------------------------------------------------------- /docs/languages/images/tsql/save.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb31a4c6273db6986fb629eb189ed72ffbfb0d4202fd2e320554148dd16f34ef 3 | size 378652 4 | -------------------------------------------------------------------------------- /docs/languages/images/tsql/snippets.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c00208b43504c53ff4d9a465114209718a6791d8e33d295f367d2a74de0afdce 3 | size 376793 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/angular/breakpoint.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ab68673ea87b23062479a4274fa1903751eac5bbed9b401b978ae6f796c02e92 3 | size 10990 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/azure/azure-tools.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:027c808d27ae82b77734a7fccc64d415e813ba77f6dc4bafda29c845c0275a56 3 | size 19510 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/extensions/eslint.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b9f8e40114e67297145246c66ba39cbb5e4d8a1767e4808f0d5a89113163e12 3 | size 50437 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/nodejs/debugicon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6aead9e4ed9e71de2cc860564181ec60d4767b11d43f0e715f501e1a04b3858 3 | size 7897 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/nodejs/express.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8926729ee0ec5c1684157bdbb5877da24b85787e494884f24b09ad5209043fc 3 | size 92180 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/nodejs/hover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:005a5616617877f6b69f395d859cb4487793128c02b3dab8f0e92ff9d59694f8 3 | size 39505 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/nodejs/launchjson.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3bcce5bbea847b753fae274276d9e837de372f6c27cdc665d4d0de42b8b7497e 3 | size 28755 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/nodejs/warning.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2b99bbcef53ffec17e001ba6128680ef21baadf79b0ec93325d29fb61256ac10 3 | size 7058 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/reactjs/breakpoint.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee3c5850e8a492ea84daae7cf1fd54f011bdb2b5bea6c1c8fd113168ce115fc1 3 | size 32927 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/reactjs/hello-world.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b53438e2dd9fd303ca32762e0ed844f98c1bb1b82214d3ca899fb00dc9e45b54 3 | size 4946 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/reactjs/js-error.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c849fde735704d8f96519d11ac91760a92890705f5419d0b106af7d67127df94 3 | size 40656 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/recipes/browsers.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6dd10f19414462122b1905451e0834a558249d375ee3ec3503e31daf0288c4b5 3 | size 52544 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/recipes/electron.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:28fadedde827bcfbc1ef56c21513e4a2242608d0b7c59ec62c4d6a6004ed5519 3 | size 14248 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/recipes/mern.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ac0cce76aec20f903d6636933c5172fafbf7c2984417f1655230cedc14696c0 3 | size 113464 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/recipes/nodejs.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:97f299639151949fc0d8f4f3242875fda2b3ecebb8b0366d45ddcb9d7ff78ef0 3 | size 16719 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/vuejs/breakpoint.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:55e39a856079fd59628140fe3ae7d7a7c3125ffe0f27127743cea401975d42a0 3 | size 11393 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/vuejs/hello-world.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27a255640e45c23d83f09739f0abe8e4cd95a61eab0c87799154f2f8e7edda67 3 | size 3484 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/vuejs/suggestions.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90486f7e04e89e55445485ef3d54914c3bdf54f994c57cb65bcdbb16478ba67b 3 | size 15757 4 | -------------------------------------------------------------------------------- /docs/nodejs/images/vuejs/vue-linting.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a04f3e4fcd9bf1f4ce37cda746b7012323e6a97f7ef0eb036940644c98eaa98f 3 | size 5002 4 | -------------------------------------------------------------------------------- /docs/other/images/office/appcatalog.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e251dc6ec59dbe898a2e2907d11617db7dce9527e88d4972bdcd56a21d9882da 3 | size 9478 4 | -------------------------------------------------------------------------------- /docs/other/images/office/exceladdin.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac3ec0f7cf503f035cb744818984749464c74656665006860342c3ce2e0fcfca 3 | size 7899 4 | -------------------------------------------------------------------------------- /docs/other/images/office/mailaddin.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a313fe59a242663140a713901892482f482ffdf783172002be0c6510f60e74ee 3 | size 10203 4 | -------------------------------------------------------------------------------- /docs/other/images/office/mailaddin01.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7c4ce5ff7b56a2e9ef5b5f8fb3b66f8f10cee41e64366fa48578b93b0d4415fb 3 | size 6758 4 | -------------------------------------------------------------------------------- /docs/other/images/office/mailaddin02.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:345eda4781400ee688b15d23ecd8313a9aac134f8f0e8af845701c1305f0f0f6 3 | size 8175 4 | -------------------------------------------------------------------------------- /docs/other/images/office/o365spadmin.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86dec017dbcc060c5d525c299f18b1fddf7f2555d13c2e961402b41550696f56 3 | size 2893 4 | -------------------------------------------------------------------------------- /docs/other/images/office/owaaddaddin.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b779d53bb1bb134d7dc114176cb0bfdb8299c05a5c58fba3a34352420a2e9a3 3 | size 5955 4 | -------------------------------------------------------------------------------- /docs/other/images/office/runlocally.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b65799eacf5b80e7ce94b1655c179c278915968bdd4f61d9b0ac949bf3dff15 3 | size 4110 4 | -------------------------------------------------------------------------------- /docs/other/images/unity/filteredfiles.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5afcffe60034233786969b6d5f4ef7f21545bd331fedf8f769bc14c4475f3759 3 | size 3170 4 | -------------------------------------------------------------------------------- /docs/other/images/unity/omnisharp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:12776f735c7ccab9fcc4728c3f0ef2e0b6cb34db4aee41070b74f270d16f2deb 3 | size 905 4 | -------------------------------------------------------------------------------- /docs/other/images/unity/selectsln.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03ea52c85dfdff1606909a736e736166429ee68bb5cc3bdf85ecb3c9b86bf8a1 3 | size 2201 4 | -------------------------------------------------------------------------------- /docs/other/images/unity/wow.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84978fdf82642419c7dde5a22e13c099a2e17c3bba8c778d804ba8b5d21a857d 3 | size 579610 4 | -------------------------------------------------------------------------------- /docs/python/images/azure/azure-tools.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:027c808d27ae82b77734a7fccc64d415e813ba77f6dc4bafda29c845c0275a56 3 | size 19510 4 | -------------------------------------------------------------------------------- /docs/python/images/editing/quickFix.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f77d911c081d6fd55d1e875e45b4d79c4108c62c6d927a47f932682817a9c227 3 | size 70487 4 | -------------------------------------------------------------------------------- /docs/python/images/linting/linting.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04a4a648b52b24ec80671092d43ec8a89ca6ea94672a2aadb91c48cd83e5f2e7 3 | size 8819 4 | -------------------------------------------------------------------------------- /docs/python/images/shared/debug-toolbar.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5fe5a1a0db6b1bc0086ac2b48fd679d02a903c1fd0eb36092481a1b7ad174699 3 | size 399 4 | -------------------------------------------------------------------------------- /docs/python/images/testing/commands.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e2f54f42531d83a7cb2d4b1dc95d9f9f73b2ddec14e74f2a85a886c3accb3b99 3 | size 4220 4 | -------------------------------------------------------------------------------- /docs/python/images/tutorial/debug-icon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:71c49a45d01b0db00283a6ff56b2e0984256db27392ce0e4a25c9c2ee21bd2df 3 | size 2083 4 | -------------------------------------------------------------------------------- /docs/python/images/tutorial/social.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9929846273e3e7c2034b4dbccb7491deec40bfc13b094ebffbef9601f91b3941 3 | size 37324 4 | -------------------------------------------------------------------------------- /docs/python/images/web/debug.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d314b03897be40b2a04b86ac80d1c9f5eb28a7bcad4241437315a11228cfdc13 3 | size 107446 4 | -------------------------------------------------------------------------------- /docs/python/images/web/repl.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c31b7a617ffcdca0fa9a96c7c621e75b071f2bf424d63eedbde743e6e1d4686b 3 | size 110718 4 | -------------------------------------------------------------------------------- /docs/remote/images/ssh/add-new-port.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bbf4cacddc46d680809d0914021837e290d2cbc543b5c53d97558a4c89b482e4 3 | size 45022 4 | -------------------------------------------------------------------------------- /docs/remote/images/ssh/ssh-host-input.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86fab83658e9f54c9246a8871a0081b8862c04b6d8d1977ddfc659388a3d958d 3 | size 5649 4 | -------------------------------------------------------------------------------- /docs/remote/images/ssh/ssh-open-folder.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8dfc9ddff98ceeabe06070946f213553f957a6f779432d8bd8065e9eb9867ebf 3 | size 6408 4 | -------------------------------------------------------------------------------- /docs/remote/images/ssh/ssh-settings.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:215f229b3d1659b39d959ba394c320ecd541786a461bf5cc5a8777eae79b0df6 3 | size 4259 4 | -------------------------------------------------------------------------------- /docs/remote/images/ssh/ssh-statusbar.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b7d6fc432fdc9b6bb0f524db085486eb714eb9fef79f2f8a5c4289bee20ad4fd 3 | size 2413 4 | -------------------------------------------------------------------------------- /docs/remote/images/ssh/ssh-user@box.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:582aeb7f46a25306f20f60b4b6d7ab48bad87153012b49fcde769a1d2b25d483 3 | size 8181 4 | -------------------------------------------------------------------------------- /docs/setup/images/linux/snap-store.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dffec90a6bbff508ee1fee746c64bdcb0615459476a5d15c942f2c02e3364767 3 | size 1510 4 | -------------------------------------------------------------------------------- /docs/setup/images/mac/arm64-insiders.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a71a70a65ad38c56856b81f9bfd3cc5e342b806953c46a6bc54e85a4d8af2de5 3 | size 19507 4 | -------------------------------------------------------------------------------- /docs/setup/images/mac/open-anyway.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:04073475bd2056c81e816c5af7b724e7ce2580d58bdcc26f0eee5a23455f153e 3 | size 28754 4 | -------------------------------------------------------------------------------- /docs/setup/images/mac/shell-command.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dd070187a9f27541c1945f7285d9aecba1a42d8f1e38a4368769c1e2ceb1b964 3 | size 2701 4 | -------------------------------------------------------------------------------- /docs/setup/images/mac/touchbar.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5122fbf3d4490552fa5b2bfe83ae26a6065d415d2c456c6603d0b035e1c8300c 3 | size 205581 4 | -------------------------------------------------------------------------------- /docs/setup/images/network/proxy.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:deee0d68da5494932a982f24fe10a27b10b6497f11504351ea15ada026478acd 3 | size 8555 4 | -------------------------------------------------------------------------------- /docs/sourcecontrol/images/intro/sync.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34264a6710c1eecd9e7fd52777255933d27ba67a6b08dc35dfbb76ffaca3b25e 3 | size 3294 4 | -------------------------------------------------------------------------------- /docs/terminal/images/appearance/tabs.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:59415247287e0d503b04e02ee99b6333d11c8a336ce9107d1d1958e1e9dc0223 3 | size 13142 4 | -------------------------------------------------------------------------------- /docs/terminal/images/basics/link-file.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:45cb86254af4f4f37b568e926919d326ae40c17975a10304947a03c5ecf2af83 3 | size 11949 4 | -------------------------------------------------------------------------------- /docs/terminal/images/basics/link-uri.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0d4481dec4d819e65edeeae7cf2ba27909136aa1cac37e42349c9976efd70a42 3 | size 11414 4 | -------------------------------------------------------------------------------- /docs/terminal/images/basics/link-word.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:23b27431429fa1a44d952051d774cb4645a8713f52f7370053bba96116312f16 3 | size 80056 4 | -------------------------------------------------------------------------------- /docs/terminal/images/basics/tabs.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e7bb62aad9f120bcff215e109717ffb5929facce431a3265b5d3576d977186b 3 | size 35387 4 | -------------------------------------------------------------------------------- /docs/typescript/images/editing/hover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a2cfaa20cc0ec96637ed09897e5cded8b09a79c0a6990bd3a06a44d938becda4 3 | size 15875 4 | -------------------------------------------------------------------------------- /docs/typescript/images/editing/jsdocs.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27dc5074440d926380444ef588345552295080889eab1058a6d49d583e3a0c9f 3 | size 19184 4 | -------------------------------------------------------------------------------- /docs/typescript/images/editing/jsx.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2636cdf531c9b525ad14dfb4de9648916a1ecb791029dbb59582f3aefe42270f 3 | size 18354 4 | -------------------------------------------------------------------------------- /images/MDPreviewButton.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e7898162b491988d4ffe858005b8f95dbdf1c5720d2973df45945989cea3bd7 3 | size 44885 4 | -------------------------------------------------------------------------------- /images/logo-stable.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e0a1a54f4b2b7bc296f1c7947b80cb50f80c5ea1e795e5c813c2033362cd7f41 3 | size 13835 4 | -------------------------------------------------------------------------------- /release-notes/images/0_10_0/yo-code.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5d488d7ebd434185e9e381cf0dab4da74a854e36abba6085c6c34708df14dae 3 | size 2098 4 | -------------------------------------------------------------------------------- /release-notes/images/0_3_0/CopyPath.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa924f890ffa1edade7d6be43efaf415925f2f5395bd0900f34173bcc90c7a00 3 | size 52878 4 | -------------------------------------------------------------------------------- /release-notes/images/0_3_0/compare.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63d5d063d366b1a1c726c51756cbbd22237e446a3a1aaf0a977ea03bc28bdb36 3 | size 2032 4 | -------------------------------------------------------------------------------- /release-notes/images/0_7_0/PHPSnip.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fca243e47e818f00b635b72f2b65bbd6a068d24031515691146e22ff11e817df 3 | size 5303 4 | -------------------------------------------------------------------------------- /release-notes/images/0_9_0/antlanguage.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aa5aa00929f0c369769fd1cd4711dacca8c1988729d3f1e683478f4be4322c46 3 | size 6972 4 | -------------------------------------------------------------------------------- /release-notes/images/0_9_0/lang-status.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27fc8912e744fa2a9ac583b2599afda65b05d72b518c5eab5c1d5c7c6b30a0e4 3 | size 3226 4 | -------------------------------------------------------------------------------- /release-notes/images/0_9_0/mytheme.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:173e8e7895c9c4ac668c0195a47bb2aaa75536f44be4e5812c0bd19f3926c508 3 | size 18040 4 | -------------------------------------------------------------------------------- /release-notes/images/0_9_0/yocode.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8697e968aaa860fa01ed6fa3d3e15b7f024179ec2dfb137fd74d4b1309539a21 3 | size 2150 4 | -------------------------------------------------------------------------------- /release-notes/images/0_9_0/yocodetheme.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b5e25178335e5b29995f1dd79861764eef1a19ccd1e10d4add3969e75f4aa53 3 | size 3557 4 | -------------------------------------------------------------------------------- /release-notes/images/1_10/apt-repo.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b17b2c3e10901549630b9e50f7d07baf4cec7206422062e07daa152538aa6f12 3 | size 19000 4 | -------------------------------------------------------------------------------- /release-notes/images/1_10/menu.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e0721cef8f6a9bbe61609f7fe8218634de0ce1d9054e577e8ea00e590d52dc77 3 | size 24239 4 | -------------------------------------------------------------------------------- /release-notes/images/1_10/minimap.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eeff50dca39f41666505ad30f994507ccc93a69253e443c91881850578774da0 3 | size 219633 4 | -------------------------------------------------------------------------------- /release-notes/images/1_10/performanto.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:170abe47020d5fa65259591959e702c6c9f60879d789299103810df8b9f9c7e1 3 | size 11117 4 | -------------------------------------------------------------------------------- /release-notes/images/1_11/abyss-theme.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4d9ed0193d7aab5debb87c9e8ff826aa8e77237d8ed20082ecdbb4e18a15462f 3 | size 65032 4 | -------------------------------------------------------------------------------- /release-notes/images/1_11/debug-menu.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b8cdfc8e67c1124272da5264bec8e0d64305f146f095a09e2a9634685f6b430 3 | size 22243 4 | -------------------------------------------------------------------------------- /release-notes/images/1_11/dnd.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9dbb16fc2aac98afcdc1f2d0a8c97cff79f428c4727a12ab57f26c6fd49500a 3 | size 76970 4 | -------------------------------------------------------------------------------- /release-notes/images/1_11/encoding.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fc823b1582c8e74b3c4a950c37208233734676c2ff1851299936b0844782afaf 3 | size 5230 4 | -------------------------------------------------------------------------------- /release-notes/images/1_11/fuzzy-score.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a0518b371bcbe3aba4f938025c3d8420f56e22903ae0ec32111f5a722c92f865 3 | size 5811 4 | -------------------------------------------------------------------------------- /release-notes/images/1_11/panel.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f6ef48578e9f4124f2084436a725e36ae5937a73e69ceae398c2d94b8b1f71f 3 | size 1042767 4 | -------------------------------------------------------------------------------- /release-notes/images/1_12/edit-watch.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5b07e64cd5d334141498c709b67ce70fc78a7b0b422f9ca2a52e81f85c54aca 3 | size 5154 4 | -------------------------------------------------------------------------------- /release-notes/images/1_13/copy-all.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d89befe041f9c0b099c586d5813f93ee8f95283a80966b4052645f56e5df37f4 3 | size 18597 4 | -------------------------------------------------------------------------------- /release-notes/images/1_13/emmet.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fde011cddc1cdd8c5a121470a1a865a08ef84e273e22ceb4eda08ed3fbd017dc 3 | size 197408 4 | -------------------------------------------------------------------------------- /release-notes/images/1_13/go-menu.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0eef84a8a6184630d81c69bad6bf56ab29bdd15c81b26664cc913000e6b6b146 3 | size 15390 4 | -------------------------------------------------------------------------------- /release-notes/images/1_13/jsdocs.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:72b87f4692e5179599adea281d77508c891d69146dd81b0f1c3a0235a037308b 3 | size 12356 4 | -------------------------------------------------------------------------------- /release-notes/images/1_13/suggest.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be565eeb78fb93d82bf50f566971242045e81136427b6257d0f1ec1191d579b6 3 | size 249532 4 | -------------------------------------------------------------------------------- /release-notes/images/1_13/views.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a7ba6719640d8ff9a1ae23ae1282b7a7aebd620f177d86bf1428d15c761e4e7 3 | size 13960 4 | -------------------------------------------------------------------------------- /release-notes/images/1_14/emmet.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e7e7dff8162193a30a8d23ea69de9602013f7113cadafcc111afe6d1e1ac10e 3 | size 1020513 4 | -------------------------------------------------------------------------------- /release-notes/images/1_14/gitignore.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a44e555b08d7e888a7b6ee71ff1c14298775e115dea37b12f5566ba5b182a556 3 | size 1425089 4 | -------------------------------------------------------------------------------- /release-notes/images/1_14/md-breaks.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:43f4369b91553b44f9522ca73831f5b04747f0a1e5bdc27fc66020511d3e44db 3 | size 5390 4 | -------------------------------------------------------------------------------- /release-notes/images/1_14/md-no-breaks.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4249ee25e32cabe8e70bd50bdc46909d22b363c620d51f4707ccd1e60c9005d8 3 | size 5247 4 | -------------------------------------------------------------------------------- /release-notes/images/1_14/update.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:32071ef948c46be3e6b0dfe2e43953e6fe959b4be64c164b375a6021e71ce676 3 | size 2360 4 | -------------------------------------------------------------------------------- /release-notes/images/1_15/mr_debug.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9275d2c99b608e6e833e5a296eb4d67e88378ad340475c1799c027f04f18a153 3 | size 16134 4 | -------------------------------------------------------------------------------- /release-notes/images/1_15/root_icon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:969cb792357d1c833b92e86d520620ef007ff1a3c1bed1eca4dabcdc9be36e8b 3 | size 3227 4 | -------------------------------------------------------------------------------- /release-notes/images/1_15/workspace.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:21fbdf37f47d9add23383856d4bcf38a6c9a2ce6daba5024d13f79b6dc004b73 3 | size 353950 4 | -------------------------------------------------------------------------------- /release-notes/images/1_15/workspace.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:78c3b6cac2e8639c2927f25b15b698262e899cfd2997aa6250dba36257982f62 3 | size 12442 4 | -------------------------------------------------------------------------------- /release-notes/images/1_16/auto-close1.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b855c4886180a1c525d651bf96df655abc1e3861755083d38d0bdec35698646 3 | size 65482 4 | -------------------------------------------------------------------------------- /release-notes/images/1_16/auto-close2.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f7ae647bc68420fb6390b118ff55d57e77ac6b5308bd928cd1179695353ad91 3 | size 46532 4 | -------------------------------------------------------------------------------- /release-notes/images/1_16/search-dnd.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:54e7351e3ea9446075a82685f89f845b6ca98f493c5eeb164cbdfadb4d7aec67 3 | size 690956 4 | -------------------------------------------------------------------------------- /release-notes/images/1_17/git-stash.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b70898f64151ff513fb694e3566faa8c8cd06f6fad2c1daad2e8508636eb821e 3 | size 4291 4 | -------------------------------------------------------------------------------- /release-notes/images/1_17/labelformat.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:70e0d093612f603afd3b26ed822fb0d886eec72cf24b9986a9a624f431a3b3eb 3 | size 10491 4 | -------------------------------------------------------------------------------- /release-notes/images/1_17/nativetabs.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8f2dcb7ee011a4670e9095d5889619c690d097ae6bbbff295f5ecf8a94da668 3 | size 16966 4 | -------------------------------------------------------------------------------- /release-notes/images/1_17/picker.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b32a50f497306a36af034821d2db97a0af28bb7685857ddfcdf0769f3fca597 3 | size 8730 4 | -------------------------------------------------------------------------------- /release-notes/images/1_17/remote_fs.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7c822647901654d0a9576f56c76898a996c9ebea65990f9dd6a0ecfa83d6a845 3 | size 31135 4 | -------------------------------------------------------------------------------- /release-notes/images/1_17/scm.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a523588c0def25325ec38a0a99c2d2ab41cb507e9bac3982ffd605456a487f4 3 | size 41285 4 | -------------------------------------------------------------------------------- /release-notes/images/1_17/touchbar.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5122fbf3d4490552fa5b2bfe83ae26a6065d415d2c456c6603d0b035e1c8300c 3 | size 205581 4 | -------------------------------------------------------------------------------- /release-notes/images/1_17/wait.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f898840b1a88022dd119884b4b299c960aa6ce508322025adbb5f45e7c40517d 3 | size 189502 4 | -------------------------------------------------------------------------------- /release-notes/images/1_18/blueicon.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:772c529970f273c0c88abfff8f2e5185d6284f1dacbbdc00f4a52c1705108141 3 | size 5140 4 | -------------------------------------------------------------------------------- /release-notes/images/1_18/debug-status.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24c18ce5b63e308fb992c477c95990a7b84fd5f292b56d4cb8a8c2cd317de12e 3 | size 7208 4 | -------------------------------------------------------------------------------- /release-notes/images/1_18/diff.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:62fbb1e4de04c5150dc9367b691f1a4270195eef7ce3e73816992a8d6a5429e1 3 | size 3245914 4 | -------------------------------------------------------------------------------- /release-notes/images/1_18/difftitle.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:40c01f1d284c679a2bd85654df207cc3f3aae32a491f65fca500549da4559e23 3 | size 22966 4 | -------------------------------------------------------------------------------- /release-notes/images/1_18/merge.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f6ddaf395ebb2e3c6b6b9063895409b6bb4d7f12686c35c09ae4ee43d87d5db 3 | size 42954 4 | -------------------------------------------------------------------------------- /release-notes/images/1_18/multiroot.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0b435011357da094e5e77d9ffe3e05d8158942fc222b46fd3af61a14c49135a 3 | size 2193164 4 | -------------------------------------------------------------------------------- /release-notes/images/1_18/repl-color.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d97558e9c95f947526a93c996c73e3893aa2bd2e790507a7593d66fddfed3c20 3 | size 2101 4 | -------------------------------------------------------------------------------- /release-notes/images/1_19/image-diff.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:190ec7b684a6610a3c6b5f102e395371d8cdeff9dbf2eb4d1c6bc91394986a42 3 | size 45033 4 | -------------------------------------------------------------------------------- /release-notes/images/1_19/jsx-fragment.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4baef02fb6e730c22d0b7e9f42f1c6868fcd51c3c8e4ce0d51c364125527effc 3 | size 7231 4 | -------------------------------------------------------------------------------- /release-notes/images/1_19/log-picker.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb60239c6ba4f247afbe023c92c8a9e34f5655f39b66cf439a76a36ea6d8fd14 3 | size 5091 4 | -------------------------------------------------------------------------------- /release-notes/images/1_19/shrink.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4243335b5b3988164261e44ed6ab08e0c6e5bb445b787d39b763a95f9a1cbfbc 3 | size 286919 4 | -------------------------------------------------------------------------------- /release-notes/images/1_19/status.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9fc64855d235408aef37600ab36cb6a3a06d6d185c3ead00018fbced6857bfe7 3 | size 71819 4 | -------------------------------------------------------------------------------- /release-notes/images/1_19/stdin.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc04db530bc7510aa310aed53ab8c52ca0b271a0486570a7b9149f3557d0bf87 3 | size 328321 4 | -------------------------------------------------------------------------------- /release-notes/images/1_20/add-config.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ff40ad9538a601a96aefed762911f713e5dffb73ffabf9ee199fde2f18900e9 3 | size 14628 4 | -------------------------------------------------------------------------------- /release-notes/images/1_20/dropdown.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7204b67f53d318362aab1476cbf2a83492bd2de0a5cc8e4361d08b243aedc4b 3 | size 7613 4 | -------------------------------------------------------------------------------- /release-notes/images/1_20/filerec.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0817850b0eef43aeb0fb6692036121a31c83628db204ab3ebea5a6ed42ec9905 3 | size 1186079 4 | -------------------------------------------------------------------------------- /release-notes/images/1_20/save_admin.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:533cea92bbe8615f2e62f5a8ef34254827fc07d07a0a32c3b2a9bc9bdf5f4bf4 3 | size 145525 4 | -------------------------------------------------------------------------------- /release-notes/images/1_20/submodules.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0c06ac7019b69515b44df8e514f92c762695fea7124b7c49f8970f85e97d46d8 3 | size 54882 4 | -------------------------------------------------------------------------------- /release-notes/images/1_20/tab_hover.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3af01fb83c6bc10f94d60103ce4be44ce26116b067c9579f55c2d4e27cc41215 3 | size 666903 4 | -------------------------------------------------------------------------------- /release-notes/images/1_21/breakpoints.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a5188f776fa71a3bd44bf7336b11aa73c499e6f68b41d25e0c405755534513c2 3 | size 6213 4 | -------------------------------------------------------------------------------- /release-notes/images/1_21/md-locked.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:69a0b7692b8b4145416ef430abd7a31d5c2dcd29e6e7d2e320d0663fb7d1d483 3 | size 2831 4 | -------------------------------------------------------------------------------- /release-notes/images/1_21/search.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b3b10c77e6924900d1896d9a9dc05f7b26cd31970b06234791f32d52ec355fa 3 | size 48707 4 | -------------------------------------------------------------------------------- /release-notes/images/1_21/symlink.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d897f30060892b3f225098b0b62e841c9e27df888b05ba4f101b62b557f07ec 3 | size 5041 4 | -------------------------------------------------------------------------------- /release-notes/images/1_22/save_part.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d78c14e739c5383ceb8c6e3e2d60f4704c85d53ee270ca1cdc2e7beb6516135f 3 | size 671930 4 | -------------------------------------------------------------------------------- /release-notes/images/1_22/sev-hint.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d69055550ccd2ba2499800688d5aff09903a7b4e6cbb9bf8ee3e38cbe876ede4 3 | size 11868 4 | -------------------------------------------------------------------------------- /release-notes/images/1_22/wrap.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:430f8f8e194be2526f90d9a3aa2195988b81ef8ba99d992fe99c6095477c7bed 3 | size 150328 4 | -------------------------------------------------------------------------------- /release-notes/images/1_23/azure-view.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b5b0e0b25828ad376f9fc8f7da603775c24e0107ecaeb715beca3a0f27330a2 3 | size 6064 4 | -------------------------------------------------------------------------------- /release-notes/images/1_23/binary.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ebe82ef48768d61d60328f486d30b01f12767fa2feb982d49c455f97f6c61da7 3 | size 7129 4 | -------------------------------------------------------------------------------- /release-notes/images/1_23/css-mdn.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ddf44982f7a80a43f94534be382f2fde9b36cbbb17929d6fa4e49c41f7999b06 3 | size 1114196 4 | -------------------------------------------------------------------------------- /release-notes/images/1_23/fsp.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e60e358948c666b812aaec6e351d6ad376627e5a08bfc47d61cfdb1d9c79f73f 3 | size 22791 4 | -------------------------------------------------------------------------------- /release-notes/images/1_23/logpoints.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a8b86e50d5a35ad684ca43fd22f724ee2555c654efacbb65fbb6f6f0d5aa799 3 | size 149214 4 | -------------------------------------------------------------------------------- /release-notes/images/1_23/open-view.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0dcf6e0f65333dfb1cbbc977c561793a6f8d085394c1c07a480ebe722ace1d0 3 | size 6267 4 | -------------------------------------------------------------------------------- /release-notes/images/1_23/webview.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3d88e2f665290e47103125239231bc10af9608accba7a55cf1de9bd271b6d48 3 | size 52090 4 | -------------------------------------------------------------------------------- /release-notes/images/1_24/callstack.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:aeebf1d7f7cd5223f7a041440622ac6dd8a469b899ad9d4a883266e7a622afd8 3 | size 11140 4 | -------------------------------------------------------------------------------- /release-notes/images/1_24/continue.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ac25535d8019b60e1c25419b9d81bca135ec268578725104136ab5eb5eace47a 3 | size 5737 4 | -------------------------------------------------------------------------------- /release-notes/images/1_24/font-zoom.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8547adb46405928a1126e878f2e98d247f56208e881dec27e767b419e79ef6b5 3 | size 30738 4 | -------------------------------------------------------------------------------- /release-notes/images/1_24/grid.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:091bbbe9f15c376e61e38eb0a628128b9f6e5b431331b65b6c4a6b2f9d1d1534 3 | size 4556658 4 | -------------------------------------------------------------------------------- /release-notes/images/1_24/outline-all.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38ec21d3d441245a636b5cad85720d32deb8f78204ab23f115af8641f3e7dc72 3 | size 41324 4 | -------------------------------------------------------------------------------- /release-notes/images/1_24/scss-at.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:afe52cba4f2d16de3731a762ef317fd79bb1ddd464d1e5a3eda2e2232ada2014 3 | size 375517 4 | -------------------------------------------------------------------------------- /release-notes/images/1_24/ts-grey-pre.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df365ab98b19a674d48523645c518ceb838c986f63f6a72a35d0346ae8509d44 3 | size 28676 4 | -------------------------------------------------------------------------------- /release-notes/images/1_24/variables.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e751c00a7143daf088f05981aa0e001dc35a4cde29796049359b3c010a52d262 3 | size 7511 4 | -------------------------------------------------------------------------------- /release-notes/images/1_24/vsts.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3cc24af9f33c4595035dcd9dce49a100ea9910ab46d52dfa1beb936b8213e9e7 3 | size 34914 4 | -------------------------------------------------------------------------------- /release-notes/images/1_25/dismiss.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:40df7971469a684a844d22ff2b4fe479ace759d4b799f7be3455a09d1e0573e8 3 | size 90671 4 | -------------------------------------------------------------------------------- /release-notes/images/1_25/drop.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9156f0684f4e638c95f85376f622968b7b8501e6b0650b447ddc539eb9183b53 3 | size 549195 4 | -------------------------------------------------------------------------------- /release-notes/images/1_25/grid-alt.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c18e0cb2d034c8e58a2e43f08a938e8af85af5b4923eebc01c0b84140a1f0961 3 | size 11683 4 | -------------------------------------------------------------------------------- /release-notes/images/1_25/grid-dnd.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef775fdc18f1bf362b6502b8bb94cac3680737d1a1904df9fcd59d3968e053de 3 | size 156613 4 | -------------------------------------------------------------------------------- /release-notes/images/1_25/grid-empty.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6b35b788b49666d41d7f2a2c60cb2f250d62759640d63f7ff27b264ac5e4d167 3 | size 24178 4 | -------------------------------------------------------------------------------- /release-notes/images/1_25/md-outline.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:951c12c3188e37256a4db85ffe23b06722966bda26ce0a0bab0be1750bd6bfa2 3 | size 33735 4 | -------------------------------------------------------------------------------- /release-notes/images/1_25/outline.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b9643697057abb93e2a031ec2fc092c96f7dcbd6442b7d869623601484b6d6b 3 | size 28585 4 | -------------------------------------------------------------------------------- /release-notes/images/1_26/appearance.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef895ab26e954ead00f728313d49819ce0ef71adf713ebd0781cb7456322f53a 3 | size 14892 4 | -------------------------------------------------------------------------------- /release-notes/images/1_26/autosave.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84ece0296f0a93d6c50ddf78254073b64a1bd5a02b905639ca8d9f7d8cdb9f87 3 | size 30537 4 | -------------------------------------------------------------------------------- /release-notes/images/1_26/exclude.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:41d4e3932a278874485aac0f4c05483f0da73459aee22386c413c352574add42 3 | size 18616 4 | -------------------------------------------------------------------------------- /release-notes/images/1_26/theme_menus.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63f576aedf00241ac61cff4f0f0317f8fa7edb6a16996f0b663771d0a3481c3b 3 | size 14438 4 | -------------------------------------------------------------------------------- /release-notes/images/1_27/dropdown.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f12f72417c17bb3e537cb4ae5c98d0e650892abf439352872a5f11615df7039c 3 | size 18774 4 | -------------------------------------------------------------------------------- /release-notes/images/1_28/deleted.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9355dfaf059dbe4e6609cf2fa717245ee5b3522a0b3a36bb3f754ac1b5171ad 3 | size 320475 4 | -------------------------------------------------------------------------------- /release-notes/images/1_28/file-icons.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dd579c12831b7c900dce40e2f816b56231bd5b2d907214ea33801538e9609d0f 3 | size 18744 4 | -------------------------------------------------------------------------------- /release-notes/images/1_28/staged.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a0fa1c9de48141433a271f2115cf0a9d1ee24333f096373c6f03dc800872753b 3 | size 20332 4 | -------------------------------------------------------------------------------- /release-notes/images/1_29/error-code.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a8553f6d7898043a6ef6ebbdf4402cd99c3ff84430b77ae7951aecc33bb196a 3 | size 14473 4 | -------------------------------------------------------------------------------- /release-notes/images/1_29/linenumbers.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86c40d4f0c45b88bfb4cdef54542a375e33ccc03fdba4aaffd65d4e89e51d407 3 | size 23587 4 | -------------------------------------------------------------------------------- /release-notes/images/1_29/move-panel.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d5a88ea1718a2d22b936695db80f5f7537eb7920301610d2f5d8b3ce468cc790 3 | size 11997 4 | -------------------------------------------------------------------------------- /release-notes/images/1_29/multi-repl.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7c4cf288a061b99917529669724b8b49a30e8f5f1a491edb879a6650cec61d1e 3 | size 12687 4 | -------------------------------------------------------------------------------- /release-notes/images/1_29/multiline.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca9bc7782e70bfa379c8c46ea7d349064158e5ddaeabcee6b1b09af634466bce 3 | size 1092050 4 | -------------------------------------------------------------------------------- /release-notes/images/1_29/pcre2.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3c015c628a0ba5d5207f4fa81c1dfed385f77baf69776e190e6f725922ba002 3 | size 22736 4 | -------------------------------------------------------------------------------- /release-notes/images/1_29/pipelines.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34bed090e16a453f07509c70e000767c133cc887c4f7c67fb9dbb8dd40335b4b 3 | size 29960 4 | -------------------------------------------------------------------------------- /release-notes/images/1_30/ts-rename.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3389b6009ffb0ce235c6e52aad8c3c11affe0175c7c69ee32092282c576390a6 3 | size 2368817 4 | -------------------------------------------------------------------------------- /release-notes/images/1_31/api-toc.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f95d2e468216e092123f01daed4ee7df58eb2712bf305a9bc1176259e3f100a6 3 | size 47857 4 | -------------------------------------------------------------------------------- /release-notes/images/1_31/cut.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b72b10445fc584c3cbdfbc4840d258bdcf589fbad0aa743eb3cef2ca97b925c6 3 | size 36288 4 | -------------------------------------------------------------------------------- /release-notes/images/1_31/go-menu.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0df252c21dcf0d523cd8981de0e367ce18e88572952eba72fd038bd33cc6e78 3 | size 8442 4 | -------------------------------------------------------------------------------- /release-notes/images/1_31/panel-only.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e151a3137476c18d74e41523b77437f99ae0f6bdd35ece38d661e23e0071296 3 | size 12183 4 | -------------------------------------------------------------------------------- /release-notes/images/1_31/ref-history.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79def0c52e4eb91d9b721d59b8234bcf2fc6b3ea0b6137416383b4aa25aad210 3 | size 79919 4 | -------------------------------------------------------------------------------- /release-notes/images/1_31/select-all.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f6eff3938ff8c1c15827d4b64cdb6dca3e62996ea0f1c0b3b6b7af785a89be43 3 | size 202144 4 | -------------------------------------------------------------------------------- /release-notes/images/1_32/hover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:105b36a5b614044f54a4f8f81986f7b80f39cffcd52dd5285f8194557e443003 3 | size 40174 4 | -------------------------------------------------------------------------------- /release-notes/images/1_32/webpack-logo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74296664666a2aead46810d9b2aca5361599e797f3d46c9028cd6125ba9907fa 3 | size 5949 4 | -------------------------------------------------------------------------------- /release-notes/images/1_33/snap-store.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:72c1646c0a238aa4257ec4f6ee18a370cfebbe98d96e4721c8dfa6a5e6271708 3 | size 2486 4 | -------------------------------------------------------------------------------- /release-notes/images/1_35/breadcrumbs.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4463529edda63752e833d071adfa9960efa027044ff603940c162809371db48b 3 | size 28753 4 | -------------------------------------------------------------------------------- /release-notes/images/1_35/logo-stable.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:caca615979990c67c0f227b60c8100bbcbdb771bd341bd5a88a0c8fd74884f20 3 | size 6467 4 | -------------------------------------------------------------------------------- /release-notes/images/1_36/dnd-copy.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:249ef9f8c8726619e1bb25243959426483bf05461355dec6a0461db4da0c0f8b 3 | size 29199 4 | -------------------------------------------------------------------------------- /release-notes/images/1_37/icons.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:465fc647b6feaf14a46e13e7c88aafb7524d974c946b0654036fd53439ba7039 3 | size 522351 4 | -------------------------------------------------------------------------------- /release-notes/images/1_37/info-colors.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e2fc62c88b8ea017e130a9b9659796f4412bb944cbcefb463a86bfeab7778ead 3 | size 90915 4 | -------------------------------------------------------------------------------- /release-notes/images/1_38/branch-name.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a84bb7d94561f5899cc1d908813b0d2bcfa701b45babf5a536fdf2834118666c 3 | size 10376 4 | -------------------------------------------------------------------------------- /release-notes/images/1_39/callstack.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0f2ffb902f6af9379f8e65771d42d4c3492981b851fd5b43ff3f42044b638374 3 | size 222613 4 | -------------------------------------------------------------------------------- /release-notes/images/1_39/scm.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13cb02415d1c1ae4095d4bc620d1ac66f290a80e672bf56147987e40ed8bf4a8 3 | size 583777 4 | -------------------------------------------------------------------------------- /release-notes/images/1_40/clone.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:40d871934a5c51b2774e9725b427b22b76e84ada2625eec36da56aa4f75b51ea 3 | size 42040 4 | -------------------------------------------------------------------------------- /release-notes/images/1_40/conflict.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:58ad712bf1be85b57b29e3661303c73280d9fc994961fa588f62efff671c0239 3 | size 5260 4 | -------------------------------------------------------------------------------- /release-notes/images/1_40/icon-editor.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86049847026e68371522cf335e3e805ab61edc50997c8788e4f88133d1832ece 3 | size 33048 4 | -------------------------------------------------------------------------------- /release-notes/images/1_40/task-detail.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:935c4288deecc4acbc21f1cca52c14ad73e7814bcbe253ccfc14a938c8520f22 3 | size 11977 4 | -------------------------------------------------------------------------------- /release-notes/images/1_40/untracked.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a1b45423b58c9e5c35fdd74bb409bd3eb85b7a1d622d4d922de44f57683be7b 3 | size 122410 4 | -------------------------------------------------------------------------------- /release-notes/images/1_40/yarn-web.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f694da5bf439e339596d746a72e717e2f343645339c0a79af06c910da0b5c158 3 | size 52951 4 | -------------------------------------------------------------------------------- /release-notes/images/1_41/debug.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:13a0d9d5acc6c441329943c357e33a0bdaf535064e6ab3a7340d31fce881f0f3 3 | size 563339 4 | -------------------------------------------------------------------------------- /release-notes/images/1_41/find-impl.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53feec14a89c67035b705806217ed35df233fb157c55035175f9b1ef081891e0 3 | size 5305181 4 | -------------------------------------------------------------------------------- /release-notes/images/1_41/goto-alt.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:889a9e669a87728ae941d46adb53527c34aab534752da6a787d05135024f0d19 3 | size 294083 4 | -------------------------------------------------------------------------------- /release-notes/images/1_41/lcd.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3084d9e702681a08d9cba7d0df0710d09f65e61c2c36c69faddab427cd3c4579 3 | size 20335 4 | -------------------------------------------------------------------------------- /release-notes/images/1_41/peek-impl.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:968a900406a6e1df12811d38f3f3309f22e1f30a16e10f28181cff589e67b004 3 | size 6049202 4 | -------------------------------------------------------------------------------- /release-notes/images/1_41/save-diff.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee4ed304f887e356ca4f7864d8e5d5e9d09b13be503efc4157c10ba6083a53b2 3 | size 3042766 4 | -------------------------------------------------------------------------------- /release-notes/images/1_41/save-peek.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2386a2905e9713fa0734c3fa18bdbe854479fe6f0fd4afde4afa15c0e0002dcb 3 | size 1107429 4 | -------------------------------------------------------------------------------- /release-notes/images/1_41/webgl1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eaf7b74aebc05ab73a46078bd7be77b232be15c5ee1cf2521e447c8e6fa149b3 3 | size 11158 4 | -------------------------------------------------------------------------------- /release-notes/images/1_41/webgl2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f7405c8d3475aa9839a6fb86fee84593e73475749288ab56a1e081c4873837a 3 | size 8719 4 | -------------------------------------------------------------------------------- /release-notes/images/1_41/yarn-web.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b0a5def9ee05cc5a871b053323df1b30131a453946f8a853f0e2ae016c3eb4f5 3 | size 2493236 4 | -------------------------------------------------------------------------------- /release-notes/images/1_42/debug-start.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84aef15a4733157d6c9c3596ec969bde5578cc5133615c786467b9fe7480ee06 3 | size 7654 4 | -------------------------------------------------------------------------------- /release-notes/images/1_42/editor-mru.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:425707263d1a3a3c87433f1b167d8dfe633e21052ad054bddcbfdd9f435e4332 3 | size 8405 4 | -------------------------------------------------------------------------------- /release-notes/images/1_42/timeline.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bbf18a71392518c8a2c9bfdedf6cc2897f592e13bfe6d8a38e189edc4da6f83a 3 | size 18193 4 | -------------------------------------------------------------------------------- /release-notes/images/1_42/web-dnd.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:375cbdac148d013991f8c38e301adaa01a8786213dffb4d9dcc66895b772da3f 3 | size 783679 4 | -------------------------------------------------------------------------------- /release-notes/images/1_43/altclick.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:466e342d13c18171b2df6ee11364ca04115706a55578b64ce0ca8cfb6d8e56b2 3 | size 645329 4 | -------------------------------------------------------------------------------- /release-notes/images/1_43/explorer.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:59e2b44db71b56e7d807d061b3c8a664417d7e43b76db90e8e1695438060e75e 3 | size 18214 4 | -------------------------------------------------------------------------------- /release-notes/images/1_43/run.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3365af1713b6bf294c3f21478ce54d209b9d9d092e1f7a434ba334ceccc32edb 3 | size 7682 4 | -------------------------------------------------------------------------------- /release-notes/images/1_43/scm.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d7ef16a3ed446d38ae92829797986bbe4c75c25bd7da9efa304a2d5c9b7caa3 3 | size 18704 4 | -------------------------------------------------------------------------------- /release-notes/images/1_43/timeline.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:14329f277c3b0fe18362dfd12e4efdbc961ec3b52c87c9cc6d2a87c121ce9f42 3 | size 14714 4 | -------------------------------------------------------------------------------- /release-notes/images/1_43/unicode11.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8dbbcb19cd7a289b13df006fff88622bb691f6c13851b880de3e00fc94e2cfd6 3 | size 2590 4 | -------------------------------------------------------------------------------- /release-notes/images/1_44/callstack.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a48c257e577be429e00a28ff39315b09ffa70c05be8c2df6b07c1bb2e8acbc74 3 | size 23175 4 | -------------------------------------------------------------------------------- /release-notes/images/1_44/dnd.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7fd8b8fd6006ef0d36316cdd37db359cca4ef97033e380569b75bc4865b150a5 3 | size 2599465 4 | -------------------------------------------------------------------------------- /release-notes/images/1_44/new-codicons.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c1a1d5f971a2982574b9c4debac97cfe294ffda5fb5f33fdb85d39a08ca3fc9 3 | size 2348 4 | -------------------------------------------------------------------------------- /release-notes/images/1_44/quickopen.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ecab06de658d02b90b310403e26427964cd0d0b9c6aaf8d3a0ff688e76323ceb 3 | size 14707 4 | -------------------------------------------------------------------------------- /release-notes/images/1_44/task-pick.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf7b91fa5bba441826f7725112e39ca5436f6ef16836cf7d9fd7bf3a1d461db3 3 | size 362537 4 | -------------------------------------------------------------------------------- /release-notes/images/1_44/timeline.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ca15ffc3b7ade0d2580d29de9dbfe71ecef49dd5e274abcecdb5352a926edbcc 3 | size 1526662 4 | -------------------------------------------------------------------------------- /release-notes/images/1_44/turn-on-sync.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e5aff882f48284c724a68b537f493c6db2e8b3064d0a096d4c9de23edae5e77f 3 | size 6148 4 | -------------------------------------------------------------------------------- /release-notes/images/1_45/clone.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37a6caae0822e35a1e6bdad32db36c7c900a1d0c4246f8c806c9a93853cb88a0 3 | size 825343 4 | -------------------------------------------------------------------------------- /release-notes/images/1_45/dynamic.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9dbe71d38b532160a6644a20da1123db74f8f74c1eeba09ed8975d9dad9313de 3 | size 298397 4 | -------------------------------------------------------------------------------- /release-notes/images/1_45/quickdiff.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7a01a7356112273fb4ceb96afdda9de80c66954bee1020e3aa278d41eb88dbf5 3 | size 212662 4 | -------------------------------------------------------------------------------- /release-notes/images/1_45/ts-prompt.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7ee74bf0f52d14fe5d7e24db981a6c814e6c713a3a73cb71dfe485a533e4ad7 3 | size 31722 4 | -------------------------------------------------------------------------------- /release-notes/images/1_46/breakpoint.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:70866b374db67b5950c6877afeb7a5f1ec6f765fc3eda150bb52abad99e4b953 3 | size 15242 4 | -------------------------------------------------------------------------------- /release-notes/images/1_46/new-codicons.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f51cd3ea0f66a9e0afefd557dd12b51c2e420a82413bded50157d29097ce11f3 3 | size 7478 4 | -------------------------------------------------------------------------------- /release-notes/images/1_46/pin-tabs.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d474a5f549d0f90589cfb20372197d29d2b510f80b23533d49de28a3cb6500c8 3 | size 2481636 4 | -------------------------------------------------------------------------------- /release-notes/images/1_46/step-into.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:51118fd06ae8d9aab19ffd110b80fd20844c328537058a257e0e1d14ddd5dfff 3 | size 20259 4 | -------------------------------------------------------------------------------- /release-notes/images/1_47/scm.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6dc0cce2cc484ebf584541d507353c2ee761d817a9c50d7cf56e530143f619bb 3 | size 27564 4 | -------------------------------------------------------------------------------- /release-notes/images/1_5/Minimal.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90d85d6c45cac51781273cb29ec8961c381c82b87b3de70361a1d72f28e367c8 3 | size 5821 4 | -------------------------------------------------------------------------------- /release-notes/images/1_5/None.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:791e5ed3a3bf4983e8b78821020babd018a94f59320a30db4894ea0973e7aef4 3 | size 5649 4 | -------------------------------------------------------------------------------- /release-notes/images/1_5/Seti.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:071e125024911aa61c6d6bbfdb9b8d4d4d7925c06c3545489443c3609b62d06b 3 | size 6371 4 | -------------------------------------------------------------------------------- /release-notes/images/1_5/social.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c07a124b956db2be505c999619ce346c6e61cb4c3b2e89fcd9f019bf76d63fc2 3 | size 77400 4 | -------------------------------------------------------------------------------- /release-notes/images/1_50/scm.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d225453a550de9b069711b95eea35fc0f09d1d0f241d6be85e7d54c6585a74dc 3 | size 420242 4 | -------------------------------------------------------------------------------- /release-notes/images/1_52/sash.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9cce98125a26c0270cde226729052129cfee8d8079179aa950f605c50b9f15c 3 | size 96453 4 | -------------------------------------------------------------------------------- /release-notes/images/1_53/CI.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3bdbb307dcd4943d7992e9fc4ca9501644a96d5fec9d1b4d8c6ff0c6ded59fc 3 | size 6408 4 | -------------------------------------------------------------------------------- /release-notes/images/1_54/table.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3483c62c1bd99eb42762354457a33a7cfb5a4ffe78099bdb1bd2a79a177dadc2 3 | size 24921 4 | -------------------------------------------------------------------------------- /release-notes/images/1_55/copyas.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37349c69ab6ce4a843004b1c1dc14a0911197546768aac1e9df39c289972936b 3 | size 13968 4 | -------------------------------------------------------------------------------- /release-notes/images/1_56/tabs.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1546729708f14a2a1a1e3980ba4f8a16fc6714a74a1d7de2424f2b9b836184a 3 | size 6929 4 | -------------------------------------------------------------------------------- /release-notes/images/1_58/repl.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3d2f18d6edb91196c63064dbcf260874f2f6b582ce77a6c1312be77a9ad53ced 3 | size 3926 4 | -------------------------------------------------------------------------------- /release-notes/images/1_6/builtin.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee5c71c02c8162508b5968caa30c0a29a5329182c58db7e0bc84fad046627006 3 | size 25931 4 | -------------------------------------------------------------------------------- /release-notes/images/1_6/dirty.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a12185702c4ada4823ed2afa6a1012a78b635f29fff2bcfe0ce7f02502fff970 3 | size 26570 4 | -------------------------------------------------------------------------------- /release-notes/images/1_6/hover.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7984896ddbed04a92fb225d5abb815531824acbab3818743d7bc1507d596bd6e 3 | size 7600 4 | -------------------------------------------------------------------------------- /release-notes/images/1_6/icons.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ed1de1d170d35199f90625937796d8f9823ebee5ca32e85c6f188c1fb1a5f25 3 | size 29423 4 | -------------------------------------------------------------------------------- /release-notes/images/1_6/status.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5dcd2fa90e4cc9929b440b9f72dd368832bdb3cd92702b0230df55fffad461c2 3 | size 4023 4 | -------------------------------------------------------------------------------- /release-notes/images/1_64/pwa.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:325ec272b8d6203f77f54fe58c75f962048933b5e7e34194bc308a9c01336e4f 3 | size 110212 4 | -------------------------------------------------------------------------------- /release-notes/images/1_66/scm.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6893668757085e1022c20563b5a1a501fd05ad9da147f0ba1ecb0cd2dbbc1589 3 | size 1930306 4 | -------------------------------------------------------------------------------- /release-notes/images/1_69/eslint.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4a0075119f3db77e251319c7ff101c2224f022014c0e8e8f8bfd4ba1058338e9 3 | size 36725 4 | -------------------------------------------------------------------------------- /release-notes/images/1_7/keymaps.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ac5e2b268fcd12c3792b177358d34ddd6a604f955c2e00fff08130a34e99102 3 | size 15817 4 | -------------------------------------------------------------------------------- /release-notes/images/1_75/grid.mp4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11f685b561e69ea64cb8a7d8274008ba1be960c6eb833d5ffb3db5ce0e9682e3 3 | size 1857585 4 | -------------------------------------------------------------------------------- /release-notes/images/1_75/sash.mp4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1719124861d669b36073d09f3a7e8237b99cc32a000257a7b713e09b36d9412c 3 | size 903464 4 | -------------------------------------------------------------------------------- /release-notes/images/1_8/overflow.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:661aa3efa2efc5c6e8cbf8821a2dbfd403afd9b8ca6b9c16860dd9eb4f188340 3 | size 5646 4 | -------------------------------------------------------------------------------- /release-notes/images/1_9/closeall.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4ab5c940bc3aca459988f5581ccc5d40fd021739bb583e32d34701b5cee51cb 3 | size 5110 4 | -------------------------------------------------------------------------------- /release-notes/images/1_9/panel.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:32f8846fa4c06590e80c6f3688a9bb08c73f6d0b94cb44f93455a0636e753508 3 | size 7932 4 | -------------------------------------------------------------------------------- /release-notes/images/1_9/tabclose.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:80c6abce8450844458041988912a9e53534ad5dbdc7fe6031199b3645d20318e 3 | size 2094 4 | -------------------------------------------------------------------------------- /release-notes/images/1_9/tasks.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9a666f67d14b1679d80b67888956a3c783ea7dfaf3b5e75c1e32289f5e7e43c 3 | size 256551 4 | -------------------------------------------------------------------------------- /release-notes/images/March/tasks.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57c0b93df3210bf909b7e55c19f7861f6aaca95a88f1f478678edc88b3e65442 3 | size 12459 4 | -------------------------------------------------------------------------------- /wiki/images/README.md: -------------------------------------------------------------------------------- 1 | Images for the wiki go here. They are not part of the actual documentation. 2 | --------------------------------------------------------------------------------