btcp-browser-agent 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (136) hide show
  1. package/package.json +8 -9
  2. package/packages/core/dist/actions.d.ts +97 -0
  3. package/packages/core/dist/actions.js +940 -0
  4. package/packages/core/dist/errors.d.ts +138 -0
  5. package/packages/core/dist/errors.js +157 -0
  6. package/packages/core/dist/index.d.ts +120 -0
  7. package/packages/core/dist/index.js +134 -0
  8. package/packages/core/dist/ref-map.d.ts +16 -0
  9. package/packages/core/dist/ref-map.js +91 -0
  10. package/packages/core/dist/snapshot.d.ts +37 -0
  11. package/packages/core/dist/snapshot.js +751 -0
  12. package/packages/core/dist/types.d.ts +396 -0
  13. package/packages/core/dist/types.js +7 -0
  14. package/packages/extension/dist/background.d.ts +227 -0
  15. package/packages/extension/dist/background.js +737 -0
  16. package/packages/extension/dist/content.d.ts +18 -0
  17. package/packages/extension/dist/content.js +149 -0
  18. package/packages/extension/dist/index.d.ts +228 -0
  19. package/packages/extension/dist/index.js +350 -0
  20. package/packages/extension/dist/session-manager.d.ts +87 -0
  21. package/packages/extension/dist/session-manager.js +322 -0
  22. package/packages/extension/{src/session-types.ts → dist/session-types.d.ts} +113 -144
  23. package/packages/extension/dist/session-types.js +5 -0
  24. package/packages/extension/dist/types.d.ts +88 -0
  25. package/packages/extension/dist/types.js +7 -0
  26. package/CLAUDE.md +0 -230
  27. package/SKILL.md +0 -143
  28. package/SNAPSHOT_IMPROVEMENTS.md +0 -302
  29. package/USAGE.md +0 -146
  30. package/dist/index.d.ts.map +0 -1
  31. package/dist/index.js.map +0 -1
  32. package/docs/browser-cli-design.md +0 -500
  33. package/examples/chrome-extension/CHANGELOG.md +0 -210
  34. package/examples/chrome-extension/DEBUG.md +0 -231
  35. package/examples/chrome-extension/ERROR_FIXED.md +0 -147
  36. package/examples/chrome-extension/QUICK_TEST.md +0 -189
  37. package/examples/chrome-extension/README.md +0 -149
  38. package/examples/chrome-extension/SESSION_ONLY_MODE.md +0 -305
  39. package/examples/chrome-extension/TEST_WITH_YOUR_TABS.md +0 -97
  40. package/examples/chrome-extension/build.js +0 -43
  41. package/examples/chrome-extension/manifest.json +0 -37
  42. package/examples/chrome-extension/package-lock.json +0 -1063
  43. package/examples/chrome-extension/package.json +0 -21
  44. package/examples/chrome-extension/popup.html +0 -195
  45. package/examples/chrome-extension/src/background.ts +0 -12
  46. package/examples/chrome-extension/src/content.ts +0 -7
  47. package/examples/chrome-extension/src/popup.ts +0 -303
  48. package/examples/chrome-extension/src/scenario-google-github.ts +0 -389
  49. package/examples/chrome-extension/test-page.html +0 -127
  50. package/examples/chrome-extension/tests/README.md +0 -206
  51. package/examples/chrome-extension/tests/scenario-google-to-github-star.ts +0 -380
  52. package/examples/chrome-extension/tsconfig.json +0 -14
  53. package/examples/snapshots/README.md +0 -207
  54. package/examples/snapshots/amazon-com-detail.html +0 -9528
  55. package/examples/snapshots/amazon-com-detail.snapshot.txt +0 -997
  56. package/examples/snapshots/convert-snapshots.ts +0 -97
  57. package/examples/snapshots/edition-cnn-com.html +0 -13292
  58. package/examples/snapshots/edition-cnn-com.snapshot.txt +0 -562
  59. package/examples/snapshots/github-com-microsoft-vscode.html +0 -2916
  60. package/examples/snapshots/github-com-microsoft-vscode.snapshot.txt +0 -455
  61. package/examples/snapshots/google-search.html +0 -20012
  62. package/examples/snapshots/google-search.snapshot.txt +0 -195
  63. package/examples/snapshots/metadata.json +0 -86
  64. package/examples/snapshots/npr-org-templates.html +0 -2031
  65. package/examples/snapshots/npr-org-templates.snapshot.txt +0 -224
  66. package/examples/snapshots/stackoverflow-com.html +0 -5216
  67. package/examples/snapshots/stackoverflow-com.snapshot.txt +0 -2404
  68. package/examples/snapshots/test-all-mode.html +0 -46
  69. package/examples/snapshots/test-all-mode.snapshot.txt +0 -5
  70. package/examples/snapshots/validate.test.ts +0 -296
  71. package/packages/cli/package.json +0 -42
  72. package/packages/cli/src/__tests__/cli.test.ts +0 -434
  73. package/packages/cli/src/__tests__/errors.test.ts +0 -226
  74. package/packages/cli/src/__tests__/executor.test.ts +0 -275
  75. package/packages/cli/src/__tests__/formatter.test.ts +0 -260
  76. package/packages/cli/src/__tests__/parser.test.ts +0 -288
  77. package/packages/cli/src/__tests__/suggestions.test.ts +0 -255
  78. package/packages/cli/src/commands/back.ts +0 -22
  79. package/packages/cli/src/commands/check.ts +0 -33
  80. package/packages/cli/src/commands/clear.ts +0 -33
  81. package/packages/cli/src/commands/click.ts +0 -32
  82. package/packages/cli/src/commands/closetab.ts +0 -31
  83. package/packages/cli/src/commands/eval.ts +0 -41
  84. package/packages/cli/src/commands/fill.ts +0 -30
  85. package/packages/cli/src/commands/focus.ts +0 -33
  86. package/packages/cli/src/commands/forward.ts +0 -22
  87. package/packages/cli/src/commands/goto.ts +0 -34
  88. package/packages/cli/src/commands/help.ts +0 -162
  89. package/packages/cli/src/commands/hover.ts +0 -34
  90. package/packages/cli/src/commands/index.ts +0 -129
  91. package/packages/cli/src/commands/newtab.ts +0 -35
  92. package/packages/cli/src/commands/press.ts +0 -40
  93. package/packages/cli/src/commands/reload.ts +0 -25
  94. package/packages/cli/src/commands/screenshot.ts +0 -27
  95. package/packages/cli/src/commands/scroll.ts +0 -64
  96. package/packages/cli/src/commands/select.ts +0 -35
  97. package/packages/cli/src/commands/snapshot.ts +0 -21
  98. package/packages/cli/src/commands/tab.ts +0 -32
  99. package/packages/cli/src/commands/tabs.ts +0 -26
  100. package/packages/cli/src/commands/text.ts +0 -27
  101. package/packages/cli/src/commands/title.ts +0 -17
  102. package/packages/cli/src/commands/type.ts +0 -38
  103. package/packages/cli/src/commands/uncheck.ts +0 -33
  104. package/packages/cli/src/commands/url.ts +0 -17
  105. package/packages/cli/src/commands/wait.ts +0 -54
  106. package/packages/cli/src/errors.ts +0 -164
  107. package/packages/cli/src/executor.ts +0 -68
  108. package/packages/cli/src/formatter.ts +0 -215
  109. package/packages/cli/src/index.ts +0 -257
  110. package/packages/cli/src/parser.ts +0 -195
  111. package/packages/cli/src/suggestions.ts +0 -207
  112. package/packages/cli/src/terminal/Terminal.ts +0 -365
  113. package/packages/cli/src/terminal/index.ts +0 -5
  114. package/packages/cli/src/types.ts +0 -155
  115. package/packages/cli/tsconfig.json +0 -20
  116. package/packages/core/package.json +0 -35
  117. package/packages/core/src/actions.ts +0 -1210
  118. package/packages/core/src/errors.ts +0 -296
  119. package/packages/core/src/index.test.ts +0 -638
  120. package/packages/core/src/index.ts +0 -220
  121. package/packages/core/src/ref-map.ts +0 -107
  122. package/packages/core/src/snapshot.ts +0 -873
  123. package/packages/core/src/types.ts +0 -536
  124. package/packages/core/tsconfig.json +0 -23
  125. package/packages/extension/README.md +0 -129
  126. package/packages/extension/package.json +0 -43
  127. package/packages/extension/src/background.ts +0 -888
  128. package/packages/extension/src/content.ts +0 -172
  129. package/packages/extension/src/index.ts +0 -579
  130. package/packages/extension/src/session-manager.ts +0 -385
  131. package/packages/extension/src/types.ts +0 -162
  132. package/packages/extension/tsconfig.json +0 -28
  133. package/src/index.ts +0 -64
  134. package/tsconfig.build.json +0 -12
  135. package/tsconfig.json +0 -26
  136. package/vitest.config.ts +0 -13
@@ -1,2916 +0,0 @@
1
- <html lang="en" data-color-mode="dark" data-light-theme="light" data-dark-theme="dark" data-a11y-animated-images="system" data-a11y-link-underlines="true" class="js-focus-visible" data-js-focus-visible="" data-turbo-loaded=""><head><style type="text/css">.turbo-progress-bar {
2
- position: fixed;
3
- display: block;
4
- top: 0;
5
- left: 0;
6
- height: 3px;
7
- background: #0076ff;
8
- z-index: 2147483647;
9
- transition:
10
- width 300ms ease-out,
11
- opacity 150ms 150ms ease-in;
12
- transform: translate3d(0, 0, 0);
13
- }
14
- </style><style>
15
- :root {
16
- --fontStack-monospace: "Monaspace Neon", ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace !important;
17
- }
18
- </style>
19
-
20
-
21
-
22
-
23
-
24
- <meta charset="utf-8">
25
- <link rel="dns-prefetch" href="https://github.githubassets.com">
26
- <link rel="dns-prefetch" href="https://avatars.githubusercontent.com">
27
- <link rel="dns-prefetch" href="https://github-cloud.s3.amazonaws.com">
28
- <link rel="dns-prefetch" href="https://user-images.githubusercontent.com/">
29
- <link rel="preconnect" href="https://github.githubassets.com" crossorigin="">
30
- <link rel="preconnect" href="https://avatars.githubusercontent.com">
31
-
32
-
33
-
34
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/dark-784387e86ac0.css"><link data-color-theme="light" crossorigin="anonymous" media="all" rel="stylesheet" data-href="https://github.githubassets.com/assets/light-dac525bbd821.css"><link data-color-theme="light_high_contrast" crossorigin="anonymous" media="all" rel="stylesheet" data-href="https://github.githubassets.com/assets/light_high_contrast-56ccf4057897.css"><link data-color-theme="light_colorblind" crossorigin="anonymous" media="all" rel="stylesheet" data-href="https://github.githubassets.com/assets/light_colorblind-0e24752a7d2b.css"><link data-color-theme="light_colorblind_high_contrast" crossorigin="anonymous" media="all" rel="stylesheet" data-href="https://github.githubassets.com/assets/light_colorblind_high_contrast-412af2517363.css"><link data-color-theme="light_tritanopia" crossorigin="anonymous" media="all" rel="stylesheet" data-href="https://github.githubassets.com/assets/light_tritanopia-6186e83663dc.css"><link data-color-theme="light_tritanopia_high_contrast" crossorigin="anonymous" media="all" rel="stylesheet" data-href="https://github.githubassets.com/assets/light_tritanopia_high_contrast-9d33c7aea2e7.css"><link data-color-theme="dark_high_contrast" crossorigin="anonymous" media="all" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark_high_contrast-79bd5fd84a86.css"><link data-color-theme="dark_colorblind" crossorigin="anonymous" media="all" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark_colorblind-75db11311555.css"><link data-color-theme="dark_colorblind_high_contrast" crossorigin="anonymous" media="all" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark_colorblind_high_contrast-f2c1045899a2.css"><link data-color-theme="dark_tritanopia" crossorigin="anonymous" media="all" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark_tritanopia-f46d293c6ff3.css"><link data-color-theme="dark_tritanopia_high_contrast" crossorigin="anonymous" media="all" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark_tritanopia_high_contrast-e4b5684db29d.css"><link data-color-theme="dark_dimmed" crossorigin="anonymous" media="all" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark_dimmed-72c58078e707.css"><link data-color-theme="dark_dimmed_high_contrast" crossorigin="anonymous" media="all" rel="stylesheet" data-href="https://github.githubassets.com/assets/dark_dimmed_high_contrast-956cb5dfcb85.css">
35
-
36
- <style type="text/css">
37
- :root {
38
- --tab-size-preference: 4;
39
- }
40
-
41
- pre, code {
42
- tab-size: var(--tab-size-preference);
43
- }
44
- </style>
45
-
46
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/primer-primitives-c37d781e2da5.css">
47
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/primer-dc3bfaf4b78e.css">
48
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/global-b0ea6cebe9c5.css">
49
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/github-7b2c79a47cf5.css">
50
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/repository-5d735668c600.css">
51
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/code-f0247a8b45d0.css">
52
-
53
-
54
-
55
- <script type="application/json" id="client-env">{"locale":"en","featureFlags":["a11y_status_checks_ruleset","actions_custom_images_public_preview_visibility","actions_custom_images_storage_billing_ui_visibility","actions_enable_snapshot_keyword","actions_image_version_event","actions_workflow_language_service","agent_session_retry_fetch_capi_on_401","allow_react_navs_in_turbo","alternate_user_config_repo","api_insights_show_missing_data_banner","arianotify_comprehensive_migration","billing_hard_budget_limits_for_licenses","billing_ui_budget_pagination_enabled","codespaces_prebuild_region_target_update","coding_agent_model_selection","consolidated_custom_properties_values_table","contentful_lp_footnotes","copilot_3p_agent_hovercards","copilot_agent_cli_public_preview","copilot_agent_sessions_alive_updates","copilot_agent_task_list_v2","copilot_agent_tasks_btn_code_nav","copilot_agent_tasks_btn_code_view","copilot_agent_tasks_btn_code_view_lines","copilot_agent_tasks_btn_repo","copilot_agents_blankslate_mem_requests","copilot_api_agentic_issue_marshal_yaml","copilot_byok_extended_capabilities","copilot_capi_error_response_telemetry","copilot_chat_agents_empty_state","copilot_chat_attach_multiple_images","copilot_chat_clear_model_selection_for_default_change","copilot_chat_disable_model_picker_while_streaming","copilot_chat_file_redirect","copilot_chat_input_commands","copilot_chat_opening_thread_switch","copilot_chat_reduce_quota_checks","copilot_chat_search_bar_redirect","copilot_chat_selection_attachments","copilot_chat_vision_in_claude","copilot_chat_vision_preview_gate","copilot_coding_agent_task_response","copilot_custom_copilots","copilot_custom_copilots_feature_preview","copilot_duplicate_thread","copilot_extensions_hide_in_dotcom_chat","copilot_extensions_removal_on_marketplace","copilot_features_raycast_logo","copilot_file_block_ref_matching","copilot_ftp_hyperspace_upgrade_prompt","copilot_icebreakers_experiment_dashboard","copilot_icebreakers_experiment_hyperspace","copilot_immersive_generate_thread_name_async","copilot_immersive_job_result_preview","copilot_immersive_structured_model_picker","copilot_immersive_task_hyperlinking","copilot_immersive_task_within_chat_thread","copilot_issue_list_show_more","copilot_org_policy_page_focus_mode","copilot_pipes_code_nodes","copilot_pipes_github_graphql_nodes","copilot_premium_request_quotas","copilot_redirect_header_button_to_agents","copilot_security_alert_assignee_options","copilot_share_active_subthread","copilot_spaces_ga","copilot_spaces_individual_policies_ga","copilot_spaces_public_access_to_user_owned_spaces","copilot_spaces_read_access_to_user_owned_spaces","copilot_spaces_report_abuse","copilot_spark_empty_state","copilot_spark_handle_nil_friendly_name","copilot_stable_conversation_view","copilot_swe_agent_progress_commands","copilot_swe_agent_use_subagents","copilot_unconfigured_is_inherited","dashboard_indexeddb_caching","dashboard_lists_max_age_filter","dashboard_universe_2025","dashboard_universe_2025_feedback_dialog","dom_node_counts","enterprise_ai_controls","failbot_report_error_react_apps_on_page","fetch_graphql_ignore_fetch_network_errors","fgpat_permissions_selector_redesign","flex_cta_groups_mvp","global_nav_react_edit_status_dialog","global_nav_react_feature_preview","global_nav_react_teams_settings_page","global_nav_react_top_repos_api_caching","global_nav_repo_picker_debounce","hide_groups_list_for_few_groups","hyperspace_2025_logged_out_batch_1","indexdb-offline-cache-periodic-cleanup","initial_per_page_pagination_updates","issue_fields_global_search","issue_fields_report_usage","issue_fields_timeline_events","issues_cache_operation_timeout","issues_cca_assign_actor_with_agent","issues_check_is_repository_writable","issues_expanded_file_types","issues_lazy_load_comment_box_suggestions","issues_preheating_dependency_issues","issues_preheating_issue_row","issues_preheating_memex","issues_preheating_parent_issue","issues_preheating_secondary","issues_preheating_sub_issues","issues_preheating_timeline_issues","issues_react_bots_timeline_pagination","issues_react_chrome_container_query_fix","issues_react_client_side_caching","issues_react_client_side_caching_analytics","issues_react_extended_preheat_analytics","issues_react_include_bots_in_pickers","issues_react_label_picker_debounce_filter","issues_react_labelpicker_patch","issues_react_prohibit_title_fallback","issues_react_safari_scroll_preservation","issues_react_turbo_cache_navigation","issues_react_ui_feedback","issues_react_use_turbo_for_cross_repo_navigation","issues_report_sidebar_interactions","lifecycle_label_name_updates","loops_service_graphql_execution","marketing_pages_search_explore_provider","memex_default_issue_create_repository","memex_display_button_config_menu","memex_grouped_by_edit_route","memex_live_update_hovercard","memex_mwl_filter_field_delimiter","memex_roadmap_drag_style","mission_control_retry_on_401","mission_control_safe_token_clearing","mission_control_use_body_html","open_agent_session_in_vscode_insiders","open_agent_session_in_vscode_stable","pr_sfv_new_diff_fetch","primer_react_css_has_selector_perf","projects_assignee_max_limit","prs_conversations_react_split","react_centralized_error_handling","react_compiler_commits","react_compiler_diff_lines","react_compiler_prs_hooks","react_compiler_prs_ui","react_compiler_pull_requests","react_profile_user_status_dialog_enabled","react_quality_profiling","repo_insights_all_traffic_endpoint","report_hydro_web_vitals","repos_insights_remove_new_url","repository_suggester_elastic_search","ruleset_deletion_confirmation","sample_network_conn_type","site_calculator_actions_2025","site_features_copilot_universe","site_homepage_collaborate_video","site_homepage_contentful","site_homepage_eyebrow_banner","site_homepage_universe_animations","site_msbuild_webgl_hero","spark_prompt_secret_scanning","swe_agent_member_requests","swe_agent_member_requests_agent_panel","turbo_frame_redirect","viewscreen_sandbox","webp_support","workbench_store_readonly"],"login":"minhlucvan","copilotApiOverrideUrl":"https://api.individual.githubcopilot.com"}</script>
56
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/wp-runtime-ad20bfa322bf.js" defer="defer"></script>
57
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/78298-e2b301acbc0e.js" defer="defer"></script>
58
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/6488-de87864e6818.js" defer="defer"></script>
59
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/82075-c5b5bf3f158d.js" defer="defer"></script>
60
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/environment-4b1518f5fbee.js" defer="defer"></script>
61
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/97068-2c8e697c6e8c.js" defer="defer"></script>
62
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/43784-4652ae97a661.js" defer="defer"></script>
63
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/4712-6fc930a63a4b.js" defer="defer"></script>
64
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/81028-5b8c5e07a4fa.js" defer="defer"></script>
65
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/74911-313e1ea8beda.js" defer="defer"></script>
66
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/91853-448038d8f9ef.js" defer="defer"></script>
67
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/78143-31968346cf4c.js" defer="defer"></script>
68
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/87434-48bfcf328cc4.js" defer="defer"></script>
69
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/github-elements-526e07998dd3.js" defer="defer"></script>
70
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/element-registry-b35f152b39fa.js" defer="defer"></script>
71
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/react-core-b7854054c540.js" defer="defer"></script>
72
-
73
-
74
-
75
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/17688-a9e16fb5ed13.js" defer="defer"></script>
76
-
77
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/70191-36bdeb9f5eb6.js" defer="defer"></script>
78
-
79
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/66721-c03c0d8e4fbe.js" defer="defer"></script>
80
-
81
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/27376-1e4a947f926f.js" defer="defer"></script>
82
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/96384-750ef5263abe.js" defer="defer"></script>
83
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/19718-302da6273821.js" defer="defer"></script>
84
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/behaviors-7ad1f52206e3.js" defer="defer"></script>
85
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/37911-38a50fdf7d79.js" defer="defer"></script>
86
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/notifications-global-d4747c5b0c07.js" defer="defer"></script>
87
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/97582-905c58277a41.js" defer="defer"></script>
88
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/33727-6ee638717be5.js" defer="defer"></script>
89
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/16206-b21b27ebf9b7.js" defer="defer"></script>
90
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/90787-9c76db2bc97d.js" defer="defer"></script>
91
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/codespaces-456e07bbcecd.js" defer="defer"></script>
92
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/50170-e702810dc9f9.js" defer="defer"></script>
93
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/36562-7b59c8ba8e45.js" defer="defer"></script>
94
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/repositories-105e06ae3039.js" defer="defer"></script>
95
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/53996-f184b4318606.js" defer="defer"></script>
96
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/code-menu-e79e57599f8a.js" defer="defer"></script>
97
-
98
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/primer-react.eabf1a5c8951946a1f00.module.css">
99
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/notifications-subscriptions-menu.933100a30c03fd4e8ae4.module.css">
100
-
101
-
102
- <title>microsoft/vscode: Visual Studio Code</title>
103
-
104
-
105
-
106
- <meta name="route-pattern" content="/:user_id/:repository" data-turbo-transient="">
107
- <meta name="route-controller" content="files" data-turbo-transient="">
108
- <meta name="route-action" content="disambiguate" data-turbo-transient="">
109
- <meta name="fetch-nonce" content="v2:03b0f735-7e9b-2994-f629-ec1f21c8f2bb">
110
-
111
-
112
- <meta name="current-catalog-service-hash" content="f3abb0cc802f3d7b95fc8762b94bdcb13bf39634c40c357301c4aa1d67a256fb">
113
-
114
-
115
- <meta name="request-id" content="D6AD:203A20:8B7378:9C6911:696A82AA" data-turbo-transient="true"><meta name="html-safe-nonce" content="2c6c9c8909aea802fadf1650aa9494f30d068478af97f145215051e5b28938a1" data-turbo-transient="true"><meta name="visitor-payload" content="eyJyZWZlcnJlciI6bnVsbCwicmVxdWVzdF9pZCI6IkQ2QUQ6MjAzQTIwOjhCNzM3ODo5QzY5MTE6Njk2QTgyQUEiLCJ2aXNpdG9yX2lkIjoiMTIyNDExNTk1MzY5NDA2ODE1NCIsInJlZ2lvbl9lZGdlIjoic291dGhlYXN0YXNpYSIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==" data-turbo-transient="true"><meta name="visitor-hmac" content="b0b728fe6c2648fa0b0c67d97c95db0dc8f0629ff2a31bdd334f6a758de93f74" data-turbo-transient="true">
116
-
117
-
118
- <meta name="hovercard-subject-tag" content="repository:41881900" data-turbo-transient="">
119
-
120
-
121
- <meta name="github-keyboard-shortcuts" content="repository,copilot" data-turbo-transient="true">
122
-
123
-
124
- <meta name="selected-link" value="repo_source" data-turbo-transient="">
125
- <link rel="assets" href="https://github.githubassets.com/">
126
-
127
- <meta name="google-site-verification" content="Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I">
128
-
129
- <meta name="octolytics-url" content="https://collector.github.com/github/collect"><meta name="octolytics-actor-id" content="11575076"><meta name="octolytics-actor-login" content="minhlucvan"><meta name="octolytics-actor-hash" content="83474ef70788b2debdeb3cd6deaca5491d2d710dd2926d0776a7683e5137ac50">
130
-
131
- <meta name="analytics-location" content="/&lt;user-name&gt;/&lt;repo-name&gt;" data-turbo-transient="true">
132
-
133
-
134
-
135
-
136
-
137
-
138
- <meta name="user-login" content="minhlucvan">
139
-
140
- <link rel="sudo-modal" href="/sessions/sudo_modal">
141
-
142
- <meta name="viewport" content="width=device-width">
143
-
144
-
145
-
146
- <meta name="description" content="Visual Studio Code. Contribute to microsoft/vscode development by creating an account on GitHub.">
147
-
148
- <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub">
149
-
150
- <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub">
151
- <meta property="fb:app_id" content="1401488693436528">
152
- <meta name="apple-itunes-app" content="app-id=1477376905, app-argument=https://github.com/microsoft/vscode">
153
-
154
- <meta name="twitter:image" content="https://opengraph.githubassets.com/7315dfa5a5f4e7da9cd91effddcc71b044d2af3c41a61280e07700966287dc91/microsoft/vscode"><meta name="twitter:site" content="@github"><meta name="twitter:card" content="summary_large_image"><meta name="twitter:title" content="microsoft/vscode: Visual Studio Code"><meta name="twitter:description" content="Visual Studio Code. Contribute to microsoft/vscode development by creating an account on GitHub.">
155
- <meta property="og:image" content="https://opengraph.githubassets.com/7315dfa5a5f4e7da9cd91effddcc71b044d2af3c41a61280e07700966287dc91/microsoft/vscode"><meta property="og:image:alt" content="Visual Studio Code. Contribute to microsoft/vscode development by creating an account on GitHub."><meta property="og:image:width" content="1200"><meta property="og:image:height" content="600"><meta property="og:site_name" content="GitHub"><meta property="og:type" content="object"><meta property="og:title" content="microsoft/vscode: Visual Studio Code"><meta property="og:url" content="https://github.com/microsoft/vscode"><meta property="og:description" content="Visual Studio Code. Contribute to microsoft/vscode development by creating an account on GitHub.">
156
-
157
-
158
-
159
- <link rel="shared-web-socket" href="wss://alive.github.com/_sockets/u/11575076/ws?session=eyJ2IjoiVjMiLCJ1IjoxMTU3NTA3NiwicyI6MTg3NDQ3ODE0MiwiYyI6MTQwNzg3MzkxOSwidCI6MTc2ODU4Nzk0N30=--01b1b528427aa102a97a27548b25098f3d33f6a18a3b97d3812e3212f297c1d0" data-refresh-url="/_alive" data-session-id="f7bab3e4f6c991c4d64244ba5c2e944659522232c66df125218869a2c7e38233">
160
- <link rel="shared-web-socket-src" href="/assets-cdn/worker/socket-worker-2a038060e454.js">
161
-
162
-
163
- <meta name="hostname" content="github.com">
164
-
165
-
166
- <meta name="keyboard-shortcuts-preference" content="all">
167
- <meta name="hovercards-preference" content="true">
168
- <meta name="announcement-preference-hovercard" content="true">
169
-
170
- <meta name="expected-hostname" content="github.com">
171
-
172
-
173
- <meta http-equiv="x-pjax-version" content="a641e326013968fc21c7d0a9b55e4eaaea52d0e51914d49e97c949ba4f87e1f8" data-turbo-track="reload">
174
- <meta http-equiv="x-pjax-csp-version" content="21a43568025709b66240454fc92d4f09335a96863f8ab1c46b4a07f6a5b67102" data-turbo-track="reload">
175
- <meta http-equiv="x-pjax-css-version" content="55b0505ced03db2ce471b1617daeace5e7a81657042cfd93a3d10d1fb8695d21" data-turbo-track="reload">
176
- <meta http-equiv="x-pjax-js-version" content="913560fa317c3c5a71e34f9b19253c9f09d02b4b958a86c2a56f4c8541116377" data-turbo-track="reload">
177
-
178
- <meta name="turbo-cache-control" content="no-preview" data-turbo-transient="">
179
-
180
- <meta data-hydrostats="publish">
181
- <meta name="go-import" content="github.com/microsoft/vscode git https://github.com/microsoft/vscode.git">
182
-
183
- <meta name="octolytics-dimension-user_id" content="6154722"><meta name="octolytics-dimension-user_login" content="microsoft"><meta name="octolytics-dimension-repository_id" content="41881900"><meta name="octolytics-dimension-repository_nwo" content="microsoft/vscode"><meta name="octolytics-dimension-repository_public" content="true"><meta name="octolytics-dimension-repository_is_fork" content="false"><meta name="octolytics-dimension-repository_network_root_id" content="41881900"><meta name="octolytics-dimension-repository_network_root_nwo" content="microsoft/vscode">
184
-
185
-
186
-
187
- <link rel="canonical" href="https://github.com/microsoft/vscode" data-turbo-transient="">
188
-
189
-
190
- <meta name="turbo-body-classes" content="logged-in env-production page-responsive">
191
- <meta name="disable-turbo" content="false">
192
-
193
-
194
- <meta name="browser-stats-url" content="https://api.github.com/_private/browser/stats">
195
-
196
- <meta name="browser-errors-url" content="https://api.github.com/_private/browser/errors">
197
-
198
- <meta name="release" content="5998c30593994bf2589055aef7b22d368a499367">
199
- <meta name="ui-target" content="full">
200
-
201
- <link rel="mask-icon" href="https://github.githubassets.com/assets/pinned-octocat-093da3e6fa40.svg" color="#000000">
202
- <link rel="alternate icon" class="js-site-favicon" type="image/png" href="https://github.githubassets.com/favicons/favicon-dark.png">
203
- <link rel="icon" class="js-site-favicon" type="image/svg+xml" href="https://github.githubassets.com/favicons/favicon-dark.svg" data-base-href="https://github.githubassets.com/favicons/favicon">
204
-
205
- <meta name="theme-color" content="#1e2327">
206
- <meta name="color-scheme" content="dark light">
207
-
208
-
209
- <link rel="manifest" href="/manifest.json" crossorigin="use-credentials">
210
-
211
- <link rel="stylesheet" type="text/css" href="https://github.githubassets.com/assets/14814.29aaeaafa90f007c6f61.module.css" crossorigin="anonymous"><link rel="stylesheet" type="text/css" href="https://github.githubassets.com/assets/24291.933100a30c03fd4e8ae4.module.css" crossorigin="anonymous"><link rel="stylesheet" type="text/css" href="https://github.githubassets.com/assets/47657.b14b6fddffe5b4a1fb97.module.css" crossorigin="anonymous"><link rel="stylesheet" type="text/css" href="https://github.githubassets.com/assets/86427.a030c176deb979f7b8bc.module.css" crossorigin="anonymous"><link rel="stylesheet" type="text/css" href="https://github.githubassets.com/assets/1650.9d926f69ee309a45d0df.module.css" crossorigin="anonymous"><link rel="stylesheet" type="text/css" href="https://github.githubassets.com/assets/16702.30736d4aa7b2b246dd6f.module.css" crossorigin="anonymous"><link rel="stylesheet" type="text/css" href="https://github.githubassets.com/assets/71699.1d1b79e779bab56196fa.module.css" crossorigin="anonymous"><style data-styled="active" data-styled-version="5.3.11"></style><link rel="stylesheet" type="text/css" href="https://github.githubassets.com/assets/6873.44b521786393825e5c12.module.css" crossorigin="anonymous"><style id="ms-consent-banner-main-styles">.w8hcgFksdo30C8w-bygqu{color:#000}.ydkKdaztSS0AeHWIeIHsQ a{color:#0067B8}.erL690_8JwUW-R4bJRcfl{background-color:#EBEBEB;border:none;color:#000}.erL690_8JwUW-R4bJRcfl:enabled:hover{color:#000;background-color:#DBDBDB;box-shadow:0px 4px 10px rgba(0,0,0,0.25);border:none}.erL690_8JwUW-R4bJRcfl:enabled:focus{background-color:#DBDBDB;box-shadow:0px 4px 10px rgba(0,0,0,0.25);border:2px solid #000}.erL690_8JwUW-R4bJRcfl:disabled{opacity:1;color:rgba(0,0,0,0.2);background-color:rgba(0,0,0,0.2);border:none}._1zNQOqxpBFSokeCLGi_hGr{border:none;background-color:#0067B8;color:#fff}._1zNQOqxpBFSokeCLGi_hGr:enabled:hover{color:#fff;background-color:#0067B8;box-shadow:0px 4px 10px rgba(0,0,0,0.25);border:none}._1zNQOqxpBFSokeCLGi_hGr:enabled:focus{background-color:#0067B8;box-shadow:0px 4px 10px rgba(0,0,0,0.25);border:2px solid #000}._1zNQOqxpBFSokeCLGi_hGr:disabled{opacity:1;color:rgba(0,0,0,0.2);background-color:rgba(0,120,215,0.2);border:none}._23tra1HsiiP6cT-Cka-ycB{position:relative;display:flex;z-index:9999;width:100%;background-color:#F2F2F2;justify-content:space-between;text-align:left}div[dir="rtl"]._23tra1HsiiP6cT-Cka-ycB{text-align:right}._1Upc2NjY8AlDn177YoVj0y{margin:0;padding-left:5%;padding-top:8px;padding-bottom:8px}div[dir="rtl"] ._1Upc2NjY8AlDn177YoVj0y{margin:0;padding:8px 5% 8px 0;float:none}._23tra1HsiiP6cT-Cka-ycB svg{fill:none;max-width:none;max-height:none}._1V_hlU-7jdtPiooHMu89BB{display:table-cell;padding:12px;width:24px;height:24px;font-family:Segoe UI, SegoeUI, Arial, sans-serif;font-style:normal;font-weight:normal;font-size:24px;line-height:0}.f6QKJD7fhSbnJLarTL-W-{display:table-cell;vertical-align:middle;padding:0;font-family:Segoe UI, SegoeUI, Arial, sans-serif;font-style:normal;font-weight:normal;font-size:13px;line-height:16px}.f6QKJD7fhSbnJLarTL-W- a{text-decoration:underline}._2j0fmugLb1FgYz6KPuB91w{display:inline-block;margin-left:5%;margin-right:5%;min-width:40%;min-width:calc((150px + 3 * 4px) * 2 + 150px);min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content;align-self:center;position:relative}._1XuCi2WhiqeWRUVp3pnFG3{margin:4px;padding:5px;min-width:150px;min-height:36px;vertical-align:top;cursor:pointer;font-family:Segoe UI, SegoeUI, Arial, sans-serif;font-style:normal;font-weight:normal;font-size:15px;line-height:20px;text-align:center}._1XuCi2WhiqeWRUVp3pnFG3:focus{box-sizing:border-box}._1XuCi2WhiqeWRUVp3pnFG3:disabled{cursor:not-allowed}._2bvsb3ubApyZ0UGoQA9O9T{display:block;position:fixed;z-index:10000;top:0;left:0;width:100%;height:100%;background-color:rgba(255,255,255,0.6);overflow:auto;text-align:left}div[dir="rtl"]._2bvsb3ubApyZ0UGoQA9O9T{text-align:right}div[dir="rtl"] ._2bvsb3ubApyZ0UGoQA9O9T{left:auto;right:0}.AFsJE948muYyzCMktdzuk{position:relative;top:8%;margin-bottom:40px;margin-left:auto;margin-right:auto;box-sizing:border-box;width:640px;background-color:#fff;border:1px solid #0067B8}._3kWyBRbW_dgnMiEyx06Fu4{float:right;z-index:1;margin:2px;padding:12px;border:none;cursor:pointer;font-family:Segoe UI, SegoeUI, Arial, sans-serif;font-style:normal;font-weight:normal;font-size:13px;line-height:13px;display:flex;align-items:center;text-align:center;color:#666;background-color:#fff}div[dir="rtl"] ._3kWyBRbW_dgnMiEyx06Fu4{margin:2px;padding:12px;float:left}.uCYvKvHXrhjNgflv1VqdD{position:static;margin-top:36px;margin-left:36px;margin-right:36px}._17pX1m9O_W--iZbDt3Ta5r{margin-top:0;margin-bottom:12px;font-family:Segoe UI, SegoeUI, Arial, sans-serif;font-style:normal;font-weight:600;font-size:20px;line-height:24px;text-transform:none}._1kBkHQ1V1wu3kl-YcLgUr6{height:446px;overflow:auto}._20_nXDf6uFs9Q6wxRXG-I-{margin-top:0;font-family:Segoe UI, SegoeUI, Arial, sans-serif;font-style:normal;font-weight:normal;font-size:15px;line-height:20px}._20_nXDf6uFs9Q6wxRXG-I- a{text-decoration:underline}dl._2a0NH_GDQEQe5Ynfo7suVH{margin-top:36px;margin-bottom:0;padding:0;list-style:none;text-transform:none}dt._3j_LCPv7fyXv3A8FIXVwZ4{margin-top:20px;float:none;font-family:Segoe UI, SegoeUI, Arial, sans-serif;font-style:normal;font-weight:600;font-size:18px;line-height:24px;list-style:none}.k-vxTGFbdq1aOZB2HHpjh{margin:0;padding:0;border:none}._2Bucyy75c_ogoU1g-liB5R{margin:0;padding:0;border-bottom:none;font-family:Segoe UI, SegoeUI, Arial, sans-serif;font-style:normal;font-weight:600;font-size:18px;line-height:24px;text-transform:none}._63gwfzV8dclrsl2cfd90r{display:inline-block;margin-top:0;margin-bottom:13px;font-family:Segoe UI, SegoeUI, Arial, sans-serif;font-style:normal;font-weight:normal;font-size:15px;line-height:20px}._1l8wM_4mRYGz3Iu7l3BZR7{display:block}._2UE03QS02aZGkslegN_F-i{display:inline-block;position:relative;left:5px;margin-bottom:13px;margin-right:34px;padding:3px}div[dir="rtl"] ._2UE03QS02aZGkslegN_F-i{margin:0 0 13px 34px;padding:3px;float:none}div[dir="rtl"] ._2UE03QS02aZGkslegN_F-i{left:auto;right:5px}._23tra1HsiiP6cT-Cka-ycB *::before,._2bvsb3ubApyZ0UGoQA9O9T *::before,._23tra1HsiiP6cT-Cka-ycB *::after,._2bvsb3ubApyZ0UGoQA9O9T *::after{box-sizing:inherit}._1HSFn0HzGo6w4ADApV8-c4{outline:2px solid rgba(0,0,0,0.8)}input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2{display:inline-block;position:relative;margin-top:0;margin-left:0;margin-right:0;height:0;width:0;border-radius:0;cursor:pointer;outline:none;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2+label::before{display:block;position:absolute;top:5px;left:3px;height:19px;width:19px;content:"";border-radius:50%;border:1px solid #000;background-color:#fff}div[dir="rtl"] input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2+label::before{left:auto;right:3px}input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2:not(:disabled)+label:hover::before{border:1px solid #0067B8}input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2:not(:disabled)+label:hover::after{display:block;position:absolute;top:10px;left:8px;height:9px;width:9px;content:"";border-radius:50%;background-color:rgba(0,0,0,0.8)}div[dir="rtl"] input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2:not(:disabled)+label:hover::after{left:auto;right:8px}input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2:not(:disabled)+label:focus::before{border:1px solid #0067B8}input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2:not(:disabled)+label:focus::after{display:block;position:absolute;top:10px;left:8px;height:9px;width:9px;content:"";border-radius:50%;background-color:#000}div[dir="rtl"] input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2:not(:disabled)+label:focus::after{left:auto;right:8px}input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2:checked+label::after{display:block;position:absolute;top:10px;left:8px;height:9px;width:9px;content:"";border-radius:50%;background-color:#000}div[dir="rtl"] input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2:checked+label::after{left:auto;right:8px}input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2:disabled+label{cursor:not-allowed}input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2:disabled+label::before{border:1px solid rgba(0,0,0,0.2);background-color:rgba(0,0,0,0.2)}._3RJzeL3l9Rl_lAQEm6VwdX{display:block;position:static;float:right;margin-top:0;margin-bottom:0;margin-left:19px;margin-right:0;padding-top:0;padding-bottom:0;padding-left:8px;padding-right:0;width:80%;width:calc(100% - 19px);font-family:Segoe UI, SegoeUI, Arial, sans-serif;font-style:normal;font-weight:normal;font-size:15px;line-height:20px;text-transform:none;cursor:pointer;box-sizing:border-box}div[dir="rtl"] ._3RJzeL3l9Rl_lAQEm6VwdX{margin:0 19px 0 0;padding:0 8px 0 0;float:left}.nohp3sIG12ZBhzcMnPala{margin-top:20px;margin-bottom:48px}._2uhaEsmeotZ3P-M0AXo2kF{padding:0;width:278px;height:36px;cursor:pointer;font-family:Segoe UI, SegoeUI, Arial, sans-serif;font-style:normal;font-weight:normal;font-size:15px;line-height:20px;text-align:center}._2uhaEsmeotZ3P-M0AXo2kF:focus{box-sizing:border-box}._2uhaEsmeotZ3P-M0AXo2kF:disabled{cursor:not-allowed}._3tOu1FJ59c_xz_PmI1lKV5{float:right;padding:0;width:278px;height:36px;cursor:pointer;font-family:Segoe UI, SegoeUI, Arial, sans-serif;font-style:normal;font-weight:normal;font-size:15px;line-height:20px;text-align:center}._3tOu1FJ59c_xz_PmI1lKV5:focus{box-sizing:border-box}._3tOu1FJ59c_xz_PmI1lKV5:disabled{cursor:not-allowed}div[dir="rtl"] ._3tOu1FJ59c_xz_PmI1lKV5{margin:0;padding:0;float:left}@media only screen and (max-width: 768px){._2j0fmugLb1FgYz6KPuB91w,._1Upc2NjY8AlDn177YoVj0y{padding-top:8px;padding-bottom:12px;padding-left:3.75%;padding-right:3.75%;margin:0;width:92.5%}._23tra1HsiiP6cT-Cka-ycB{display:block}._1XuCi2WhiqeWRUVp3pnFG3{margin-bottom:8px;margin-left:0;margin-right:0;width:100%}._2bvsb3ubApyZ0UGoQA9O9T{overflow:hidden}.AFsJE948muYyzCMktdzuk{top:1.8%;width:93.33%;height:96.4%;overflow:hidden}.uCYvKvHXrhjNgflv1VqdD{margin-top:24px;margin-left:24px;margin-right:24px;height:100%}._1kBkHQ1V1wu3kl-YcLgUr6{height:62%;height:calc(100% - 188px);min-height:50%}._2uhaEsmeotZ3P-M0AXo2kF{width:100%}._3tOu1FJ59c_xz_PmI1lKV5{margin-bottom:12px;margin-left:0;width:100%}div[dir="rtl"] ._3tOu1FJ59c_xz_PmI1lKV5{margin:0 0 12px 0;padding:0;float:none}}@media only screen and (max-width: 768px) and (orientation: landscape), only screen and (max-height: 260px), only screen and (max-width: 340px){.AFsJE948muYyzCMktdzuk{overflow:auto}}@media only screen and (max-height: 260px), only screen and (max-width: 340px){._1XuCi2WhiqeWRUVp3pnFG3{min-width:0}._3kWyBRbW_dgnMiEyx06Fu4{padding:3%}.uCYvKvHXrhjNgflv1VqdD{margin-top:3%;margin-left:3%;margin-right:3%}._17pX1m9O_W--iZbDt3Ta5r{margin-bottom:3%}._1kBkHQ1V1wu3kl-YcLgUr6{height:calc(79% - 64px)}.nohp3sIG12ZBhzcMnPala{margin-top:5%;margin-bottom:10%}._3tOu1FJ59c_xz_PmI1lKV5{margin-bottom:3%}div[dir="rtl"] ._3tOu1FJ59c_xz_PmI1lKV5{margin:0 0 3% 0;padding:0;float:none}}
212
- </style><style type="text/css" id="ms-consent-banner-theme-styles">._23tra1HsiiP6cT-Cka-ycB {
213
- background-color: #24292f !important;
214
- }.w8hcgFksdo30C8w-bygqu {
215
- color: #ffffff !important;
216
- }.ydkKdaztSS0AeHWIeIHsQ a {
217
- color: #d8b9ff !important;
218
- }._2bvsb3ubApyZ0UGoQA9O9T {
219
- background-color: rgba(23, 23, 23, 0.8) !important;
220
- }.AFsJE948muYyzCMktdzuk {
221
- background-color: #24292f !important;
222
- border: 1px solid #d8b9ff !important;
223
- }._3kWyBRbW_dgnMiEyx06Fu4 {
224
- color: #d8b9ff !important;
225
- background-color: #24292f !important;
226
- }._1zNQOqxpBFSokeCLGi_hGr {
227
- border: 1px solid #ffffff !important;
228
- background-color: #ffffff !important;
229
- color: #1f2328 !important;
230
- }._1zNQOqxpBFSokeCLGi_hGr:enabled:hover {
231
- color: #1f2328 !important;
232
- background-color: #d8b9ff !important;
233
- box-shadow: none !important;
234
- border: 1px solid transparent !important;
235
- }._1zNQOqxpBFSokeCLGi_hGr:enabled:focus {
236
- background-color: #d8b9ff !important;
237
- box-shadow: none !important;
238
- border: 2px solid #ffffff !important;
239
- }._1zNQOqxpBFSokeCLGi_hGr:disabled {
240
- opacity: 0.5 !important;
241
- color: #1f2328 !important;
242
- background-color: #ffffff !important;
243
- border: 1px solid transparent !important;
244
- }.erL690_8JwUW-R4bJRcfl {
245
- border: 1px solid #eaeef2 !important;
246
- background-color: #32383f !important;
247
- color: #ffffff !important;
248
- }.erL690_8JwUW-R4bJRcfl:enabled:hover {
249
- color: #ffffff !important;
250
- background-color: #24292f !important;
251
- box-shadow: none !important;
252
- border: 1px solid #ffffff !important;
253
- }.erL690_8JwUW-R4bJRcfl:enabled:focus {
254
- background-color: #24292f !important;
255
- box-shadow: none !important;
256
- border: 2px solid #6e7781 !important;
257
- }.erL690_8JwUW-R4bJRcfl:disabled {
258
- opacity: 0.5 !important;
259
- color: #ffffff !important;
260
- background-color: #424a53 !important;
261
- border: 1px solid #6e7781 !important;
262
- }input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2 + label::before {
263
- border: 1px solid #d8b9ff !important;
264
- background-color: #24292f !important;
265
- }._1HSFn0HzGo6w4ADApV8-c4 {
266
- outline: 2px solid #ffffff !important;
267
- }input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2:checked + label::after {
268
- background-color: #d8b9ff !important;
269
- }input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2 + label:hover::before {
270
- border: 1px solid #ffffff !important;
271
- }input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2 + label:hover::after {
272
- background-color: #ffffff !important;
273
- }input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2 + label:focus::before {
274
- border: 1px solid #ffffff !important;
275
- }input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2 + label:focus::after {
276
- background-color: #d8b9ff !important;
277
- }input[type="radio"]._1dp8Vp5m3HwAqGx8qBmFV2:disabled + label::before {
278
- border: 1px solid rgba(227, 227, 227, 0.2) !important;
279
- background-color: rgba(227, 227, 227, 0.2) !important;
280
- }</style><link rel="stylesheet" type="text/css" href="https://github.githubassets.com/assets/74667.dc7fd265f8acb0aa8d63.module.css" crossorigin="anonymous"></head>
281
-
282
- <body class="logged-in env-production page-responsive" style="overflow-wrap: break-word; --dialog-scrollgutter: 0px;" data-dialog-scroll-optimized="">
283
- <div data-turbo-body="" class="logged-in env-production page-responsive" style="word-wrap: break-word;">
284
- <div id="__primerPortalRoot__" role="region" style="z-index: 1000; position: absolute; width: 100%;" data-turbo-permanent=""></div>
285
-
286
-
287
-
288
-
289
- <div class="position-relative header-wrapper js-header-wrapper ">
290
- <a href="#start-of-content" data-skip-target-assigned="false" class="p-3 color-bg-accent-emphasis color-fg-on-emphasis show-on-focus js-skip-to-content">Skip to content</a>
291
-
292
- <span data-view-component="true" class="progress-pjax-loader Progress position-fixed width-full">
293
- <span style="width: 0%;" data-view-component="true" class="Progress-item progress-pjax-loader-bar left-0 top-0 color-bg-accent-emphasis"></span>
294
- </span>
295
-
296
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/primer-react.eabf1a5c8951946a1f00.module.css">
297
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/keyboard-shortcuts-dialog.29aaeaafa90f007c6f61.module.css">
298
-
299
- <react-partial partial-name="keyboard-shortcuts-dialog" data-ssr="false" data-attempted-ssr="false" data-react-profiling="true" data-catalyst="" class="loaded">
300
-
301
- <script type="application/json" data-target="react-partial.embeddedData">{"props":{"docsUrl":"https://docs.github.com/get-started/accessibility/keyboard-shortcuts"}}</script>
302
- <div data-target="react-partial.reactRoot"><div class="d-none"></div><script type="application/json" id="__PRIMER_DATA__r_0___">{"resolvedServerColorMode":"night"}</script></div>
303
- </react-partial>
304
-
305
-
306
-
307
-
308
-
309
-
310
-
311
-
312
-
313
- <header class="AppHeader" role="banner">
314
- <h2 class="sr-only">Navigation Menu</h2>
315
-
316
-
317
-
318
-
319
- <div class="AppHeader-globalBar pb-2 js-global-bar">
320
- <div class="AppHeader-globalBar-start responsive-context-region">
321
- <div class="">
322
- <react-partial-anchor data-catalyst="">
323
- <button data-target="react-partial-anchor.anchor" aria-label="Open global navigation menu" show_tooltip="false" type="button" data-view-component="true" class="AppHeader-button Button--secondary Button--medium Button p-0 color-fg-muted" aria-expanded="false" aria-haspopup="true"> <span class="Button-content">
324
- <span class="Button-label"><svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-three-bars">
325
- <path d="M1 2.75A.75.75 0 0 1 1.75 2h12.5a.75.75 0 0 1 0 1.5H1.75A.75.75 0 0 1 1 2.75Zm0 5A.75.75 0 0 1 1.75 7h12.5a.75.75 0 0 1 0 1.5H1.75A.75.75 0 0 1 1 7.75ZM1.75 12h12.5a.75.75 0 0 1 0 1.5H1.75a.75.75 0 0 1 0-1.5Z"></path>
326
- </svg></span>
327
- </span>
328
- </button>
329
-
330
-
331
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/primer-react.eabf1a5c8951946a1f00.module.css">
332
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/global-nav-menu.a030c176deb979f7b8bc.module.css">
333
-
334
- <react-partial partial-name="global-nav-menu" data-ssr="false" data-attempted-ssr="false" data-react-profiling="true" data-catalyst="" class="loaded">
335
-
336
- <script type="application/json" data-target="react-partial.embeddedData">{"props":{"home":{"href":"/dashboard","hotkey":"g d"},"feed":{"show":false,"href":"/feed"},"issues":{"href":"/issues","hotkey":"g i"},"pulls":{"href":"/pulls","hotkey":"g p"},"contributedRepos":{"show":true,"href":"https://github.com/repos","hotkey":null},"projects":{"href":"/projects"},"discussions":{"show":true,"href":"/discussions"},"codespaces":{"show":true,"href":"https://github.com/codespaces"},"copilot":{"show":true,"href":"/copilot"},"spark":{"show":false,"href":null},"marketplace":{"show":true,"href":"/marketplace"},"mcp":{"show":true,"href":"https://github.com/mcp"},"explore":{"show":true,"href":"/explore"},"richContent":{"show":true,"contentUrl":"/_side-panels/global.json","repositoriesSearchUrl":"/_side-panel-items/global/repositories.json","teamsSearchUrl":"/_side-panel-items/global/teams.json"}}}</script>
337
- <div data-target="react-partial.reactRoot"><div class="d-none"><li data-has-description="false" class="prc-ActionList-ActionListItem-So4vC"><a class="prc-ActionList-ActionListContent-KBb8- prc-Link-Link-9ZwDx" tabindex="0" aria-labelledby="_r_p_--label " id="_r_p_" data-size="medium" href="/dashboard" data-testid="side-nav-menu-item-HOME" style="--subitem-depth: 0;"><span class="prc-ActionList-Spacer-4tR2m"></span><span class="prc-ActionList-LeadingVisual-NBr28 prc-ActionList-VisualWrap-bdCsS"><svg aria-hidden="true" focusable="false" class="octicon octicon-home" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="M6.906.664a1.749 1.749 0 0 1 2.187 0l5.25 4.2c.415.332.657.835.657 1.367v7.019A1.75 1.75 0 0 1 13.25 15h-3.5a.75.75 0 0 1-.75-.75V9H7v5.25a.75.75 0 0 1-.75.75h-3.5A1.75 1.75 0 0 1 1 13.25V6.23c0-.531.242-1.034.657-1.366l5.25-4.2Zm1.25 1.171a.25.25 0 0 0-.312 0l-5.25 4.2a.25.25 0 0 0-.094.196v7.019c0 .138.112.25.25.25H5.5V8.25a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 .75.75v5.25h2.75a.25.25 0 0 0 .25-.25V6.23a.25.25 0 0 0-.094-.195Z"></path></svg></span><span class="prc-ActionList-ActionListSubContent-gKsFp" data-component="ActionList.Item--DividerContainer"><span id="_r_p_--label" class="prc-ActionList-ItemLabel-81ohH">Home</span></span></a></li><li data-has-description="false" class="prc-ActionList-ActionListItem-So4vC"><a class="prc-ActionList-ActionListContent-KBb8- prc-Link-Link-9ZwDx" tabindex="0" aria-labelledby="_r_q_--label " id="_r_q_" data-size="medium" href="/issues" data-testid="side-nav-menu-item-ISSUES" style="--subitem-depth: 0;"><span class="prc-ActionList-Spacer-4tR2m"></span><span class="prc-ActionList-LeadingVisual-NBr28 prc-ActionList-VisualWrap-bdCsS"><svg aria-hidden="true" focusable="false" class="octicon octicon-issue-opened" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"></path><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Z"></path></svg></span><span class="prc-ActionList-ActionListSubContent-gKsFp" data-component="ActionList.Item--DividerContainer"><span id="_r_q_--label" class="prc-ActionList-ItemLabel-81ohH">Issues</span></span></a></li><li data-has-description="false" class="prc-ActionList-ActionListItem-So4vC"><a class="prc-ActionList-ActionListContent-KBb8- prc-Link-Link-9ZwDx" tabindex="0" aria-labelledby="_r_r_--label " id="_r_r_" data-size="medium" href="/pulls" data-testid="side-nav-menu-item-PULL_REQUESTS" style="--subitem-depth: 0;"><span class="prc-ActionList-Spacer-4tR2m"></span><span class="prc-ActionList-LeadingVisual-NBr28 prc-ActionList-VisualWrap-bdCsS"><svg aria-hidden="true" focusable="false" class="octicon octicon-git-pull-request" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="M1.5 3.25a2.25 2.25 0 1 1 3 2.122v5.256a2.251 2.251 0 1 1-1.5 0V5.372A2.25 2.25 0 0 1 1.5 3.25Zm5.677-.177L9.573.677A.25.25 0 0 1 10 .854V2.5h1A2.5 2.5 0 0 1 13.5 5v5.628a2.251 2.251 0 1 1-1.5 0V5a1 1 0 0 0-1-1h-1v1.646a.25.25 0 0 1-.427.177L7.177 3.427a.25.25 0 0 1 0-.354ZM3.75 2.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm0 9.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm8.25.75a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z"></path></svg></span><span class="prc-ActionList-ActionListSubContent-gKsFp" data-component="ActionList.Item--DividerContainer"><span id="_r_r_--label" class="prc-ActionList-ItemLabel-81ohH">Pull requests</span></span></a></li></div><script type="application/json" id="__PRIMER_DATA__r_o___">{"resolvedServerColorMode":"night"}</script></div>
338
- </react-partial>
339
-
340
-
341
- </react-partial-anchor>
342
-
343
- </div>
344
-
345
- <a class="AppHeader-logo ml-1 " href="https://github.com/" data-hotkey="g d" aria-label="Homepage " data-turbo="false" data-analytics-event="{&quot;category&quot;:&quot;Header&quot;,&quot;action&quot;:&quot;go to dashboard&quot;,&quot;label&quot;:&quot;icon:logo&quot;}">
346
- <svg height="32" aria-hidden="true" viewBox="0 0 24 24" version="1.1" width="32" data-view-component="true" class="octicon octicon-mark-github v-align-middle">
347
- <path d="M12 1C5.923 1 1 5.923 1 12c0 4.867 3.149 8.979 7.521 10.436.55.096.756-.233.756-.522 0-.262-.013-1.128-.013-2.049-2.764.509-3.479-.674-3.699-1.292-.124-.317-.66-1.293-1.127-1.554-.385-.207-.936-.715-.014-.729.866-.014 1.485.797 1.691 1.128.99 1.663 2.571 1.196 3.204.907.096-.715.385-1.196.701-1.471-2.448-.275-5.005-1.224-5.005-5.432 0-1.196.426-2.186 1.128-2.956-.111-.275-.496-1.402.11-2.915 0 0 .921-.288 3.024 1.128a10.193 10.193 0 0 1 2.75-.371c.936 0 1.871.123 2.75.371 2.104-1.43 3.025-1.128 3.025-1.128.605 1.513.221 2.64.111 2.915.701.77 1.127 1.747 1.127 2.956 0 4.222-2.571 5.157-5.019 5.432.399.344.743 1.004.743 2.035 0 1.471-.014 2.654-.014 3.025 0 .289.206.632.756.522C19.851 20.979 23 16.854 23 12c0-6.077-4.922-11-11-11Z"></path>
348
- </svg>
349
- </a>
350
-
351
- <context-region-controller class="AppHeader-context responsive-context-region" data-max-items="5" data-catalyst="">
352
- <div class="AppHeader-context-full">
353
- <nav role="navigation" aria-label="GitHub Breadcrumb">
354
-
355
- <context-region data-target="context-region-controller.contextRegion" role="list" data-action="context-region-changed:context-region-controller#crumbsChanged" data-catalyst="">
356
- <context-region-crumb data-crumb-id="contextregion-usercrumb-microsoft" data-targets="context-region.crumbs" data-label="microsoft" data-href="/microsoft" data-pre-rendered="" role="listitem" data-catalyst="">
357
- <a data-target="context-region-crumb.linkElement" data-analytics-event="{&quot;category&quot;:&quot;SiteHeaderComponent&quot;,&quot;action&quot;:&quot;context_region_crumb&quot;,&quot;label&quot;:&quot;microsoft&quot;,&quot;screen_size&quot;:&quot;full&quot;}" data-hovercard-type="organization" data-hovercard-url="/orgs/microsoft/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="/microsoft" id="contextregion-usercrumb-microsoft-link" data-view-component="true" class="AppHeader-context-item" aria-keyshortcuts="Alt+ArrowUp">
358
- <span data-target="context-region-crumb.labelElement" class="AppHeader-context-item-label ">microsoft</span>
359
-
360
- </a><tool-tip data-target="context-region-crumb.tooltip" for="contextregion-usercrumb-microsoft-link" popover="manual" class="sr-only" position="absolute" data-type="label" data-direction="s" hidden="" role="tooltip">
361
- microsoft
362
- </tool-tip>
363
- <context-region-divider data-target="context-region-crumb.dividerElement" data-pre-rendered="" data-catalyst="">
364
- <span class="AppHeader-context-item-separator">
365
- <span class="sr-only">/</span>
366
- <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
367
- <path d="M10.956 1.27994L6.06418 14.7201L5 14.7201L9.89181 1.27994L10.956 1.27994Z" fill="currentcolor"></path>
368
- </svg>
369
- </span>
370
- </context-region-divider>
371
-
372
-
373
-
374
- </context-region-crumb>
375
-
376
- <li data-target="context-region-controller.overflowMenuContainer context-region.overflowMenuContainer" role="listitem" hidden="">
377
- <action-menu data-target="context-region-controller.overflowActionMenu" data-select-variant="none" data-view-component="true" data-catalyst="" data-ready="true">
378
- <focus-group direction="vertical" mnemonics="" retain="">
379
- <button id="action-menu-9da749be-8ea8-4bc4-96ac-990f31e40d40-button" popovertarget="action-menu-9da749be-8ea8-4bc4-96ac-990f31e40d40-overlay" aria-controls="action-menu-9da749be-8ea8-4bc4-96ac-990f31e40d40-list" aria-haspopup="true" aria-labelledby="tooltip-a253a167-7c91-4428-bfbf-5ac67b7f53d8" type="button" data-view-component="true" class="Button Button--iconOnly Button--secondary Button--medium"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-kebab-horizontal Button-visual">
380
- <path d="M8 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM1.5 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm13 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"></path>
381
- </svg>
382
- </button><tool-tip id="tooltip-a253a167-7c91-4428-bfbf-5ac67b7f53d8" for="action-menu-9da749be-8ea8-4bc4-96ac-990f31e40d40-button" popover="manual" data-direction="s" data-type="label" data-view-component="true" class="sr-only position-absolute" aria-hidden="true" role="tooltip">Show more breadcrumb items</tool-tip>
383
-
384
-
385
- <anchored-position data-target="action-menu.overlay" id="action-menu-9da749be-8ea8-4bc4-96ac-990f31e40d40-overlay" anchor="action-menu-9da749be-8ea8-4bc4-96ac-990f31e40d40-button" align="start" side="outside-bottom" anchor-offset="normal" popover="auto" data-view-component="true" style="inset: 4px auto auto 0px;">
386
- <div data-view-component="true" class="Overlay Overlay--size-auto">
387
-
388
- <div data-view-component="true" class="Overlay-body Overlay-body--paddingNone"> <action-list data-catalyst="">
389
- <div data-view-component="true">
390
- <ul aria-labelledby="action-menu-9da749be-8ea8-4bc4-96ac-990f31e40d40-button" id="action-menu-9da749be-8ea8-4bc4-96ac-990f31e40d40-list" role="menu" data-view-component="true" class="ActionListWrap--inset ActionListWrap">
391
- <li hidden="true" data-crumb-id="contextregion-usercrumb-microsoft" data-targets="context-region.overflowCrumbs action-list.items" data-analytics-event="{&quot;category&quot;:&quot;SiteHeaderComponent&quot;,&quot;action&quot;:&quot;context_region_overflow_menu_crumb&quot;,&quot;label&quot;:&quot;global-navigation&quot;}" role="none" data-view-component="true" class="ActionListItem">
392
-
393
-
394
- <a tabindex="-1" id="item-8d4e81c5-a2b9-4020-bfb0-09d714cc5a93" href="/microsoft" role="menuitem" data-view-component="true" class="ActionListContent">
395
-
396
- <span data-view-component="true" class="ActionListItem-label">
397
- microsoft
398
- </span>
399
- </a>
400
-
401
- </li>
402
- <li hidden="true" data-crumb-id="contextregion-repositorycrumb-vscode" data-targets="context-region.overflowCrumbs action-list.items" data-analytics-event="{&quot;category&quot;:&quot;SiteHeaderComponent&quot;,&quot;action&quot;:&quot;context_region_overflow_menu_crumb&quot;,&quot;label&quot;:&quot;global-navigation&quot;}" role="none" data-view-component="true" class="ActionListItem">
403
-
404
-
405
- <a tabindex="-1" id="item-a7f5849c-adae-4b80-ae1b-9f33e9e65187" href="/microsoft/vscode" role="menuitem" data-view-component="true" class="ActionListContent">
406
-
407
- <span data-view-component="true" class="ActionListItem-label">
408
- vscode
409
- </span>
410
- </a>
411
-
412
- </li>
413
- </ul>
414
- </div></action-list>
415
-
416
-
417
- </div>
418
-
419
- </div></anchored-position> </focus-group>
420
- </action-menu>
421
- <context-region-divider data-target="context-region-crumb.dividerElement" data-pre-rendered="" data-catalyst="">
422
- <span class="AppHeader-context-item-separator">
423
- <span class="sr-only">/</span>
424
- <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
425
- <path d="M10.956 1.27994L6.06418 14.7201L5 14.7201L9.89181 1.27994L10.956 1.27994Z" fill="currentcolor"></path>
426
- </svg>
427
- </span>
428
- </context-region-divider>
429
-
430
-
431
- </li>
432
- <context-region-crumb data-crumb-id="contextregion-repositorycrumb-vscode" data-targets="context-region.crumbs" data-label="vscode" data-href="/microsoft/vscode" data-pre-rendered="" role="listitem" data-catalyst="">
433
- <a data-target="context-region-crumb.linkElement" data-analytics-event="{&quot;category&quot;:&quot;SiteHeaderComponent&quot;,&quot;action&quot;:&quot;context_region_crumb&quot;,&quot;label&quot;:&quot;vscode&quot;,&quot;screen_size&quot;:&quot;full&quot;}" href="/microsoft/vscode" aria-current="page" id="contextregion-repositorycrumb-vscode-link" data-view-component="true" class="AppHeader-context-item">
434
- <span data-target="context-region-crumb.labelElement" class="AppHeader-context-item-label ">vscode</span>
435
-
436
- </a><tool-tip data-target="context-region-crumb.tooltip" for="contextregion-repositorycrumb-vscode-link" popover="manual" class="sr-only" position="absolute" data-type="label" data-direction="s" hidden="true" role="tooltip">
437
- vscode
438
- </tool-tip>
439
- <context-region-divider data-target="context-region-crumb.dividerElement" data-pre-rendered="" data-catalyst="">
440
- <span class="AppHeader-context-item-separator">
441
- <span class="sr-only">/</span>
442
- <svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
443
- <path d="M10.956 1.27994L6.06418 14.7201L5 14.7201L9.89181 1.27994L10.956 1.27994Z" fill="currentcolor"></path>
444
- </svg>
445
- </span>
446
- </context-region-divider>
447
-
448
-
449
-
450
- </context-region-crumb>
451
-
452
- </context-region>
453
-
454
- </nav>
455
- </div>
456
- </context-region-controller>
457
-
458
- </div>
459
- <div class="AppHeader-globalBar-end">
460
- <div class="AppHeader-search">
461
-
462
-
463
-
464
- <qbsearch-input class="search-input" data-scope="repo:microsoft/vscode" data-custom-scopes-path="/search/custom_scopes" data-delete-custom-scopes-csrf="BmzddCw1fBNdJ5aZht2J8VYy_l1VfyXl372wKDIoZ-MUfcUqWhF_jmxvzYjcjH5oYxg4YmmCePak-lZDrIqEVA" data-max-custom-scopes="10" data-header-redesign-enabled="true" data-initial-value="" data-blackbird-suggestions-path="/search/suggestions" data-jump-to-suggestions-path="/_graphql/GetSuggestedNavigationDestinations" data-current-repository="microsoft/vscode" data-current-org="microsoft" data-current-owner="" data-logged-in="true" data-copilot-chat-enabled="true" data-nl-search-enabled="false" data-catalyst="">
465
- <div class="search-input-container search-with-dialog position-relative d-flex flex-row flex-items-center height-auto color-bg-transparent border-0 color-fg-subtle mx-0" data-action="click:qbsearch-input#searchInputContainerClicked">
466
-
467
- <button type="button" data-action="click:qbsearch-input#handleExpand" class="AppHeader-button AppHeader-search-whenNarrow" aria-label="Search or jump to…" aria-expanded="false" aria-haspopup="dialog">
468
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-search">
469
- <path d="M10.68 11.74a6 6 0 0 1-7.922-8.982 6 6 0 0 1 8.982 7.922l3.04 3.04a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215ZM11.5 7a4.499 4.499 0 1 0-8.997 0A4.499 4.499 0 0 0 11.5 7Z"></path>
470
- </svg>
471
- </button>
472
-
473
-
474
- <div class="AppHeader-search-whenRegular">
475
- <div class="AppHeader-search-wrap AppHeader-search-wrap--hasTrailing">
476
- <div class="AppHeader-search-control AppHeader-search-control-overflow">
477
- <label for="AppHeader-searchInput" aria-label="Search or jump to…" class="AppHeader-search-visual--leading">
478
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-search">
479
- <path d="M10.68 11.74a6 6 0 0 1-7.922-8.982 6 6 0 0 1 8.982 7.922l3.04 3.04a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215ZM11.5 7a4.499 4.499 0 1 0-8.997 0A4.499 4.499 0 0 0 11.5 7Z"></path>
480
- </svg>
481
- </label>
482
-
483
- <button type="button" data-target="qbsearch-input.inputButton" data-action="click:qbsearch-input#handleExpand" class="AppHeader-searchButton form-control text-left color-fg-subtle no-wrap placeholder" data-hotkey="s,/" data-analytics-event="{&quot;location&quot;:&quot;navbar&quot;,&quot;action&quot;:&quot;searchbar&quot;,&quot;context&quot;:&quot;global&quot;,&quot;tag&quot;:&quot;input&quot;,&quot;label&quot;:&quot;searchbar_input_global_navbar&quot;}" aria-describedby="search-error-message-flash">
484
- <div class="overflow-hidden">
485
- <span id="qb-input-query" data-target="qbsearch-input.inputButtonText">
486
- Type <kbd class="AppHeader-search-kbd">/</kbd> to search
487
- </span>
488
- </div>
489
- </button>
490
-
491
- </div>
492
-
493
-
494
- </div>
495
- </div>
496
-
497
- <input type="hidden" name="type" class="js-site-search-type-field">
498
-
499
-
500
- <div class="Overlay--hidden " data-modal-dialog-overlay="">
501
- <modal-dialog data-action="close:qbsearch-input#handleClose cancel:qbsearch-input#handleClose" data-target="qbsearch-input.searchSuggestionsDialog" role="dialog" id="search-suggestions-dialog" aria-modal="true" aria-labelledby="search-suggestions-dialog-header" data-view-component="true" class="Overlay Overlay--width-medium Overlay--height-auto">
502
- <h1 id="search-suggestions-dialog-header" class="sr-only">Search code, repositories, users, issues, pull requests...</h1>
503
- <div class="Overlay-body Overlay-body--paddingNone">
504
-
505
- <div data-view-component="true"> <div class="search-suggestions position-absolute width-full color-shadow-large border color-fg-default color-bg-default overflow-hidden d-flex flex-column query-builder-container" style="border-radius: 12px;" data-target="qbsearch-input.queryBuilderContainer" hidden="">
506
- <!-- '"` --><!-- </textarea></xmp> --><form id="query-builder-test-form" action="" accept-charset="UTF-8" method="get">
507
- <query-builder data-target="qbsearch-input.queryBuilder" id="query-builder-query-builder-test" data-filter-key=":" data-view-component="true" class="QueryBuilder search-query-builder" data-min-width="300" data-catalyst="">
508
- <div class="FormControl FormControl--fullWidth">
509
- <label id="query-builder-test-label" for="query-builder-test" class="FormControl-label sr-only">
510
- Search
511
- </label>
512
- <div class="QueryBuilder-StyledInput width-fit " data-target="query-builder.styledInput">
513
- <span id="query-builder-test-leadingvisual-wrap" class="FormControl-input-leadingVisualWrap QueryBuilder-leadingVisualWrap">
514
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-search FormControl-input-leadingVisual">
515
- <path d="M10.68 11.74a6 6 0 0 1-7.922-8.982 6 6 0 0 1 8.982 7.922l3.04 3.04a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215ZM11.5 7a4.499 4.499 0 1 0-8.997 0A4.499 4.499 0 0 0 11.5 7Z"></path>
516
- </svg>
517
- </span>
518
- <div data-target="query-builder.styledInputContainer" class="QueryBuilder-StyledInputContainer">
519
- <div aria-hidden="true" class="QueryBuilder-StyledInputContent" data-target="query-builder.styledInputContent"></div>
520
- <div class="QueryBuilder-InputWrapper">
521
- <div aria-hidden="true" class="QueryBuilder-Sizer" data-target="query-builder.sizer"><span></span></div>
522
- <input id="query-builder-test" name="query-builder-test" value="" autocomplete="off" type="text" role="combobox" spellcheck="false" aria-expanded="false" aria-describedby="validation-567699bd-0bdd-4d2e-af25-07e05ed09af2" data-target="query-builder.input" data-action="
523
- input:query-builder#inputChange
524
- blur:query-builder#inputBlur
525
- keydown:query-builder#inputKeydown
526
- focus:query-builder#inputFocus
527
- " data-view-component="true" class="FormControl-input QueryBuilder-Input FormControl-medium" aria-controls="query-builder-test-results" aria-autocomplete="list" aria-haspopup="listbox" style="width: 300px;">
528
- </div>
529
- </div>
530
- <span class="sr-only" id="query-builder-test-clear">Clear</span>
531
- <button role="button" id="query-builder-test-clear-button" aria-labelledby="query-builder-test-clear query-builder-test-label" data-target="query-builder.clearButton" data-action="
532
- click:query-builder#clear
533
- focus:query-builder#clearButtonFocus
534
- blur:query-builder#clearButtonBlur
535
- " variant="small" hidden="" type="button" data-view-component="true" class="Button Button--iconOnly Button--invisible Button--medium mr-1 px-2 py-0 d-flex flex-items-center rounded-1 color-fg-muted"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-x-circle-fill Button-visual">
536
- <path d="M2.343 13.657A8 8 0 1 1 13.658 2.343 8 8 0 0 1 2.343 13.657ZM6.03 4.97a.751.751 0 0 0-1.042.018.751.751 0 0 0-.018 1.042L6.94 8 4.97 9.97a.749.749 0 0 0 .326 1.275.749.749 0 0 0 .734-.215L8 9.06l1.97 1.97a.749.749 0 0 0 1.275-.326.749.749 0 0 0-.215-.734L9.06 8l1.97-1.97a.749.749 0 0 0-.326-1.275.749.749 0 0 0-.734.215L8 6.94Z"></path>
537
- </svg>
538
- </button>
539
-
540
- </div>
541
- <template id="search-icon">
542
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-search">
543
- <path d="M10.68 11.74a6 6 0 0 1-7.922-8.982 6 6 0 0 1 8.982 7.922l3.04 3.04a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215ZM11.5 7a4.499 4.499 0 1 0-8.997 0A4.499 4.499 0 0 0 11.5 7Z"></path>
544
- </svg>
545
- </template>
546
-
547
- <template id="code-icon">
548
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-code">
549
- <path d="m11.28 3.22 4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734L13.94 8l-3.72-3.72a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215Zm-6.56 0a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042L2.06 8l3.72 3.72a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L.47 8.53a.75.75 0 0 1 0-1.06Z"></path>
550
- </svg>
551
- </template>
552
-
553
- <template id="file-code-icon">
554
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-file-code">
555
- <path d="M4 1.75C4 .784 4.784 0 5.75 0h5.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v8.586A1.75 1.75 0 0 1 14.25 15h-9a.75.75 0 0 1 0-1.5h9a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 10 4.25V1.5H5.75a.25.25 0 0 0-.25.25v2.5a.75.75 0 0 1-1.5 0Zm1.72 4.97a.75.75 0 0 1 1.06 0l2 2a.75.75 0 0 1 0 1.06l-2 2a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734l1.47-1.47-1.47-1.47a.75.75 0 0 1 0-1.06ZM3.28 7.78 1.81 9.25l1.47 1.47a.751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018l-2-2a.75.75 0 0 1 0-1.06l2-2a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Zm8.22-6.218V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path>
556
- </svg>
557
- </template>
558
-
559
- <template id="history-icon">
560
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-history">
561
- <path d="m.427 1.927 1.215 1.215a8.002 8.002 0 1 1-1.6 5.685.75.75 0 1 1 1.493-.154 6.5 6.5 0 1 0 1.18-4.458l1.358 1.358A.25.25 0 0 1 3.896 6H.25A.25.25 0 0 1 0 5.75V2.104a.25.25 0 0 1 .427-.177ZM7.75 4a.75.75 0 0 1 .75.75v2.992l2.028.812a.75.75 0 0 1-.557 1.392l-2.5-1A.751.751 0 0 1 7 8.25v-3.5A.75.75 0 0 1 7.75 4Z"></path>
562
- </svg>
563
- </template>
564
-
565
- <template id="repo-icon">
566
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-repo">
567
- <path d="M2 2.5A2.5 2.5 0 0 1 4.5 0h8.75a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h1.75v-2h-8a1 1 0 0 0-.714 1.7.75.75 0 1 1-1.072 1.05A2.495 2.495 0 0 1 2 11.5Zm10.5-1h-8a1 1 0 0 0-1 1v6.708A2.486 2.486 0 0 1 4.5 9h8ZM5 12.25a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.25a.25.25 0 0 1-.4.2l-1.45-1.087a.249.249 0 0 0-.3 0L5.4 15.7a.25.25 0 0 1-.4-.2Z"></path>
568
- </svg>
569
- </template>
570
-
571
- <template id="bookmark-icon">
572
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-bookmark">
573
- <path d="M3 2.75C3 1.784 3.784 1 4.75 1h6.5c.966 0 1.75.784 1.75 1.75v11.5a.75.75 0 0 1-1.227.579L8 11.722l-3.773 3.107A.751.751 0 0 1 3 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.91l3.023-2.489a.75.75 0 0 1 .954 0l3.023 2.49V2.75a.25.25 0 0 0-.25-.25Z"></path>
574
- </svg>
575
- </template>
576
-
577
- <template id="plus-circle-icon">
578
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-plus-circle">
579
- <path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Zm7.25-3.25v2.5h2.5a.75.75 0 0 1 0 1.5h-2.5v2.5a.75.75 0 0 1-1.5 0v-2.5h-2.5a.75.75 0 0 1 0-1.5h2.5v-2.5a.75.75 0 0 1 1.5 0Z"></path>
580
- </svg>
581
- </template>
582
-
583
- <template id="circle-icon">
584
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-dot-fill">
585
- <path d="M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z"></path>
586
- </svg>
587
- </template>
588
-
589
- <template id="trash-icon">
590
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-trash">
591
- <path d="M11 1.75V3h2.25a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5H5V1.75C5 .784 5.784 0 6.75 0h2.5C10.216 0 11 .784 11 1.75ZM4.496 6.675l.66 6.6a.25.25 0 0 0 .249.225h5.19a.25.25 0 0 0 .249-.225l.66-6.6a.75.75 0 0 1 1.492.149l-.66 6.6A1.748 1.748 0 0 1 10.595 15h-5.19a1.75 1.75 0 0 1-1.741-1.575l-.66-6.6a.75.75 0 1 1 1.492-.15ZM6.5 1.75V3h3V1.75a.25.25 0 0 0-.25-.25h-2.5a.25.25 0 0 0-.25.25Z"></path>
592
- </svg>
593
- </template>
594
-
595
- <template id="team-icon">
596
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-people">
597
- <path d="M2 5.5a3.5 3.5 0 1 1 5.898 2.549 5.508 5.508 0 0 1 3.034 4.084.75.75 0 1 1-1.482.235 4 4 0 0 0-7.9 0 .75.75 0 0 1-1.482-.236A5.507 5.507 0 0 1 3.102 8.05 3.493 3.493 0 0 1 2 5.5ZM11 4a3.001 3.001 0 0 1 2.22 5.018 5.01 5.01 0 0 1 2.56 3.012.749.749 0 0 1-.885.954.752.752 0 0 1-.549-.514 3.507 3.507 0 0 0-2.522-2.372.75.75 0 0 1-.574-.73v-.352a.75.75 0 0 1 .416-.672A1.5 1.5 0 0 0 11 5.5.75.75 0 0 1 11 4Zm-5.5-.5a2 2 0 1 0-.001 3.999A2 2 0 0 0 5.5 3.5Z"></path>
598
- </svg>
599
- </template>
600
-
601
- <template id="project-icon">
602
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-project">
603
- <path d="M1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25V1.75C0 .784.784 0 1.75 0ZM1.5 1.75v12.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25ZM11.75 3a.75.75 0 0 1 .75.75v7.5a.75.75 0 0 1-1.5 0v-7.5a.75.75 0 0 1 .75-.75Zm-8.25.75a.75.75 0 0 1 1.5 0v5.5a.75.75 0 0 1-1.5 0ZM8 3a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 8 3Z"></path>
604
- </svg>
605
- </template>
606
-
607
- <template id="pencil-icon">
608
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-pencil">
609
- <path d="M11.013 1.427a1.75 1.75 0 0 1 2.474 0l1.086 1.086a1.75 1.75 0 0 1 0 2.474l-8.61 8.61c-.21.21-.47.364-.756.445l-3.251.93a.75.75 0 0 1-.927-.928l.929-3.25c.081-.286.235-.547.445-.758l8.61-8.61Zm.176 4.823L9.75 4.81l-6.286 6.287a.253.253 0 0 0-.064.108l-.558 1.953 1.953-.558a.253.253 0 0 0 .108-.064Zm1.238-3.763a.25.25 0 0 0-.354 0L10.811 3.75l1.439 1.44 1.263-1.263a.25.25 0 0 0 0-.354Z"></path>
610
- </svg>
611
- </template>
612
-
613
- <template id="copilot-icon">
614
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-copilot">
615
- <path d="M7.998 15.035c-4.562 0-7.873-2.914-7.998-3.749V9.338c.085-.628.677-1.686 1.588-2.065.013-.07.024-.143.036-.218.029-.183.06-.384.126-.612-.201-.508-.254-1.084-.254-1.656 0-.87.128-1.769.693-2.484.579-.733 1.494-1.124 2.724-1.261 1.206-.134 2.262.034 2.944.765.05.053.096.108.139.165.044-.057.094-.112.143-.165.682-.731 1.738-.899 2.944-.765 1.23.137 2.145.528 2.724 1.261.566.715.693 1.614.693 2.484 0 .572-.053 1.148-.254 1.656.066.228.098.429.126.612.012.076.024.148.037.218.924.385 1.522 1.471 1.591 2.095v1.872c0 .766-3.351 3.795-8.002 3.795Zm0-1.485c2.28 0 4.584-1.11 5.002-1.433V7.862l-.023-.116c-.49.21-1.075.291-1.727.291-1.146 0-2.059-.327-2.71-.991A3.222 3.222 0 0 1 8 6.303a3.24 3.24 0 0 1-.544.743c-.65.664-1.563.991-2.71.991-.652 0-1.236-.081-1.727-.291l-.023.116v4.255c.419.323 2.722 1.433 5.002 1.433ZM6.762 2.83c-.193-.206-.637-.413-1.682-.297-1.019.113-1.479.404-1.713.7-.247.312-.369.789-.369 1.554 0 .793.129 1.171.308 1.371.162.181.519.379 1.442.379.853 0 1.339-.235 1.638-.54.315-.322.527-.827.617-1.553.117-.935-.037-1.395-.241-1.614Zm4.155-.297c-1.044-.116-1.488.091-1.681.297-.204.219-.359.679-.242 1.614.091.726.303 1.231.618 1.553.299.305.784.54 1.638.54.922 0 1.28-.198 1.442-.379.179-.2.308-.578.308-1.371 0-.765-.123-1.242-.37-1.554-.233-.296-.693-.587-1.713-.7Z"></path><path d="M6.25 9.037a.75.75 0 0 1 .75.75v1.501a.75.75 0 0 1-1.5 0V9.787a.75.75 0 0 1 .75-.75Zm4.25.75v1.501a.75.75 0 0 1-1.5 0V9.787a.75.75 0 0 1 1.5 0Z"></path>
616
- </svg>
617
- </template>
618
-
619
- <template id="copilot-error-icon">
620
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-copilot-error">
621
- <path d="M16 11.24c0 .112-.072.274-.21.467L13 9.688V7.862l-.023-.116c-.49.21-1.075.291-1.727.291-.198 0-.388-.009-.571-.029L6.833 5.226a4.01 4.01 0 0 0 .17-.782c.117-.935-.037-1.395-.241-1.614-.193-.206-.637-.413-1.682-.297-.683.076-1.115.231-1.395.415l-1.257-.91c.579-.564 1.413-.877 2.485-.996 1.206-.134 2.262.034 2.944.765.05.053.096.108.139.165.044-.057.094-.112.143-.165.682-.731 1.738-.899 2.944-.765 1.23.137 2.145.528 2.724 1.261.566.715.693 1.614.693 2.484 0 .572-.053 1.148-.254 1.656.066.228.098.429.126.612.012.076.024.148.037.218.924.385 1.522 1.471 1.591 2.095Zm-5.083-8.707c-1.044-.116-1.488.091-1.681.297-.204.219-.359.679-.242 1.614.091.726.303 1.231.618 1.553.299.305.784.54 1.638.54.922 0 1.28-.198 1.442-.379.179-.2.308-.578.308-1.371 0-.765-.123-1.242-.37-1.554-.233-.296-.693-.587-1.713-.7Zm2.511 11.074c-1.393.776-3.272 1.428-5.43 1.428-4.562 0-7.873-2.914-7.998-3.749V9.338c.085-.628.677-1.686 1.588-2.065.013-.07.024-.143.036-.218.029-.183.06-.384.126-.612-.18-.455-.241-.963-.252-1.475L.31 4.107A.747.747 0 0 1 0 3.509V3.49a.748.748 0 0 1 .625-.73c.156-.026.306.047.435.139l14.667 10.578a.592.592 0 0 1 .227.264.752.752 0 0 1 .046.249v.022a.75.75 0 0 1-1.19.596Zm-1.367-.991L5.635 7.964a5.128 5.128 0 0 1-.889.073c-.652 0-1.236-.081-1.727-.291l-.023.116v4.255c.419.323 2.722 1.433 5.002 1.433 1.539 0 3.089-.505 4.063-.934Z"></path>
622
- </svg>
623
- </template>
624
-
625
- <template id="workflow-icon">
626
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-workflow">
627
- <path d="M0 1.75C0 .784.784 0 1.75 0h3.5C6.216 0 7 .784 7 1.75v3.5A1.75 1.75 0 0 1 5.25 7H4v4a1 1 0 0 0 1 1h4v-1.25C9 9.784 9.784 9 10.75 9h3.5c.966 0 1.75.784 1.75 1.75v3.5A1.75 1.75 0 0 1 14.25 16h-3.5A1.75 1.75 0 0 1 9 14.25v-.75H5A2.5 2.5 0 0 1 2.5 11V7h-.75A1.75 1.75 0 0 1 0 5.25Zm1.75-.25a.25.25 0 0 0-.25.25v3.5c0 .138.112.25.25.25h3.5a.25.25 0 0 0 .25-.25v-3.5a.25.25 0 0 0-.25-.25Zm9 9a.25.25 0 0 0-.25.25v3.5c0 .138.112.25.25.25h3.5a.25.25 0 0 0 .25-.25v-3.5a.25.25 0 0 0-.25-.25Z"></path>
628
- </svg>
629
- </template>
630
-
631
- <template id="book-icon">
632
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-book">
633
- <path d="M0 1.75A.75.75 0 0 1 .75 1h4.253c1.227 0 2.317.59 3 1.501A3.743 3.743 0 0 1 11.006 1h4.245a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-.75.75h-4.507a2.25 2.25 0 0 0-1.591.659l-.622.621a.75.75 0 0 1-1.06 0l-.622-.621A2.25 2.25 0 0 0 5.258 13H.75a.75.75 0 0 1-.75-.75Zm7.251 10.324.004-5.073-.002-2.253A2.25 2.25 0 0 0 5.003 2.5H1.5v9h3.757a3.75 3.75 0 0 1 1.994.574ZM8.755 4.75l-.004 7.322a3.752 3.752 0 0 1 1.992-.572H14.5v-9h-3.495a2.25 2.25 0 0 0-2.25 2.25Z"></path>
634
- </svg>
635
- </template>
636
-
637
- <template id="code-review-icon">
638
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-code-review">
639
- <path d="M1.75 1h12.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 13H8.061l-2.574 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25v-8.5C0 1.784.784 1 1.75 1ZM1.5 2.75v8.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25Zm5.28 1.72a.75.75 0 0 1 0 1.06L5.31 7l1.47 1.47a.751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018l-2-2a.75.75 0 0 1 0-1.06l2-2a.75.75 0 0 1 1.06 0Zm2.44 0a.75.75 0 0 1 1.06 0l2 2a.75.75 0 0 1 0 1.06l-2 2a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L10.69 7 9.22 5.53a.75.75 0 0 1 0-1.06Z"></path>
640
- </svg>
641
- </template>
642
-
643
- <template id="codespaces-icon">
644
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-codespaces">
645
- <path d="M0 11.25c0-.966.784-1.75 1.75-1.75h12.5c.966 0 1.75.784 1.75 1.75v3A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25Zm2-9.5C2 .784 2.784 0 3.75 0h8.5C13.216 0 14 .784 14 1.75v5a1.75 1.75 0 0 1-1.75 1.75h-8.5A1.75 1.75 0 0 1 2 6.75Zm1.75-.25a.25.25 0 0 0-.25.25v5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-5a.25.25 0 0 0-.25-.25Zm-2 9.5a.25.25 0 0 0-.25.25v3c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-3a.25.25 0 0 0-.25-.25Z"></path><path d="M7 12.75a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Zm-4 0a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75Z"></path>
646
- </svg>
647
- </template>
648
-
649
- <template id="comment-icon">
650
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-comment">
651
- <path d="M1 2.75C1 1.784 1.784 1 2.75 1h10.5c.966 0 1.75.784 1.75 1.75v7.5A1.75 1.75 0 0 1 13.25 12H9.06l-2.573 2.573A1.458 1.458 0 0 1 4 13.543V12H2.75A1.75 1.75 0 0 1 1 10.25Zm1.75-.25a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h4.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25Z"></path>
652
- </svg>
653
- </template>
654
-
655
- <template id="comment-discussion-icon">
656
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-comment-discussion">
657
- <path d="M1.75 1h8.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 10.25 10H7.061l-2.574 2.573A1.458 1.458 0 0 1 2 11.543V10h-.25A1.75 1.75 0 0 1 0 8.25v-5.5C0 1.784.784 1 1.75 1ZM1.5 2.75v5.5c0 .138.112.25.25.25h1a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h3.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25Zm13 2a.25.25 0 0 0-.25-.25h-.5a.75.75 0 0 1 0-1.5h.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 14.25 12H14v1.543a1.458 1.458 0 0 1-2.487 1.03L9.22 12.28a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215l2.22 2.22v-2.19a.75.75 0 0 1 .75-.75h1a.25.25 0 0 0 .25-.25Z"></path>
658
- </svg>
659
- </template>
660
-
661
- <template id="organization-icon">
662
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-organization">
663
- <path d="M1.75 16A1.75 1.75 0 0 1 0 14.25V1.75C0 .784.784 0 1.75 0h8.5C11.216 0 12 .784 12 1.75v12.5c0 .085-.006.168-.018.25h2.268a.25.25 0 0 0 .25-.25V8.285a.25.25 0 0 0-.111-.208l-1.055-.703a.749.749 0 1 1 .832-1.248l1.055.703c.487.325.779.871.779 1.456v5.965A1.75 1.75 0 0 1 14.25 16h-3.5a.766.766 0 0 1-.197-.026c-.099.017-.2.026-.303.026h-3a.75.75 0 0 1-.75-.75V14h-1v1.25a.75.75 0 0 1-.75.75Zm-.25-1.75c0 .138.112.25.25.25H4v-1.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 .75.75v1.25h2.25a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25ZM3.75 6h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5ZM3 3.75A.75.75 0 0 1 3.75 3h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 3 3.75Zm4 3A.75.75 0 0 1 7.75 6h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 7 6.75ZM7.75 3h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5ZM3 9.75A.75.75 0 0 1 3.75 9h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 3 9.75ZM7.75 9h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5Z"></path>
664
- </svg>
665
- </template>
666
-
667
- <template id="rocket-icon">
668
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-rocket">
669
- <path d="M14.064 0h.186C15.216 0 16 .784 16 1.75v.186a8.752 8.752 0 0 1-2.564 6.186l-.458.459c-.314.314-.641.616-.979.904v3.207c0 .608-.315 1.172-.833 1.49l-2.774 1.707a.749.749 0 0 1-1.11-.418l-.954-3.102a1.214 1.214 0 0 1-.145-.125L3.754 9.816a1.218 1.218 0 0 1-.124-.145L.528 8.717a.749.749 0 0 1-.418-1.11l1.71-2.774A1.748 1.748 0 0 1 3.31 4h3.204c.288-.338.59-.665.904-.979l.459-.458A8.749 8.749 0 0 1 14.064 0ZM8.938 3.623h-.002l-.458.458c-.76.76-1.437 1.598-2.02 2.5l-1.5 2.317 2.143 2.143 2.317-1.5c.902-.583 1.74-1.26 2.499-2.02l.459-.458a7.25 7.25 0 0 0 2.123-5.127V1.75a.25.25 0 0 0-.25-.25h-.186a7.249 7.249 0 0 0-5.125 2.123ZM3.56 14.56c-.732.732-2.334 1.045-3.005 1.148a.234.234 0 0 1-.201-.064.234.234 0 0 1-.064-.201c.103-.671.416-2.273 1.15-3.003a1.502 1.502 0 1 1 2.12 2.12Zm6.94-3.935c-.088.06-.177.118-.266.175l-2.35 1.521.548 1.783 1.949-1.2a.25.25 0 0 0 .119-.213ZM3.678 8.116 5.2 5.766c.058-.09.117-.178.176-.266H3.309a.25.25 0 0 0-.213.119l-1.2 1.95ZM12 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path>
670
- </svg>
671
- </template>
672
-
673
- <template id="shield-check-icon">
674
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-shield-check">
675
- <path d="m8.533.133 5.25 1.68A1.75 1.75 0 0 1 15 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.697 1.697 0 0 1-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 0 1 1.217-1.667l5.25-1.68a1.748 1.748 0 0 1 1.066 0Zm-.61 1.429.001.001-5.25 1.68a.251.251 0 0 0-.174.237V7c0 1.36.275 2.666 1.057 3.859.784 1.194 2.121 2.342 4.366 3.298a.196.196 0 0 0 .154 0c2.245-.957 3.582-2.103 4.366-3.297C13.225 9.666 13.5 8.358 13.5 7V3.48a.25.25 0 0 0-.174-.238l-5.25-1.68a.25.25 0 0 0-.153 0ZM11.28 6.28l-3.5 3.5a.75.75 0 0 1-1.06 0l-1.5-1.5a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215l.97.97 2.97-2.97a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Z"></path>
676
- </svg>
677
- </template>
678
-
679
- <template id="heart-icon">
680
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-heart">
681
- <path d="m8 14.25.345.666a.75.75 0 0 1-.69 0l-.008-.004-.018-.01a7.152 7.152 0 0 1-.31-.17 22.055 22.055 0 0 1-3.434-2.414C2.045 10.731 0 8.35 0 5.5 0 2.836 2.086 1 4.25 1 5.797 1 7.153 1.802 8 3.02 8.847 1.802 10.203 1 11.75 1 13.914 1 16 2.836 16 5.5c0 2.85-2.045 5.231-3.885 6.818a22.066 22.066 0 0 1-3.744 2.584l-.018.01-.006.003h-.002ZM4.25 2.5c-1.336 0-2.75 1.164-2.75 3 0 2.15 1.58 4.144 3.365 5.682A20.58 20.58 0 0 0 8 13.393a20.58 20.58 0 0 0 3.135-2.211C12.92 9.644 14.5 7.65 14.5 5.5c0-1.836-1.414-3-2.75-3-1.373 0-2.609.986-3.029 2.456a.749.749 0 0 1-1.442 0C6.859 3.486 5.623 2.5 4.25 2.5Z"></path>
682
- </svg>
683
- </template>
684
-
685
- <template id="server-icon">
686
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-server">
687
- <path d="M1.75 1h12.5c.966 0 1.75.784 1.75 1.75v4c0 .372-.116.717-.314 1 .198.283.314.628.314 1v4a1.75 1.75 0 0 1-1.75 1.75H1.75A1.75 1.75 0 0 1 0 12.75v-4c0-.358.109-.707.314-1a1.739 1.739 0 0 1-.314-1v-4C0 1.784.784 1 1.75 1ZM1.5 2.75v4c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-4a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25Zm.25 5.75a.25.25 0 0 0-.25.25v4c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-4a.25.25 0 0 0-.25-.25ZM7 4.75A.75.75 0 0 1 7.75 4h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 7 4.75ZM7.75 10h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5ZM3 4.75A.75.75 0 0 1 3.75 4h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 3 4.75ZM3.75 10h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5Z"></path>
688
- </svg>
689
- </template>
690
-
691
- <template id="globe-icon">
692
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-globe">
693
- <path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM5.78 8.75a9.64 9.64 0 0 0 1.363 4.177c.255.426.542.832.857 1.215.245-.296.551-.705.857-1.215A9.64 9.64 0 0 0 10.22 8.75Zm4.44-1.5a9.64 9.64 0 0 0-1.363-4.177c-.307-.51-.612-.919-.857-1.215a9.927 9.927 0 0 0-.857 1.215A9.64 9.64 0 0 0 5.78 7.25Zm-5.944 1.5H1.543a6.507 6.507 0 0 0 4.666 5.5c-.123-.181-.24-.365-.352-.552-.715-1.192-1.437-2.874-1.581-4.948Zm-2.733-1.5h2.733c.144-2.074.866-3.756 1.58-4.948.12-.197.237-.381.353-.552a6.507 6.507 0 0 0-4.666 5.5Zm10.181 1.5c-.144 2.074-.866 3.756-1.58 4.948-.12.197-.237.381-.353.552a6.507 6.507 0 0 0 4.666-5.5Zm2.733-1.5a6.507 6.507 0 0 0-4.666-5.5c.123.181.24.365.353.552.714 1.192 1.436 2.874 1.58 4.948Z"></path>
694
- </svg>
695
- </template>
696
-
697
- <template id="issue-opened-icon">
698
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-issue-opened">
699
- <path d="M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"></path><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Z"></path>
700
- </svg>
701
- </template>
702
-
703
- <template id="device-mobile-icon">
704
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-device-mobile">
705
- <path d="M3.75 0h8.5C13.216 0 14 .784 14 1.75v12.5A1.75 1.75 0 0 1 12.25 16h-8.5A1.75 1.75 0 0 1 2 14.25V1.75C2 .784 2.784 0 3.75 0ZM3.5 1.75v12.5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25ZM8 13a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"></path>
706
- </svg>
707
- </template>
708
-
709
- <template id="package-icon">
710
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-package">
711
- <path d="m8.878.392 5.25 3.045c.54.314.872.89.872 1.514v6.098a1.75 1.75 0 0 1-.872 1.514l-5.25 3.045a1.75 1.75 0 0 1-1.756 0l-5.25-3.045A1.75 1.75 0 0 1 1 11.049V4.951c0-.624.332-1.201.872-1.514L7.122.392a1.75 1.75 0 0 1 1.756 0ZM7.875 1.69l-4.63 2.685L8 7.133l4.755-2.758-4.63-2.685a.248.248 0 0 0-.25 0ZM2.5 5.677v5.372c0 .09.047.171.125.216l4.625 2.683V8.432Zm6.25 8.271 4.625-2.683a.25.25 0 0 0 .125-.216V5.677L8.75 8.432Z"></path>
712
- </svg>
713
- </template>
714
-
715
- <template id="credit-card-icon">
716
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-credit-card">
717
- <path d="M10.75 9a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5Z"></path><path d="M0 3.75C0 2.784.784 2 1.75 2h12.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25ZM14.5 6.5h-13v5.75c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25Zm0-2.75a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25V5h13Z"></path>
718
- </svg>
719
- </template>
720
-
721
- <template id="play-icon">
722
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-play">
723
- <path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Zm4.879-2.773 4.264 2.559a.25.25 0 0 1 0 .428l-4.264 2.559A.25.25 0 0 1 6 10.559V5.442a.25.25 0 0 1 .379-.215Z"></path>
724
- </svg>
725
- </template>
726
-
727
- <template id="gift-icon">
728
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-gift">
729
- <path d="M2 2.75A2.75 2.75 0 0 1 4.75 0c.983 0 1.873.42 2.57 1.232.268.318.497.668.68 1.042.183-.375.411-.725.68-1.044C9.376.42 10.266 0 11.25 0a2.75 2.75 0 0 1 2.45 4h.55c.966 0 1.75.784 1.75 1.75v2c0 .698-.409 1.301-1 1.582v4.918A1.75 1.75 0 0 1 13.25 16H2.75A1.75 1.75 0 0 1 1 14.25V9.332C.409 9.05 0 8.448 0 7.75v-2C0 4.784.784 4 1.75 4h.55c-.192-.375-.3-.8-.3-1.25ZM7.25 9.5H2.5v4.75c0 .138.112.25.25.25h4.5Zm1.5 0v5h4.5a.25.25 0 0 0 .25-.25V9.5Zm0-4V8h5.5a.25.25 0 0 0 .25-.25v-2a.25.25 0 0 0-.25-.25Zm-7 0a.25.25 0 0 0-.25.25v2c0 .138.112.25.25.25h5.5V5.5h-5.5Zm3-4a1.25 1.25 0 0 0 0 2.5h2.309c-.233-.818-.542-1.401-.878-1.793-.43-.502-.915-.707-1.431-.707ZM8.941 4h2.309a1.25 1.25 0 0 0 0-2.5c-.516 0-1 .205-1.43.707-.337.392-.646.975-.879 1.793Z"></path>
730
- </svg>
731
- </template>
732
-
733
- <template id="code-square-icon">
734
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-code-square">
735
- <path d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25Zm7.47 3.97a.75.75 0 0 1 1.06 0l2 2a.75.75 0 0 1 0 1.06l-2 2a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734L10.69 8 9.22 6.53a.75.75 0 0 1 0-1.06ZM6.78 6.53 5.31 8l1.47 1.47a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215l-2-2a.75.75 0 0 1 0-1.06l2-2a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Z"></path>
736
- </svg>
737
- </template>
738
-
739
- <template id="device-desktop-icon">
740
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-device-desktop">
741
- <path d="M14.25 1c.966 0 1.75.784 1.75 1.75v7.5A1.75 1.75 0 0 1 14.25 12h-3.727c.099 1.041.52 1.872 1.292 2.757A.752.752 0 0 1 11.25 16h-6.5a.75.75 0 0 1-.565-1.243c.772-.885 1.192-1.716 1.292-2.757H1.75A1.75 1.75 0 0 1 0 10.25v-7.5C0 1.784.784 1 1.75 1ZM1.75 2.5a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25ZM9.018 12H6.982a5.72 5.72 0 0 1-.765 2.5h3.566a5.72 5.72 0 0 1-.765-2.5Z"></path>
742
- </svg>
743
- </template>
744
-
745
- <div class="position-relative">
746
- <ul role="listbox" class="ActionListWrap QueryBuilder-ListWrap" aria-label="Suggestions" data-action="
747
- combobox-commit:query-builder#comboboxCommit
748
- mousedown:query-builder#resultsMousedown
749
- " data-target="query-builder.resultsList" data-persist-list="false" id="query-builder-test-results" tabindex="-1"></ul>
750
- </div>
751
- <div class="FormControl-inlineValidation" id="validation-567699bd-0bdd-4d2e-af25-07e05ed09af2" hidden="hidden">
752
- <span class="FormControl-inlineValidation--visual">
753
- <svg aria-hidden="true" height="12" viewBox="0 0 12 12" version="1.1" width="12" data-view-component="true" class="octicon octicon-alert-fill">
754
- <path d="M4.855.708c.5-.896 1.79-.896 2.29 0l4.675 8.351a1.312 1.312 0 0 1-1.146 1.954H1.33A1.313 1.313 0 0 1 .183 9.058ZM7 7V3H5v4Zm-1 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"></path>
755
- </svg>
756
- </span>
757
- <span></span>
758
- </div> </div>
759
- <div data-target="query-builder.screenReaderFeedback" aria-live="polite" aria-atomic="true" class="sr-only">0 suggestions.</div>
760
- </query-builder></form>
761
- <div class="d-flex flex-row color-fg-muted px-3 text-small color-bg-default search-feedback-prompt">
762
- <a target="_blank" href="https://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax" data-view-component="true" class="Link color-fg-accent text-normal ml-2">Search syntax tips</a> <div class="d-flex flex-1"></div>
763
- <button data-action="click:qbsearch-input#showFeedbackDialog" type="button" data-view-component="true" class="Button--link Button--medium Button color-fg-accent text-normal ml-2"> <span class="Button-content">
764
- <span class="Button-label">Give feedback</span>
765
- </span>
766
- </button>
767
- </div>
768
- </div>
769
- </div>
770
-
771
- </div>
772
- </modal-dialog></div>
773
- </div>
774
- <div data-action="click:qbsearch-input#retract" class="dark-backdrop position-fixed" hidden="" data-target="qbsearch-input.darkBackdrop"></div>
775
- <div class="color-fg-default">
776
-
777
- <dialog-helper>
778
- <dialog data-target="qbsearch-input.feedbackDialog" data-action="close:qbsearch-input#handleDialogClose cancel:qbsearch-input#handleDialogClose" id="feedback-dialog" aria-modal="true" aria-labelledby="feedback-dialog-title" aria-describedby="feedback-dialog-description" data-view-component="true" class="Overlay Overlay-whenNarrow Overlay--size-medium Overlay--motion-scaleFade Overlay--disableScroll">
779
- <div data-view-component="true" class="Overlay-header">
780
- <div class="Overlay-headerContentWrap">
781
- <div class="Overlay-titleWrap">
782
- <h1 class="Overlay-title " id="feedback-dialog-title">
783
- Provide feedback
784
- </h1>
785
-
786
- </div>
787
- <div class="Overlay-actionWrap">
788
- <button data-close-dialog-id="feedback-dialog" aria-label="Close" type="button" data-view-component="true" class="close-button Overlay-closeButton"><svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-x">
789
- <path d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 8l3.22 3.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 9.06l-3.22 3.22a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06Z"></path>
790
- </svg></button>
791
- </div>
792
- </div>
793
-
794
- </div>
795
- <scrollable-region data-labelled-by="feedback-dialog-title" data-catalyst="" style="overflow: auto;">
796
- <div data-view-component="true" class="Overlay-body"> <!-- '"` --><!-- </textarea></xmp> --><form id="code-search-feedback-form" data-turbo="false" action="/search/feedback" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="YOGmk8G2FxoMJjM-9DyDZ_nR4G7RFFifrywy00OZZHHMw8eTR8TXA1nh1drQBQMEJuckwUK67xKNJmTUYhhRfw">
797
- <p>We read every piece of feedback, and take your input very seriously.</p>
798
- <textarea name="feedback" class="form-control width-full mb-2" style="height: 120px" id="feedback"></textarea>
799
- <input name="include_email" id="include_email" aria-label="Include my email address so I can be contacted" class="form-control mr-2" type="checkbox">
800
- <label for="include_email" style="font-weight: normal">Include my email address so I can be contacted</label>
801
- </form></div>
802
- </scrollable-region>
803
- <div data-view-component="true" class="Overlay-footer Overlay-footer--alignEnd"> <button data-close-dialog-id="feedback-dialog" type="button" data-view-component="true" class="btn"> Cancel
804
- </button>
805
- <button form="code-search-feedback-form" data-action="click:qbsearch-input#submitFeedback" type="submit" data-view-component="true" class="btn-primary btn"> Submit feedback
806
- </button>
807
- </div>
808
- </dialog></dialog-helper>
809
-
810
- <custom-scopes data-target="qbsearch-input.customScopesManager" data-catalyst="">
811
-
812
- <dialog-helper>
813
- <dialog data-target="custom-scopes.customScopesModalDialog" data-action="close:qbsearch-input#handleDialogClose cancel:qbsearch-input#handleDialogClose" id="custom-scopes-dialog" aria-modal="true" aria-labelledby="custom-scopes-dialog-title" aria-describedby="custom-scopes-dialog-description" data-view-component="true" class="Overlay Overlay-whenNarrow Overlay--size-medium Overlay--motion-scaleFade Overlay--disableScroll">
814
- <div data-view-component="true" class="Overlay-header Overlay-header--divided">
815
- <div class="Overlay-headerContentWrap">
816
- <div class="Overlay-titleWrap">
817
- <h1 class="Overlay-title " id="custom-scopes-dialog-title">
818
- Saved searches
819
- </h1>
820
- <h2 id="custom-scopes-dialog-description" class="Overlay-description">Use saved searches to filter your results more quickly</h2>
821
- </div>
822
- <div class="Overlay-actionWrap">
823
- <button data-close-dialog-id="custom-scopes-dialog" aria-label="Close" type="button" data-view-component="true" class="close-button Overlay-closeButton"><svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-x">
824
- <path d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 8l3.22 3.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 9.06l-3.22 3.22a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06Z"></path>
825
- </svg></button>
826
- </div>
827
- </div>
828
-
829
- </div>
830
- <scrollable-region data-labelled-by="custom-scopes-dialog-title" data-catalyst="" style="overflow: auto;">
831
- <div data-view-component="true" class="Overlay-body"> <div data-target="custom-scopes.customScopesModalDialogFlash"></div>
832
-
833
- <div hidden="" class="create-custom-scope-form" data-target="custom-scopes.createCustomScopeForm">
834
- <!-- '"` --><!-- </textarea></xmp> --><form id="custom-scopes-dialog-form" data-turbo="false" action="/search/custom_scopes" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="AbgdWxw9ovyAmBTUgVNnCEzW7SnuFK1PmCiJMI9e_nxsRXyDle4XxwS5MmPbBLd-cW_9or68v_DJC4kKnsEpEA">
835
- <div data-target="custom-scopes.customScopesModalDialogFlash"></div>
836
-
837
- <input type="hidden" id="custom_scope_id" name="custom_scope_id" data-target="custom-scopes.customScopesIdField">
838
-
839
- <div class="form-group">
840
- <label for="custom_scope_name">Name</label>
841
- <auto-check src="/search/custom_scopes/check_name" required="">
842
- <input type="text" name="custom_scope_name" id="custom_scope_name" data-target="custom-scopes.customScopesNameField" class="form-control" autocomplete="off" placeholder="github-ruby" required="" maxlength="50" spellcheck="false">
843
- <input type="hidden" value="Q7arM46faohxtCE1S4U-kFhxVAiB0hq5zshRiOx1T-9qTS6XFP597dy2kEBJGhrmtHMYD3_Z0bDuJZL8rjAPCw" data-csrf="true">
844
- </auto-check>
845
- </div>
846
-
847
- <div class="form-group">
848
- <label for="custom_scope_query">Query</label>
849
- <input type="text" name="custom_scope_query" id="custom_scope_query" data-target="custom-scopes.customScopesQueryField" class="form-control" autocomplete="off" placeholder="(repo:mona/a OR repo:mona/b) AND lang:python" required="" maxlength="500">
850
- </div>
851
-
852
- <p class="text-small color-fg-muted">
853
- To see all available qualifiers, see our <a class="Link--inTextBlock" href="https://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax">documentation</a>.
854
- </p>
855
- </form> </div>
856
-
857
- <div data-target="custom-scopes.manageCustomScopesForm">
858
- <div data-target="custom-scopes.list"></div>
859
- </div>
860
-
861
- </div>
862
- </scrollable-region>
863
- <div data-view-component="true" class="Overlay-footer Overlay-footer--alignEnd Overlay-footer--divided"> <button data-action="click:custom-scopes#customScopesCancel" type="button" data-view-component="true" class="btn"> Cancel
864
- </button>
865
- <button form="custom-scopes-dialog-form" data-action="click:custom-scopes#customScopesSubmit" data-target="custom-scopes.customScopesSubmitButton" type="submit" data-view-component="true" class="btn-primary btn"> Create saved search
866
- </button>
867
- </div>
868
- </dialog></dialog-helper>
869
- </custom-scopes>
870
- </div>
871
- </qbsearch-input> <input type="hidden" value="ksNZRTDROlNNpSiUENPW2oZuWLOW35zVYWzxUTft6vaSKxI4U6ExB423mSrOSkEMZnuR5yRhbQ1OVb8FrylIzQ" data-csrf="true" class="js-data-jump-to-suggestions-path-csrf">
872
-
873
-
874
- </div>
875
-
876
-
877
- <div class="AppHeader-CopilotChat hide-sm hide-md">
878
- <div class="d-flex">
879
- <react-partial-anchor data-catalyst="">
880
- <a href="/copilot" data-target="react-partial-anchor.anchor" id="copilot-chat-header-button" aria-labelledby="tooltip-ec0b1b1c-ac6f-48f8-aab7-5567b2bbf95c" data-view-component="true" class="Button Button--iconOnly Button--secondary Button--medium AppHeader-button AppHeader-buttonLeft"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-copilot Button-visual">
881
- <path d="M7.998 15.035c-4.562 0-7.873-2.914-7.998-3.749V9.338c.085-.628.677-1.686 1.588-2.065.013-.07.024-.143.036-.218.029-.183.06-.384.126-.612-.201-.508-.254-1.084-.254-1.656 0-.87.128-1.769.693-2.484.579-.733 1.494-1.124 2.724-1.261 1.206-.134 2.262.034 2.944.765.05.053.096.108.139.165.044-.057.094-.112.143-.165.682-.731 1.738-.899 2.944-.765 1.23.137 2.145.528 2.724 1.261.566.715.693 1.614.693 2.484 0 .572-.053 1.148-.254 1.656.066.228.098.429.126.612.012.076.024.148.037.218.924.385 1.522 1.471 1.591 2.095v1.872c0 .766-3.351 3.795-8.002 3.795Zm0-1.485c2.28 0 4.584-1.11 5.002-1.433V7.862l-.023-.116c-.49.21-1.075.291-1.727.291-1.146 0-2.059-.327-2.71-.991A3.222 3.222 0 0 1 8 6.303a3.24 3.24 0 0 1-.544.743c-.65.664-1.563.991-2.71.991-.652 0-1.236-.081-1.727-.291l-.023.116v4.255c.419.323 2.722 1.433 5.002 1.433ZM6.762 2.83c-.193-.206-.637-.413-1.682-.297-1.019.113-1.479.404-1.713.7-.247.312-.369.789-.369 1.554 0 .793.129 1.171.308 1.371.162.181.519.379 1.442.379.853 0 1.339-.235 1.638-.54.315-.322.527-.827.617-1.553.117-.935-.037-1.395-.241-1.614Zm4.155-.297c-1.044-.116-1.488.091-1.681.297-.204.219-.359.679-.242 1.614.091.726.303 1.231.618 1.553.299.305.784.54 1.638.54.922 0 1.28-.198 1.442-.379.179-.2.308-.578.308-1.371 0-.765-.123-1.242-.37-1.554-.233-.296-.693-.587-1.713-.7Z"></path><path d="M6.25 9.037a.75.75 0 0 1 .75.75v1.501a.75.75 0 0 1-1.5 0V9.787a.75.75 0 0 1 .75-.75Zm4.25.75v1.501a.75.75 0 0 1-1.5 0V9.787a.75.75 0 0 1 1.5 0Z"></path>
882
- </svg>
883
- </a><tool-tip id="tooltip-ec0b1b1c-ac6f-48f8-aab7-5567b2bbf95c" for="copilot-chat-header-button" popover="manual" data-direction="s" data-type="label" data-view-component="true" class="sr-only position-absolute" aria-hidden="true" role="tooltip">Chat with Copilot</tool-tip>
884
-
885
-
886
-
887
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/40420-35fe8a8a8f6e.js" defer="defer"></script>
888
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/67602-b6c420946f9c.js" defer="defer"></script>
889
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/18312-eae0b7b61115.js" defer="defer"></script>
890
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/26744-863875e3115b.js" defer="defer"></script>
891
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/57026-d062b09b7206.js" defer="defer"></script>
892
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/90254-356bb354e3d0.js" defer="defer"></script>
893
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/89332-479350a254d3.js" defer="defer"></script>
894
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/24774-d8e1865f3223.js" defer="defer"></script>
895
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/15874-b2291e39bd2c.js" defer="defer"></script>
896
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/45230-15943c5d83b7.js" defer="defer"></script>
897
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/5853-0405a06c872b.js" defer="defer"></script>
898
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/16007-a629e97ccd37.js" defer="defer"></script>
899
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/80124-041eea5225b9.js" defer="defer"></script>
900
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/38602-fca6e455d950.js" defer="defer"></script>
901
-
902
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/29665-96a2ad6dd82d.js" defer="defer"></script>
903
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/4817-04011b02de2f.js" defer="defer"></script>
904
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/91232-e2ace26ba06d.js" defer="defer"></script>
905
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/30721-f0d446f2c0c1.js" defer="defer"></script>
906
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/37294-f16363f17cc6.js" defer="defer"></script>
907
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/2635-f15ae7f1a3e0.js" defer="defer"></script>
908
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/81171-757517779b01.js" defer="defer"></script>
909
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/99808-82ea480038ad.js" defer="defer"></script>
910
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/49498-52a9cb247599.js" defer="defer"></script>
911
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/41474-dc871715e808.js" defer="defer"></script>
912
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/34522-dc086bc0eeaa.js" defer="defer"></script>
913
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/11468-7e3ad2dd45a3.js" defer="defer"></script>
914
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/45414-779b3b4dee8e.js" defer="defer"></script>
915
-
916
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/38642-a78d6a0965f5.js" defer="defer"></script>
917
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/44164-862c7f44eabe.js" defer="defer"></script>
918
- <script crossorigin="anonymous" type="module" src="https://github.githubassets.com/assets/copilot-chat-79cf67a8f207.js" defer="defer"></script>
919
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/primer-react.eabf1a5c8951946a1f00.module.css">
920
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/88843.8e0d46b8170dd392d01d.module.css">
921
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/copilot-chat.dc7fd265f8acb0aa8d63.module.css">
922
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/copilot-markdown-rendering-ddd978d4a7c0.css">
923
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/primer-react.eabf1a5c8951946a1f00.module.css">
924
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/88843.8e0d46b8170dd392d01d.module.css">
925
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/copilot-chat.dc7fd265f8acb0aa8d63.module.css">
926
-
927
- <react-partial partial-name="copilot-chat" data-ssr="false" data-attempted-ssr="false" data-react-profiling="true" data-catalyst="" class="loaded">
928
-
929
- <script type="application/json" data-target="react-partial.embeddedData">{"props":{"currentTopic":{"id":41881900,"name":"vscode","ownerLogin":"microsoft","ownerType":"Organization","readmePath":"README.md","description":"Visual Studio Code","commitOID":"ea6ce12828c272697926762402173c0395ad9511","ref":"refs/heads/main","refInfo":{"name":"main","type":"branch"},"visibility":"public","languages":[{"name":"TypeScript","percent":95.4},{"name":"CSS","percent":1.5},{"name":"JavaScript","percent":1.0},{"name":"Inno Setup","percent":0.7},{"name":"Rust","percent":0.6},{"name":"HTML","percent":0.5},{"name":"Other","percent":0.3}],"customInstructions":[{"type":"Repository","prompt":"# VS Code Copilot Instructions\n\n## Project Overview\n\nVisual Studio Code is built with a layered architecture using TypeScript, web APIs and Electron, combining web technologies with native app capabilities. The codebase is organized into key architectural layers:\n\n### Root Folders\n- `src/`: Main TypeScript source code with unit tests in `src/vs/*/test/` folders\n- `build/`: Build scripts and CI/CD tools\n- `extensions/`: Built-in extensions that ship with VS Code\n- `test/`: Integration tests and test infrastructure\n- `scripts/`: Development and build scripts\n- `resources/`: Static resources (icons, themes, etc.)\n- `out/`: Compiled JavaScript output (generated during build)\n\n### Core Architecture (`src/` folder)\n- `src/vs/base/` - Foundation utilities and cross-platform abstractions\n- `src/vs/platform/` - Platform services and dependency injection infrastructure\n- `src/vs/editor/` - Text editor implementation with language services, syntax highlighting, and editing features\n- `src/vs/workbench/` - Main application workbench for web and desktop\n - `workbench/browser/` - Core workbench UI components (parts, layout, actions)\n - `workbench/services/` - Service implementations\n - `workbench/contrib/` - Feature contributions (git, debug, search, terminal, etc.)\n - `workbench/api/` - Extension host and VS Code API implementation\n- `src/vs/code/` - Electron main process specific implementation\n- `src/vs/server/` - Server specific implementation\n\nThe core architecture follows these principles:\n- **Layered architecture** - from `base`, `platform`, `editor`, to `workbench`\n- **Dependency injection** - Services are injected through constructor parameters\n- **Contribution model** - Features contribute to registries and extension points\n- **Cross-platform compatibility** - Abstractions separate platform-specific code\n\n### Built-in Extensions (`extensions/` folder)\nThe `extensions/` directory contains first-party extensions that ship with VS Code:\n- **Language support** - `typescript-language-features/`, `html-language-features/`, `css-language-features/`, etc.\n- **Core features** - `git/`, `debug-auto-launch/`, `emmet/`, `markdown-language-features/`\n- **Themes** - `theme-*` folders for default color themes\n- **Development tools** - `extension-editing/`, `vscode-api-tests/`\n\nEach extension follows the standard VS Code extension structure with `package.json`, TypeScript sources, and contribution points to extend the workbench through the Extension API.\n\n### Finding Related Code\n1. **Semantic search first**: Use file search for general concepts\n2. **Grep for exact strings**: Use grep for error messages or specific function names\n3. **Follow imports**: Check what files import the problematic module\n4. **Check test files**: Often reveal usage patterns and expected behavior\n\n## Validating TypeScript changes\n\nMANDATORY: Always check the `VS Code - Build` watch task output via #runTasks/getTaskOutput for compilation errors before running ANY script or declaring work complete, then fix all compilation errors before moving forward.\n\n- NEVER run tests if there are compilation errors\n- NEVER use `npm run compile` to compile TypeScript files but call #runTasks/getTaskOutput instead\n\n### TypeScript compilation steps\n- Monitor the `VS Code - Build` task outputs for real-time compilation errors as you make changes\n- This task runs `Core - Build` and `Ext - Build` to incrementally compile VS Code TypeScript sources and built-in extensions\n- Start the task if it's not already running in the background\n\n### TypeScript validation steps\n- Use the run test tool if you need to run tests. If that tool is not available, then you can use `scripts/test.sh` (or `scripts\\test.bat` on Windows) for unit tests (add `--grep \u003cpattern\u003e` to filter tests) or `scripts/test-integration.sh` (or `scripts\\test-integration.bat` on Windows) for integration tests (integration tests end with .integrationTest.ts or are in /extensions/).\n- Use `npm run valid-layers-check` to check for layering issues\n\n## Coding Guidelines\n\n### Indentation\n\nWe use tabs, not spaces.\n\n### Naming Conventions\n\n- Use PascalCase for `type` names\n- Use PascalCase for `enum` values\n- Use camelCase for `function` and `method` names\n- Use camelCase for `property` names and `local variables`\n- Use whole words in names when possible\n\n### Types\n\n- Do not export `types` or `functions` unless you need to share it across multiple components\n- Do not introduce new `types` or `values` to the global namespace\n\n### Comments\n\n- Use JSDoc style comments for `functions`, `interfaces`, `enums`, and `classes`\n\n### Strings\n\n- Use \"double quotes\" for strings shown to the user that need to be externalized (localized)\n- Use 'single quotes' otherwise\n- All strings visible to the user need to be externalized using the `vs/nls` module\n- Externalized strings must not use string concatenation. Use placeholders instead (`{0}`).\n\n### UI labels\n- Use title-style capitalization for command labels, buttons and menu items (each word is capitalized).\n- Don't capitalize prepositions of four or fewer letters unless it's the first or last word ","owner":"microsoft/vscode","name":".github/copilot-instructions.md"}],"defaultBranch":"main","ownerAvatarUrl":"https://avatars.githubusercontent.com/u/6154722?v=4"},"findFileWorkerPath":"/assets-cdn/worker/find-file-worker-0cea8c6113ab.js","renderPopover":false,"renderBetaLabel":false,"chatIsVisible":true,"chatVisibleSettingPath":"/users/minhlucvan/copilot_chat/settings/copilot_chat_visibility","ssoOrganizations":[],"agentsPath":"/github-copilot/chat/agents","apiURL":"https://api.individual.githubcopilot.com","apiVersion":"2025-05-01","currentUserLogin":"minhlucvan","customInstructions":null,"customCopilotsEnabled":true,"optedInToPreviewFeatures":false,"optedInToUserFeedback":true,"personalInstructions":null,"graphqlApiUrl":"/copilot/loops/loops_execution","loopsClientUrl":"/copilot/loops/client","reviewLab":false,"realIp":null,"scrollToTop":false,"hasCEorCBAccess":false,"licenseType":"licensed_limited","plan":"free","quotas":{"limits":{"premiumInteractions":0},"remaining":{"chat":410,"completions":3976,"premiumInteractions":0,"chatPercentage":82.0,"premiumInteractionsPercentage":0.0},"resetDate":"2026-01-19","overagesEnabled":false},"icebreakers":[{"type":"functional","data":[{"id":"create-bug-issue","message":"Hi Copilot! Could you please start a draft issue for a bug? Once you've created the draft issue, if you need more information, ask me 1-2 key questions. If you also think I should upload any information or images that would help write the bug issue, let me know.","titleHtml":"Create an issue for a bug","icon":"issue-opened","color":"var(--display-green-fgColor)"},{"id":"summarize-pulls","message":"Hi Copilot! Could you help summarize a pull request? I'd like to know its purpose and the key changes made. Please include details about the problem it solves, new features or functionality introduced, any breaking changes, testing done, and documentation updates. Thank you!","titleHtml":"Summarize a pull request","icon":"git-pull-request","color":"var(--display-green-fgColor)"},{"id":"code-feedback","message":"Hi Copilot! Please review my code for best practices, readability, performance, and potential bugs. First, prompt me to provide the link to the relevant GitHub repository or file. Then, offer concrete suggestions for improvement, explain any issues you discover, and provide example corrections where appropriate.","titleHtml":"Get code feedback","icon":"code","color":"var(--display-gray-fgColor)"},{"id":"next-steps-issue","message":"Hi Copilot! Could you suggest the next actionable steps for an issue, based on either the provided issue link or a copy pasted description?","titleHtml":"Suggest next steps for an issue","icon":"issue-opened","color":"var(--display-green-fgColor)"},{"id":"understand-arch-diagram","message":"Hi Copilot! Could you please help me interpret this architecture diagram?","titleHtml":"Interpret an architecture diagram","icon":"eye","color":"var(--display-purple-fgColor)"},{"id":"create-profile-readme","message":"Hi Copilot! Please create a standout profile README for $$USERNAME$$. Ask me for any key details (such as my profession, top skills, favorite projects, or social links) that would help you personalize it.","titleHtml":"Create a profile README for me","icon":"rocket","color":"var(--display-pink-fgColor)"},{"id":"my-open-pulls","message":"Hi Copilot! Can you please find my open pull requests?","titleHtml":"My open pull requests","icon":"git-pull-request","color":"var(--display-green-fgColor)"},{"id":"make-pong","message":"Hi Copilot! Could you generate a simple Pong game utilizing HTML, CSS, and JavaScript? The player should control the left paddle with their mouse, and the right paddle should be controlled automatically by a basic AI. Make sure the game includes a bouncing ball and collision detection for paddles and walls. Please provide the code for all three components: the HTML file, the CSS file, and the JavaScript file directly within the chat window. Thanks!","titleHtml":"Make a Pong game","icon":"code","color":"var(--display-gray-fgColor)"}]},{"type":"instructional","data":[]},{"type":"interactional","data":[{"id":"to-do-app-local-storage","message":"Create a to-do list application with local storage functionality.","titleHtml":"To-do list with local storage","icon":"code","color":"var(--display-gray-fgColor)"},{"id":"digital-clock-time-zones","message":"Create a digital clock that displays the current time in different time zones.","titleHtml":"A digital time zone clock","icon":"code","color":"var(--display-gray-fgColor)"},{"id":"weather-dashboard-app","message":"Develop a weather dashboard that fetches data from a public weather API.","titleHtml":"Develop a weather dashboard","icon":"code","color":"var(--display-gray-fgColor)"},{"id":"create-joke-generator","message":"Create a random joke generator using an external API.","titleHtml":"Create a joke generator","icon":"code","color":"var(--display-gray-fgColor)"}]}],"canShareThread":true,"thirdPartyMcpAllowed":true}}</script>
930
- <div data-target="react-partial.reactRoot"><div class="CopilotChat-module__CopilotChatContainer--fWXmM"></div><div class="PortalContainerUtils-module__chatPortalContainer--Otmle"></div><div class="PortalContainerUtils-module__menuPortalContainer--D7AeL CopilotChat-module__menuPortalContainer--FUc3K"></div><script type="application/json" id="__PRIMER_DATA__r_1a___">{"resolvedServerColorMode":"night"}</script></div>
931
- </react-partial>
932
-
933
-
934
-
935
- </react-partial-anchor>
936
- <div class="position-relative">
937
-
938
- <react-partial-anchor data-catalyst="">
939
- <button id="global-copilot-menu-button" data-target="react-partial-anchor.anchor" aria-expanded="false" aria-labelledby="tooltip-9ad7fe81-787a-401d-912a-be8b8e725efc" type="button" data-view-component="true" class="Button Button--iconOnly Button--secondary Button--medium AppHeader-button AppHeader-buttonRight" aria-haspopup="true"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-triangle-down Button-visual">
940
- <path d="m4.427 7.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 7H4.604a.25.25 0 0 0-.177.427Z"></path>
941
- </svg>
942
- </button><tool-tip id="tooltip-9ad7fe81-787a-401d-912a-be8b8e725efc" for="global-copilot-menu-button" popover="manual" data-direction="s" data-type="label" data-view-component="true" class="sr-only position-absolute" aria-hidden="true" role="tooltip">Open Copilot…</tool-tip>
943
-
944
-
945
-
946
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/primer-react.eabf1a5c8951946a1f00.module.css">
947
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/global-copilot-menu.9d926f69ee309a45d0df.module.css">
948
-
949
- <react-partial partial-name="global-copilot-menu" data-ssr="false" data-attempted-ssr="false" data-react-profiling="true" data-catalyst="" class="loaded">
950
-
951
- <script type="application/json" data-target="react-partial.embeddedData">{"props":{"repository":{"id":41881900,"name":"vscode","ownerLogin":"microsoft"}}}</script>
952
- <div data-target="react-partial.reactRoot"><div class="d-none"></div><script type="application/json" id="__PRIMER_DATA__r_k___">{"resolvedServerColorMode":"night"}</script></div>
953
- </react-partial>
954
-
955
-
956
- </react-partial-anchor>
957
- </div>
958
- </div>
959
- </div>
960
-
961
-
962
- <div class="AppHeader-actions position-relative">
963
- <react-partial-anchor data-catalyst="">
964
- <button id="global-create-menu-anchor" aria-label="Create something new" data-target="react-partial-anchor.anchor" type="button" data-view-component="true" class="AppHeader-button AppHeader-button--dropdown global-create-button Button--secondary Button--medium Button width-auto color-fg-muted" aria-describedby="tooltip-3d41c150-41b6-4fb9-95d6-136cd7c1915e" aria-expanded="false" aria-haspopup="true"> <span class="Button-content">
965
- <span class="Button-visual Button-leadingVisual">
966
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-plus">
967
- <path d="M7.75 2a.75.75 0 0 1 .75.75V7h4.25a.75.75 0 0 1 0 1.5H8.5v4.25a.75.75 0 0 1-1.5 0V8.5H2.75a.75.75 0 0 1 0-1.5H7V2.75A.75.75 0 0 1 7.75 2Z"></path>
968
- </svg>
969
- </span>
970
- <span class="Button-label"><svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-triangle-down">
971
- <path d="m4.427 7.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 7H4.604a.25.25 0 0 0-.177.427Z"></path>
972
- </svg></span>
973
- </span>
974
- </button><tool-tip id="tooltip-3d41c150-41b6-4fb9-95d6-136cd7c1915e" for="global-create-menu-anchor" popover="manual" data-direction="s" data-type="description" data-view-component="true" class="position-absolute sr-only" role="tooltip" style="--tool-tip-position-top: 48px; --tool-tip-position-left: 610.5546875px;">Create new…</tool-tip>
975
-
976
-
977
-
978
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/primer-react.eabf1a5c8951946a1f00.module.css">
979
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/global-create-menu.30736d4aa7b2b246dd6f.module.css">
980
-
981
- <react-partial partial-name="global-create-menu" data-ssr="false" data-attempted-ssr="false" data-react-profiling="true" data-catalyst="" class="loaded">
982
-
983
- <script type="application/json" data-target="react-partial.embeddedData">{"props":{"showCreateRepo":true,"showImportRepo":true,"showCodespaces":true,"showSpark":false,"showCodingAgent":false,"showGist":true,"showCreateOrg":true,"showCreateProject":false,"showCreateLegacyProject":false,"showCreateIssue":true,"createProjectUrl":"/minhlucvan?tab=projects","org":null,"owner":"microsoft","repo":"vscode"}}</script>
984
- <div data-target="react-partial.reactRoot"><script type="application/json" id="__PRIMER_DATA__r_s___">{"resolvedServerColorMode":"night"}</script></div>
985
- </react-partial>
986
-
987
-
988
- </react-partial-anchor>
989
-
990
-
991
- <a href="/issues" data-analytics-event="{&quot;category&quot;:&quot;Global navigation&quot;,&quot;action&quot;:&quot;ISSUES_HEADER&quot;,&quot;label&quot;:null}" id="icon-button-bf796198-ad89-4cbf-8679-790c3bafc179" aria-labelledby="tooltip-5809b7c7-b0c9-4a7b-81d0-06db744201f3" data-view-component="true" class="Button Button--iconOnly Button--secondary Button--medium AppHeader-button color-fg-muted"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-issue-opened Button-visual">
992
- <path d="M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"></path><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Z"></path>
993
- </svg>
994
- </a><tool-tip id="tooltip-5809b7c7-b0c9-4a7b-81d0-06db744201f3" for="icon-button-bf796198-ad89-4cbf-8679-790c3bafc179" popover="manual" data-direction="s" data-type="label" data-view-component="true" class="position-absolute sr-only" aria-hidden="true" role="tooltip" style="--tool-tip-position-top: 48px; --tool-tip-position-left: 663.7734375px;">Your issues</tool-tip>
995
-
996
- <a href="/pulls" data-analytics-event="{&quot;category&quot;:&quot;Global navigation&quot;,&quot;action&quot;:&quot;PULL_REQUESTS_HEADER&quot;,&quot;label&quot;:null}" id="icon-button-29984d9c-42dc-402c-b18e-9f07b2a75f4e" aria-labelledby="tooltip-35a12c76-f892-41a4-9db7-7a43e7d10584" data-view-component="true" class="Button Button--iconOnly Button--secondary Button--medium AppHeader-button color-fg-muted"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-git-pull-request Button-visual">
997
- <path d="M1.5 3.25a2.25 2.25 0 1 1 3 2.122v5.256a2.251 2.251 0 1 1-1.5 0V5.372A2.25 2.25 0 0 1 1.5 3.25Zm5.677-.177L9.573.677A.25.25 0 0 1 10 .854V2.5h1A2.5 2.5 0 0 1 13.5 5v5.628a2.251 2.251 0 1 1-1.5 0V5a1 1 0 0 0-1-1h-1v1.646a.25.25 0 0 1-.427.177L7.177 3.427a.25.25 0 0 1 0-.354ZM3.75 2.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm0 9.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm8.25.75a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z"></path>
998
- </svg>
999
- </a><tool-tip id="tooltip-35a12c76-f892-41a4-9db7-7a43e7d10584" for="icon-button-29984d9c-42dc-402c-b18e-9f07b2a75f4e" popover="manual" data-direction="s" data-type="label" data-view-component="true" class="position-absolute sr-only" aria-hidden="true" role="tooltip" style="--tool-tip-position-top: 48px; --tool-tip-position-left: 685.078125px;">Your pull requests</tool-tip>
1000
-
1001
- <a href="/repos" data-analytics-event="{&quot;category&quot;:&quot;Global navigation&quot;,&quot;action&quot;:&quot;REPOS_HEADER&quot;,&quot;label&quot;:null}" id="icon-button-f9d1731f-3791-459b-b130-8e79a4cf1574" aria-labelledby="tooltip-79aa0f90-b1b3-46b7-a64b-d64c263891a0" data-view-component="true" class="Button Button--iconOnly Button--secondary Button--medium AppHeader-button color-fg-muted"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-repo Button-visual">
1002
- <path d="M2 2.5A2.5 2.5 0 0 1 4.5 0h8.75a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h1.75v-2h-8a1 1 0 0 0-.714 1.7.75.75 0 1 1-1.072 1.05A2.495 2.495 0 0 1 2 11.5Zm10.5-1h-8a1 1 0 0 0-1 1v6.708A2.486 2.486 0 0 1 4.5 9h8ZM5 12.25a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.25a.25.25 0 0 1-.4.2l-1.45-1.087a.249.249 0 0 0-.3 0L5.4 15.7a.25.25 0 0 1-.4-.2Z"></path>
1003
- </svg>
1004
- </a><tool-tip id="tooltip-79aa0f90-b1b3-46b7-a64b-d64c263891a0" for="icon-button-f9d1731f-3791-459b-b130-8e79a4cf1574" popover="manual" data-direction="s" data-type="label" data-view-component="true" class="position-absolute sr-only" aria-hidden="true" role="tooltip" style="--tool-tip-position-top: 48px; --tool-tip-position-left: 740.890625px;">Repositories</tool-tip>
1005
-
1006
- </div>
1007
-
1008
- <notification-indicator data-channel="eyJjIjoibm90aWZpY2F0aW9uLWNoYW5nZWQ6MTE1NzUwNzYiLCJ0IjoxNzY4NTg3OTQ3fQ==--3b4bfeea09b334992ef4fc79762048ae90ae3e129d7362b9619a69b2a9eaf5b7" data-indicator-mode="global" data-tooltip-global="You have unread notifications" data-tooltip-unavailable="Notifications are unavailable at the moment." data-tooltip-none="You have no unread notifications" data-header-redesign-enabled="true" data-fetch-indicator-src="/notifications/indicator" data-fetch-indicator-enabled="true" data-view-component="true" class="js-socket-channel" data-fetch-retry-delay-time="500" data-catalyst="">
1009
- <a id="AppHeader-notifications-button" href="/notifications" aria-labelledby="notification-indicator-tooltip" data-hotkey="g n" data-target="notification-indicator.link" data-analytics-event="{&quot;category&quot;:&quot;Global navigation&quot;,&quot;action&quot;:&quot;NOTIFICATIONS_HEADER&quot;,&quot;label&quot;:&quot;icon:unread&quot;}" data-view-component="true" class="Button Button--iconOnly Button--secondary Button--medium AppHeader-button color-fg-muted AppHeader-button--hasIndicator"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-inbox Button-visual">
1010
- <path d="M2.8 2.06A1.75 1.75 0 0 1 4.41 1h7.18c.7 0 1.333.417 1.61 1.06l2.74 6.395c.04.093.06.194.06.295v4.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25v-4.5c0-.101.02-.202.06-.295Zm1.61.44a.25.25 0 0 0-.23.152L1.887 8H4.75a.75.75 0 0 1 .6.3L6.625 10h2.75l1.275-1.7a.75.75 0 0 1 .6-.3h2.863L11.82 2.652a.25.25 0 0 0-.23-.152Zm10.09 7h-2.875l-1.275 1.7a.75.75 0 0 1-.6.3h-3.5a.75.75 0 0 1-.6-.3L4.375 9.5H1.5v3.75c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25Z"></path>
1011
- </svg>
1012
- </a>
1013
-
1014
- <tool-tip id="notification-indicator-tooltip" data-target="notification-indicator.tooltip" for="AppHeader-notifications-button" popover="manual" data-direction="s" data-type="label" data-view-component="true" class="position-absolute sr-only" aria-hidden="true" role="tooltip" style="--tool-tip-position-top: 48px; --tool-tip-position-left: 657.3359375px;">You have unread notifications</tool-tip>
1015
- </notification-indicator>
1016
-
1017
- <div class="AppHeader-user">
1018
- <deferred-side-panel data-url="/_side-panels/user?repository_id=41881900" data-catalyst="">
1019
- <include-fragment data-target="deferred-side-panel.fragment" data-nonce="v2:03b0f735-7e9b-2994-f629-ec1f21c8f2bb" data-view-component="true">
1020
-
1021
- <react-partial-anchor data-catalyst="">
1022
- <button data-target="react-partial-anchor.anchor" data-login="minhlucvan" aria-label="Open user navigation menu" type="button" data-view-component="true" class="Button--invisible Button--medium Button Button--invisible-noVisuals color-bg-transparent p-0" aria-expanded="false" aria-haspopup="true"> <span class="Button-content">
1023
- <span class="Button-label"><img src="https://avatars.githubusercontent.com/u/11575076?v=4" alt="" size="32" height="32" width="32" data-view-component="true" class="avatar circle"></span>
1024
- </span>
1025
- </button>
1026
-
1027
-
1028
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/primer-react.eabf1a5c8951946a1f00.module.css">
1029
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/global-user-nav-drawer.1d1b79e779bab56196fa.module.css">
1030
-
1031
- <react-partial partial-name="global-user-nav-drawer" data-ssr="false" data-attempted-ssr="false" data-react-profiling="true" data-catalyst="" class="loaded">
1032
-
1033
- <script type="application/json" data-target="react-partial.embeddedData">{"props":{"owner":{"login":"minhlucvan","name":"Minh Luc Van","avatarUrl":"https://avatars.githubusercontent.com/u/11575076?v=4"},"drawerId":"global-user-nav-drawer","lazyLoadItemDataFetchUrl":"/_side-panels/user.json","canAddAccount":true,"addAccountPath":"/login?add_account=1\u0026return_to=https%3A%2F%2Fgithub.com%2Fmicrosoft%2Fvscode","switchAccountPath":"/switch_account","loginAccountPath":"/login?add_account=1","projectsPath":"/minhlucvan?tab=projects","gistsUrl":"https://gist.github.com/mine","docsUrl":"https://docs.github.com","yourEnterpriseUrl":null,"enterpriseSettingsUrl":null,"supportUrl":"https://support.github.com","showAccountSwitcher":true,"showCopilot":true,"showEnterprises":true,"showEnterprise":false,"showGists":true,"showOrganizations":true,"showSponsors":true,"showUpgrade":true,"showFeaturesPreviews":true,"showEnterpriseSettings":false}}</script>
1034
- <div data-target="react-partial.reactRoot"><script type="application/json" id="__PRIMER_DATA__r_v___">{"resolvedServerColorMode":"night"}</script></div>
1035
- </react-partial>
1036
-
1037
-
1038
- </react-partial-anchor>
1039
-
1040
-
1041
- <div data-show-on-forbidden-error="" hidden="">
1042
- <div class="Box">
1043
- <div class="blankslate-container">
1044
- <div data-view-component="true" class="blankslate blankslate-spacious color-bg-default rounded-2">
1045
-
1046
-
1047
- <h3 data-view-component="true" class="blankslate-heading"> Uh oh!
1048
- </h3>
1049
- <p data-view-component="true"> </p><p class="color-fg-muted my-2 mb-2 ws-normal">There was an error while loading. <a class="Link--inTextBlock" data-turbo="false" href="" aria-label="Please reload this page">Please reload this page</a>.</p>
1050
- <p></p>
1051
-
1052
- </div> </div>
1053
- </div> </div>
1054
- </include-fragment></deferred-side-panel>
1055
- </div>
1056
-
1057
- <div class="position-absolute mt-2">
1058
-
1059
- <site-header-logged-in-user-menu data-catalyst="">
1060
-
1061
- </site-header-logged-in-user-menu>
1062
-
1063
- </div>
1064
- </div>
1065
- </div>
1066
-
1067
-
1068
-
1069
- <div class="AppHeader-localBar">
1070
- <nav data-pjax="#js-repo-pjax-container" aria-label="Repository" data-view-component="true" class="js-repo-nav js-sidenav-container-pjax js-responsive-underlinenav overflow-hidden UnderlineNav">
1071
-
1072
- <ul data-view-component="true" class="UnderlineNav-body list-style-none">
1073
- <li data-view-component="true" class="d-inline-flex">
1074
- <a id="code-tab" href="/microsoft/vscode" data-tab-item="i0code-tab" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches repo_packages repo_deployments repo_attestations /microsoft/vscode" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" data-hotkey="g c" data-analytics-event="{&quot;category&quot;:&quot;Underline navbar&quot;,&quot;action&quot;:&quot;Click tab&quot;,&quot;label&quot;:&quot;Code&quot;,&quot;target&quot;:&quot;UNDERLINE_NAV.TAB&quot;}" aria-current="page" data-view-component="true" class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item selected">
1075
-
1076
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-code UnderlineNav-octicon d-none d-sm-inline">
1077
- <path d="m11.28 3.22 4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734L13.94 8l-3.72-3.72a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215Zm-6.56 0a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042L2.06 8l3.72 3.72a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L.47 8.53a.75.75 0 0 1 0-1.06Z"></path>
1078
- </svg>
1079
- <span data-content="Code">Code</span>
1080
- <span id="code-repo-tab-count" data-pjax-replace="" data-turbo-replace="" title="Not available" data-view-component="true" class="Counter"></span>
1081
-
1082
-
1083
-
1084
- </a></li>
1085
- <li data-view-component="true" class="d-inline-flex">
1086
- <a id="issues-tab" href="/microsoft/vscode/issues" data-tab-item="i1issues-tab" data-selected-links="repo_issues repo_labels repo_milestones /microsoft/vscode/issues" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" data-hotkey="g i" data-react-nav="issues-react" data-analytics-event="{&quot;category&quot;:&quot;Underline navbar&quot;,&quot;action&quot;:&quot;Click tab&quot;,&quot;label&quot;:&quot;Issues&quot;,&quot;target&quot;:&quot;UNDERLINE_NAV.TAB&quot;}" data-view-component="true" class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item">
1087
-
1088
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-issue-opened UnderlineNav-octicon d-none d-sm-inline">
1089
- <path d="M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"></path><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Z"></path>
1090
- </svg>
1091
- <span data-content="Issues">Issues</span>
1092
- <span id="issues-repo-tab-count" data-pjax-replace="" data-turbo-replace="" title="5,000+" data-view-component="true" class="Counter">5k+</span>
1093
-
1094
-
1095
-
1096
- </a></li>
1097
- <li data-view-component="true" class="d-inline-flex">
1098
- <a id="pull-requests-tab" href="/microsoft/vscode/pulls" data-tab-item="i2pull-requests-tab" data-selected-links="repo_pulls checks /microsoft/vscode/pulls" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" data-hotkey="g p" data-analytics-event="{&quot;category&quot;:&quot;Underline navbar&quot;,&quot;action&quot;:&quot;Click tab&quot;,&quot;label&quot;:&quot;Pull requests&quot;,&quot;target&quot;:&quot;UNDERLINE_NAV.TAB&quot;}" data-view-component="true" class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item">
1099
-
1100
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-git-pull-request UnderlineNav-octicon d-none d-sm-inline">
1101
- <path d="M1.5 3.25a2.25 2.25 0 1 1 3 2.122v5.256a2.251 2.251 0 1 1-1.5 0V5.372A2.25 2.25 0 0 1 1.5 3.25Zm5.677-.177L9.573.677A.25.25 0 0 1 10 .854V2.5h1A2.5 2.5 0 0 1 13.5 5v5.628a2.251 2.251 0 1 1-1.5 0V5a1 1 0 0 0-1-1h-1v1.646a.25.25 0 0 1-.427.177L7.177 3.427a.25.25 0 0 1 0-.354ZM3.75 2.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm0 9.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm8.25.75a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z"></path>
1102
- </svg>
1103
- <span data-content="Pull requests">Pull requests</span>
1104
- <span id="pull-requests-repo-tab-count" data-pjax-replace="" data-turbo-replace="" title="975" data-view-component="true" class="Counter">975</span>
1105
-
1106
-
1107
-
1108
- </a></li>
1109
- <li data-view-component="true" class="d-inline-flex">
1110
- <a id="actions-tab" href="/microsoft/vscode/actions" data-tab-item="i3actions-tab" data-selected-links="repo_actions /microsoft/vscode/actions" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" data-hotkey="g a" data-analytics-event="{&quot;category&quot;:&quot;Underline navbar&quot;,&quot;action&quot;:&quot;Click tab&quot;,&quot;label&quot;:&quot;Actions&quot;,&quot;target&quot;:&quot;UNDERLINE_NAV.TAB&quot;}" data-view-component="true" class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item">
1111
-
1112
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-play UnderlineNav-octicon d-none d-sm-inline">
1113
- <path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Zm4.879-2.773 4.264 2.559a.25.25 0 0 1 0 .428l-4.264 2.559A.25.25 0 0 1 6 10.559V5.442a.25.25 0 0 1 .379-.215Z"></path>
1114
- </svg>
1115
- <span data-content="Actions">Actions</span>
1116
- <span id="actions-repo-tab-count" data-pjax-replace="" data-turbo-replace="" title="Not available" data-view-component="true" class="Counter"></span>
1117
-
1118
-
1119
-
1120
- </a></li>
1121
- <li data-view-component="true" class="d-inline-flex">
1122
- <a id="projects-tab" href="/microsoft/vscode/projects" data-tab-item="i4projects-tab" data-selected-links="repo_projects new_repo_project repo_project /microsoft/vscode/projects" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" data-hotkey="g b" data-analytics-event="{&quot;category&quot;:&quot;Underline navbar&quot;,&quot;action&quot;:&quot;Click tab&quot;,&quot;label&quot;:&quot;Projects&quot;,&quot;target&quot;:&quot;UNDERLINE_NAV.TAB&quot;}" data-view-component="true" class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item">
1123
-
1124
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-table UnderlineNav-octicon d-none d-sm-inline">
1125
- <path d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25ZM6.5 6.5v8h7.75a.25.25 0 0 0 .25-.25V6.5Zm8-1.5V1.75a.25.25 0 0 0-.25-.25H6.5V5Zm-13 1.5v7.75c0 .138.112.25.25.25H5v-8ZM5 5V1.5H1.75a.25.25 0 0 0-.25.25V5Z"></path>
1126
- </svg>
1127
- <span data-content="Projects">Projects</span>
1128
- <span id="projects-repo-tab-count" data-pjax-replace="" data-turbo-replace="" title="1" data-view-component="true" class="Counter">1</span>
1129
-
1130
-
1131
-
1132
- </a></li>
1133
- <li data-view-component="true" class="d-inline-flex">
1134
- <a id="models-tab" href="/microsoft/vscode/models" data-tab-item="i5models-tab" data-selected-links="repo_models repo_models_prompts repo_models_playground /microsoft/vscode/models" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" data-hotkey="g m" data-analytics-event="{&quot;category&quot;:&quot;Underline navbar&quot;,&quot;action&quot;:&quot;Click tab&quot;,&quot;label&quot;:&quot;Models&quot;,&quot;target&quot;:&quot;UNDERLINE_NAV.TAB&quot;}" data-view-component="true" class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item">
1135
-
1136
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-ai-model UnderlineNav-octicon d-none d-sm-inline">
1137
- <path d="M10.628 7.25a2.25 2.25 0 1 1 0 1.5H8.622a2.25 2.25 0 0 1-2.513 1.466L5.03 12.124a2.25 2.25 0 1 1-1.262-.814l1.035-1.832A2.245 2.245 0 0 1 4.25 8c0-.566.209-1.082.553-1.478L3.768 4.69a2.25 2.25 0 1 1 1.262-.814l1.079 1.908A2.25 2.25 0 0 1 8.622 7.25ZM2.5 2.5a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Zm4 4.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm6.25 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-9.5 5.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Z"></path>
1138
- </svg>
1139
- <span data-content="Models">Models</span>
1140
- <span id="models-repo-tab-count" data-pjax-replace="" data-turbo-replace="" title="Not available" data-view-component="true" class="Counter"></span>
1141
-
1142
-
1143
-
1144
- </a></li>
1145
- <li data-view-component="true" class="d-inline-flex">
1146
- <a id="wiki-tab" href="/microsoft/vscode/wiki" data-tab-item="i6wiki-tab" data-selected-links="repo_wiki /microsoft/vscode/wiki" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" data-hotkey="g w" data-analytics-event="{&quot;category&quot;:&quot;Underline navbar&quot;,&quot;action&quot;:&quot;Click tab&quot;,&quot;label&quot;:&quot;Wiki&quot;,&quot;target&quot;:&quot;UNDERLINE_NAV.TAB&quot;}" data-view-component="true" class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item">
1147
-
1148
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-book UnderlineNav-octicon d-none d-sm-inline">
1149
- <path d="M0 1.75A.75.75 0 0 1 .75 1h4.253c1.227 0 2.317.59 3 1.501A3.743 3.743 0 0 1 11.006 1h4.245a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-.75.75h-4.507a2.25 2.25 0 0 0-1.591.659l-.622.621a.75.75 0 0 1-1.06 0l-.622-.621A2.25 2.25 0 0 0 5.258 13H.75a.75.75 0 0 1-.75-.75Zm7.251 10.324.004-5.073-.002-2.253A2.25 2.25 0 0 0 5.003 2.5H1.5v9h3.757a3.75 3.75 0 0 1 1.994.574ZM8.755 4.75l-.004 7.322a3.752 3.752 0 0 1 1.992-.572H14.5v-9h-3.495a2.25 2.25 0 0 0-2.25 2.25Z"></path>
1150
- </svg>
1151
- <span data-content="Wiki">Wiki</span>
1152
- <span id="wiki-repo-tab-count" data-pjax-replace="" data-turbo-replace="" title="Not available" data-view-component="true" class="Counter"></span>
1153
-
1154
-
1155
-
1156
- </a></li>
1157
- <li data-view-component="true" class="d-inline-flex">
1158
- <a id="security-tab" href="/microsoft/vscode/security" data-tab-item="i7security-tab" data-selected-links="security overview alerts policy token_scanning code_scanning /microsoft/vscode/security" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" data-hotkey="g s" data-analytics-event="{&quot;category&quot;:&quot;Underline navbar&quot;,&quot;action&quot;:&quot;Click tab&quot;,&quot;label&quot;:&quot;Security&quot;,&quot;target&quot;:&quot;UNDERLINE_NAV.TAB&quot;}" data-view-component="true" class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item" style="visibility: hidden;">
1159
-
1160
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-shield UnderlineNav-octicon d-none d-sm-inline">
1161
- <path d="M7.467.133a1.748 1.748 0 0 1 1.066 0l5.25 1.68A1.75 1.75 0 0 1 15 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.697 1.697 0 0 1-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 0 1 1.217-1.667Zm.61 1.429a.25.25 0 0 0-.153 0l-5.25 1.68a.25.25 0 0 0-.174.238V7c0 1.358.275 2.666 1.057 3.86.784 1.194 2.121 2.34 4.366 3.297a.196.196 0 0 0 .154 0c2.245-.956 3.582-2.104 4.366-3.298C13.225 9.666 13.5 8.36 13.5 7V3.48a.251.251 0 0 0-.174-.237l-5.25-1.68ZM8.75 4.75v3a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 1.5 0ZM9 10.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path>
1162
- </svg>
1163
- <span data-content="Security">Security</span>
1164
- <span title="19" data-view-component="true" class="Counter">19</span>
1165
- </a><div data-show-on-forbidden-error="" hidden=""><a id="security-tab" href="/microsoft/vscode/security" data-tab-item="i7security-tab" data-selected-links="security overview alerts policy token_scanning code_scanning /microsoft/vscode/security" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" data-hotkey="g s" data-analytics-event="{&quot;category&quot;:&quot;Underline navbar&quot;,&quot;action&quot;:&quot;Click tab&quot;,&quot;label&quot;:&quot;Security&quot;,&quot;target&quot;:&quot;UNDERLINE_NAV.TAB&quot;}" data-view-component="true" class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item">
1166
- </a><div class="Box"><a id="security-tab" href="/microsoft/vscode/security" data-tab-item="i7security-tab" data-selected-links="security overview alerts policy token_scanning code_scanning /microsoft/vscode/security" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" data-hotkey="g s" data-analytics-event="{&quot;category&quot;:&quot;Underline navbar&quot;,&quot;action&quot;:&quot;Click tab&quot;,&quot;label&quot;:&quot;Security&quot;,&quot;target&quot;:&quot;UNDERLINE_NAV.TAB&quot;}" data-view-component="true" class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item">
1167
- </a><div class="blankslate-container"><a id="security-tab" href="/microsoft/vscode/security" data-tab-item="i7security-tab" data-selected-links="security overview alerts policy token_scanning code_scanning /microsoft/vscode/security" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" data-hotkey="g s" data-analytics-event="{&quot;category&quot;:&quot;Underline navbar&quot;,&quot;action&quot;:&quot;Click tab&quot;,&quot;label&quot;:&quot;Security&quot;,&quot;target&quot;:&quot;UNDERLINE_NAV.TAB&quot;}" data-view-component="true" class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item">
1168
- </a><div data-view-component="true" class="blankslate blankslate-spacious color-bg-default rounded-2"><a id="security-tab" href="/microsoft/vscode/security" data-tab-item="i7security-tab" data-selected-links="security overview alerts policy token_scanning code_scanning /microsoft/vscode/security" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" data-hotkey="g s" data-analytics-event="{&quot;category&quot;:&quot;Underline navbar&quot;,&quot;action&quot;:&quot;Click tab&quot;,&quot;label&quot;:&quot;Security&quot;,&quot;target&quot;:&quot;UNDERLINE_NAV.TAB&quot;}" data-view-component="true" class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item">
1169
-
1170
-
1171
- <h3 data-view-component="true" class="blankslate-heading"> Uh oh!
1172
- </h3>
1173
- <p data-view-component="true"> </p></a><p class="color-fg-muted my-2 mb-2 ws-normal"><a id="security-tab" href="/microsoft/vscode/security" data-tab-item="i7security-tab" data-selected-links="security overview alerts policy token_scanning code_scanning /microsoft/vscode/security" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" data-hotkey="g s" data-analytics-event="{&quot;category&quot;:&quot;Underline navbar&quot;,&quot;action&quot;:&quot;Click tab&quot;,&quot;label&quot;:&quot;Security&quot;,&quot;target&quot;:&quot;UNDERLINE_NAV.TAB&quot;}" data-view-component="true" class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item">There was an error while loading. </a><a class="Link--inTextBlock" data-turbo="false" href="" aria-label="Please reload this page">Please reload this page</a>.</p>
1174
- <p></p>
1175
-
1176
- </div> </div>
1177
- </div> </div>
1178
-
1179
-
1180
-
1181
- </li>
1182
- <li data-view-component="true" class="d-inline-flex">
1183
- <a id="insights-tab" href="/microsoft/vscode/pulse" data-tab-item="i8insights-tab" data-selected-links="repo_graphs repo_contributors dependency_graph dependabot_updates pulse people community /microsoft/vscode/pulse" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" data-analytics-event="{&quot;category&quot;:&quot;Underline navbar&quot;,&quot;action&quot;:&quot;Click tab&quot;,&quot;label&quot;:&quot;Insights&quot;,&quot;target&quot;:&quot;UNDERLINE_NAV.TAB&quot;}" data-view-component="true" class="UnderlineNav-item no-wrap js-responsive-underlinenav-item js-selected-navigation-item" style="visibility: hidden;">
1184
-
1185
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-graph UnderlineNav-octicon d-none d-sm-inline">
1186
- <path d="M1.5 1.75V13.5h13.75a.75.75 0 0 1 0 1.5H.75a.75.75 0 0 1-.75-.75V1.75a.75.75 0 0 1 1.5 0Zm14.28 2.53-5.25 5.25a.75.75 0 0 1-1.06 0L7 7.06 4.28 9.78a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042l3.25-3.25a.75.75 0 0 1 1.06 0L10 7.94l4.72-4.72a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Z"></path>
1187
- </svg>
1188
- <span data-content="Insights">Insights</span>
1189
- <span id="insights-repo-tab-count" data-pjax-replace="" data-turbo-replace="" title="Not available" data-view-component="true" class="Counter"></span>
1190
-
1191
-
1192
-
1193
- </a></li>
1194
- </ul>
1195
- <div style="" data-view-component="true" class="UnderlineNav-actions js-responsive-underlinenav-overflow position-absolute pr-3 pr-md-4 pr-lg-5 right-0"> <action-menu data-select-variant="none" data-view-component="true" data-catalyst="" data-ready="true">
1196
- <focus-group direction="vertical" mnemonics="" retain="">
1197
- <button id="action-menu-0dac17ef-f1fd-4e05-a33d-a026ff79a2fd-button" popovertarget="action-menu-0dac17ef-f1fd-4e05-a33d-a026ff79a2fd-overlay" aria-controls="action-menu-0dac17ef-f1fd-4e05-a33d-a026ff79a2fd-list" aria-haspopup="true" aria-labelledby="tooltip-17dacfbf-0207-47fd-be81-894bc39af008" type="button" data-view-component="true" class="Button Button--iconOnly Button--secondary Button--medium UnderlineNav-item"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-kebab-horizontal Button-visual">
1198
- <path d="M8 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM1.5 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm13 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"></path>
1199
- </svg>
1200
- </button><tool-tip id="tooltip-17dacfbf-0207-47fd-be81-894bc39af008" for="action-menu-0dac17ef-f1fd-4e05-a33d-a026ff79a2fd-button" popover="manual" data-direction="s" data-type="label" data-view-component="true" class="sr-only position-absolute" aria-hidden="true" role="tooltip">Additional navigation options</tool-tip>
1201
-
1202
-
1203
- <anchored-position data-target="action-menu.overlay" id="action-menu-0dac17ef-f1fd-4e05-a33d-a026ff79a2fd-overlay" anchor="action-menu-0dac17ef-f1fd-4e05-a33d-a026ff79a2fd-button" align="start" side="outside-bottom" anchor-offset="normal" popover="auto" data-view-component="true" style="inset: 36px auto auto 0px;">
1204
- <div data-view-component="true" class="Overlay Overlay--size-auto">
1205
-
1206
- <div data-view-component="true" class="Overlay-body Overlay-body--paddingNone"> <action-list data-catalyst="">
1207
- <div data-view-component="true">
1208
- <ul aria-labelledby="action-menu-0dac17ef-f1fd-4e05-a33d-a026ff79a2fd-button" id="action-menu-0dac17ef-f1fd-4e05-a33d-a026ff79a2fd-list" role="menu" data-view-component="true" class="ActionListWrap--inset ActionListWrap">
1209
- <li hidden="" data-menu-item="i0code-tab" data-targets="action-list.items" role="none" data-view-component="true" class="ActionListItem">
1210
-
1211
-
1212
- <a tabindex="-1" id="item-1b678917-3d43-4210-8cfe-ef99d8096601" href="/microsoft/vscode" role="menuitem" data-view-component="true" class="ActionListContent ActionListContent--visual16">
1213
- <span class="ActionListItem-visual ActionListItem-visual--leading">
1214
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-code">
1215
- <path d="m11.28 3.22 4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734L13.94 8l-3.72-3.72a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215Zm-6.56 0a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042L2.06 8l3.72 3.72a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L.47 8.53a.75.75 0 0 1 0-1.06Z"></path>
1216
- </svg>
1217
- </span>
1218
-
1219
- <span data-view-component="true" class="ActionListItem-label">
1220
- Code
1221
- </span>
1222
- </a>
1223
-
1224
- </li>
1225
- <li hidden="" data-menu-item="i1issues-tab" data-targets="action-list.items" role="none" data-view-component="true" class="ActionListItem">
1226
-
1227
-
1228
- <a tabindex="-1" id="item-cac6fe88-3fe0-4460-aef0-1ae7b12e1f1b" href="/microsoft/vscode/issues" role="menuitem" data-view-component="true" class="ActionListContent ActionListContent--visual16">
1229
- <span class="ActionListItem-visual ActionListItem-visual--leading">
1230
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-issue-opened">
1231
- <path d="M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"></path><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Z"></path>
1232
- </svg>
1233
- </span>
1234
-
1235
- <span data-view-component="true" class="ActionListItem-label">
1236
- Issues
1237
- </span>
1238
- </a>
1239
-
1240
- </li>
1241
- <li hidden="" data-menu-item="i2pull-requests-tab" data-targets="action-list.items" role="none" data-view-component="true" class="ActionListItem">
1242
-
1243
-
1244
- <a tabindex="-1" id="item-1b9c2630-023f-4c28-84a8-7ee62d1c85e9" href="/microsoft/vscode/pulls" role="menuitem" data-view-component="true" class="ActionListContent ActionListContent--visual16">
1245
- <span class="ActionListItem-visual ActionListItem-visual--leading">
1246
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-git-pull-request">
1247
- <path d="M1.5 3.25a2.25 2.25 0 1 1 3 2.122v5.256a2.251 2.251 0 1 1-1.5 0V5.372A2.25 2.25 0 0 1 1.5 3.25Zm5.677-.177L9.573.677A.25.25 0 0 1 10 .854V2.5h1A2.5 2.5 0 0 1 13.5 5v5.628a2.251 2.251 0 1 1-1.5 0V5a1 1 0 0 0-1-1h-1v1.646a.25.25 0 0 1-.427.177L7.177 3.427a.25.25 0 0 1 0-.354ZM3.75 2.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm0 9.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm8.25.75a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z"></path>
1248
- </svg>
1249
- </span>
1250
-
1251
- <span data-view-component="true" class="ActionListItem-label">
1252
- Pull requests
1253
- </span>
1254
- </a>
1255
-
1256
- </li>
1257
- <li hidden="" data-menu-item="i3actions-tab" data-targets="action-list.items" role="none" data-view-component="true" class="ActionListItem">
1258
-
1259
-
1260
- <a tabindex="-1" id="item-ab2f575c-7d49-4b79-8fc8-8695ce7c00a6" href="/microsoft/vscode/actions" role="menuitem" data-view-component="true" class="ActionListContent ActionListContent--visual16">
1261
- <span class="ActionListItem-visual ActionListItem-visual--leading">
1262
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-play">
1263
- <path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Zm4.879-2.773 4.264 2.559a.25.25 0 0 1 0 .428l-4.264 2.559A.25.25 0 0 1 6 10.559V5.442a.25.25 0 0 1 .379-.215Z"></path>
1264
- </svg>
1265
- </span>
1266
-
1267
- <span data-view-component="true" class="ActionListItem-label">
1268
- Actions
1269
- </span>
1270
- </a>
1271
-
1272
- </li>
1273
- <li hidden="" data-menu-item="i4projects-tab" data-targets="action-list.items" role="none" data-view-component="true" class="ActionListItem">
1274
-
1275
-
1276
- <a tabindex="-1" id="item-5cda3bfc-025f-4546-b222-f8c7e27b30d3" href="/microsoft/vscode/projects" role="menuitem" data-view-component="true" class="ActionListContent ActionListContent--visual16">
1277
- <span class="ActionListItem-visual ActionListItem-visual--leading">
1278
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-table">
1279
- <path d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25ZM6.5 6.5v8h7.75a.25.25 0 0 0 .25-.25V6.5Zm8-1.5V1.75a.25.25 0 0 0-.25-.25H6.5V5Zm-13 1.5v7.75c0 .138.112.25.25.25H5v-8ZM5 5V1.5H1.75a.25.25 0 0 0-.25.25V5Z"></path>
1280
- </svg>
1281
- </span>
1282
-
1283
- <span data-view-component="true" class="ActionListItem-label">
1284
- Projects
1285
- </span>
1286
- </a>
1287
-
1288
- </li>
1289
- <li hidden="" data-menu-item="i5models-tab" data-targets="action-list.items" role="none" data-view-component="true" class="ActionListItem">
1290
-
1291
-
1292
- <a tabindex="-1" id="item-1e595c49-7a81-4b59-9f07-c7542b5217eb" href="/microsoft/vscode/models" role="menuitem" data-view-component="true" class="ActionListContent ActionListContent--visual16">
1293
- <span class="ActionListItem-visual ActionListItem-visual--leading">
1294
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-ai-model">
1295
- <path d="M10.628 7.25a2.25 2.25 0 1 1 0 1.5H8.622a2.25 2.25 0 0 1-2.513 1.466L5.03 12.124a2.25 2.25 0 1 1-1.262-.814l1.035-1.832A2.245 2.245 0 0 1 4.25 8c0-.566.209-1.082.553-1.478L3.768 4.69a2.25 2.25 0 1 1 1.262-.814l1.079 1.908A2.25 2.25 0 0 1 8.622 7.25ZM2.5 2.5a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Zm4 4.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm6.25 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-9.5 5.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Z"></path>
1296
- </svg>
1297
- </span>
1298
-
1299
- <span data-view-component="true" class="ActionListItem-label">
1300
- Models
1301
- </span>
1302
- </a>
1303
-
1304
- </li>
1305
- <li hidden="" data-menu-item="i6wiki-tab" data-targets="action-list.items" role="none" data-view-component="true" class="ActionListItem">
1306
-
1307
-
1308
- <a tabindex="-1" id="item-9134f99c-d51a-49c8-b20b-6c8207dd735e" href="/microsoft/vscode/wiki" role="menuitem" data-view-component="true" class="ActionListContent ActionListContent--visual16">
1309
- <span class="ActionListItem-visual ActionListItem-visual--leading">
1310
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-book">
1311
- <path d="M0 1.75A.75.75 0 0 1 .75 1h4.253c1.227 0 2.317.59 3 1.501A3.743 3.743 0 0 1 11.006 1h4.245a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-.75.75h-4.507a2.25 2.25 0 0 0-1.591.659l-.622.621a.75.75 0 0 1-1.06 0l-.622-.621A2.25 2.25 0 0 0 5.258 13H.75a.75.75 0 0 1-.75-.75Zm7.251 10.324.004-5.073-.002-2.253A2.25 2.25 0 0 0 5.003 2.5H1.5v9h3.757a3.75 3.75 0 0 1 1.994.574ZM8.755 4.75l-.004 7.322a3.752 3.752 0 0 1 1.992-.572H14.5v-9h-3.495a2.25 2.25 0 0 0-2.25 2.25Z"></path>
1312
- </svg>
1313
- </span>
1314
-
1315
- <span data-view-component="true" class="ActionListItem-label">
1316
- Wiki
1317
- </span>
1318
- </a>
1319
-
1320
- </li>
1321
- <li data-menu-item="i7security-tab" data-targets="action-list.items" role="none" data-view-component="true" class="ActionListItem">
1322
-
1323
-
1324
- <a tabindex="-1" id="item-c1150d49-56b3-4781-9f1a-0edbd420dce8" href="/microsoft/vscode/security" role="menuitem" data-view-component="true" class="ActionListContent ActionListContent--visual16">
1325
- <span class="ActionListItem-visual ActionListItem-visual--leading">
1326
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-shield">
1327
- <path d="M7.467.133a1.748 1.748 0 0 1 1.066 0l5.25 1.68A1.75 1.75 0 0 1 15 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.697 1.697 0 0 1-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 0 1 1.217-1.667Zm.61 1.429a.25.25 0 0 0-.153 0l-5.25 1.68a.25.25 0 0 0-.174.238V7c0 1.358.275 2.666 1.057 3.86.784 1.194 2.121 2.34 4.366 3.297a.196.196 0 0 0 .154 0c2.245-.956 3.582-2.104 4.366-3.298C13.225 9.666 13.5 8.36 13.5 7V3.48a.251.251 0 0 0-.174-.237l-5.25-1.68ZM8.75 4.75v3a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 1.5 0ZM9 10.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path>
1328
- </svg>
1329
- </span>
1330
-
1331
- <span data-view-component="true" class="ActionListItem-label">
1332
- Security
1333
- </span>
1334
- </a>
1335
-
1336
- </li>
1337
- <li data-menu-item="i8insights-tab" data-targets="action-list.items" role="none" data-view-component="true" class="ActionListItem">
1338
-
1339
-
1340
- <a tabindex="-1" id="item-33416aea-7fb9-4e65-a539-531dd87611a6" href="/microsoft/vscode/pulse" role="menuitem" data-view-component="true" class="ActionListContent ActionListContent--visual16">
1341
- <span class="ActionListItem-visual ActionListItem-visual--leading">
1342
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-graph">
1343
- <path d="M1.5 1.75V13.5h13.75a.75.75 0 0 1 0 1.5H.75a.75.75 0 0 1-.75-.75V1.75a.75.75 0 0 1 1.5 0Zm14.28 2.53-5.25 5.25a.75.75 0 0 1-1.06 0L7 7.06 4.28 9.78a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042l3.25-3.25a.75.75 0 0 1 1.06 0L10 7.94l4.72-4.72a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Z"></path>
1344
- </svg>
1345
- </span>
1346
-
1347
- <span data-view-component="true" class="ActionListItem-label">
1348
- Insights
1349
- </span>
1350
- </a>
1351
-
1352
- </li>
1353
- </ul>
1354
- </div></action-list>
1355
-
1356
-
1357
- </div>
1358
-
1359
- </div></anchored-position> </focus-group>
1360
- </action-menu></div>
1361
- </nav>
1362
-
1363
- </div>
1364
- </header>
1365
-
1366
-
1367
- <div hidden="hidden" data-view-component="true" class="js-stale-session-flash stale-session-flash flash flash-warn flash-full">
1368
-
1369
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-alert">
1370
- <path d="M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path>
1371
- </svg>
1372
- <span class="js-stale-session-flash-signed-in" hidden="">You signed in with another tab or window. <a class="Link--inTextBlock" href="">Reload</a> to refresh your session.</span>
1373
- <span class="js-stale-session-flash-signed-out" hidden="">You signed out in another tab or window. <a class="Link--inTextBlock" href="">Reload</a> to refresh your session.</span>
1374
- <span class="js-stale-session-flash-switched" hidden="">You switched accounts on another tab or window. <a class="Link--inTextBlock" href="">Reload</a> to refresh your session.</span>
1375
-
1376
- <button id="icon-button-64d09392-5b09-43f1-828e-6f159fe89412" aria-labelledby="tooltip-871ffa17-2adc-43bb-8732-61a3e90b3260" type="button" data-view-component="true" class="Button Button--iconOnly Button--invisible Button--medium flash-close js-flash-close"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-x Button-visual">
1377
- <path d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 8l3.22 3.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 9.06l-3.22 3.22a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06Z"></path>
1378
- </svg>
1379
- </button><tool-tip id="tooltip-871ffa17-2adc-43bb-8732-61a3e90b3260" for="icon-button-64d09392-5b09-43f1-828e-6f159fe89412" popover="manual" data-direction="s" data-type="label" data-view-component="true" class="sr-only position-absolute" aria-hidden="true" role="tooltip">Dismiss alert</tool-tip>
1380
-
1381
-
1382
-
1383
- </div>
1384
-
1385
-
1386
- </div>
1387
-
1388
- <div id="start-of-content" class="show-on-focus"></div>
1389
-
1390
-
1391
-
1392
-
1393
-
1394
-
1395
-
1396
-
1397
- <div id="js-flash-container" class="flash-container" data-turbo-replace="">
1398
-
1399
-
1400
-
1401
-
1402
- <template class="js-flash-template">
1403
-
1404
- <div class="flash flash-full {{ className }}">
1405
- <div>
1406
- <button autofocus="" class="flash-close js-flash-close" type="button" aria-label="Dismiss this message">
1407
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-x">
1408
- <path d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 8l3.22 3.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 9.06l-3.22 3.22a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06Z"></path>
1409
- </svg>
1410
- </button>
1411
- <div aria-atomic="true" role="alert" class="js-flash-alert">
1412
-
1413
- <div>{{ message }}</div>
1414
-
1415
- </div>
1416
- </div>
1417
- </div>
1418
- </template>
1419
- </div>
1420
-
1421
-
1422
-
1423
- <notification-shelf-watcher data-base-url="https://github.com/notifications/beta/shelf" data-channel="eyJjIjoibm90aWZpY2F0aW9uLWNoYW5nZWQ6MTE1NzUwNzYiLCJ0IjoxNzY4NTg3OTQ3fQ==--3b4bfeea09b334992ef4fc79762048ae90ae3e129d7362b9619a69b2a9eaf5b7" data-view-component="true" class="js-socket-channel" data-refresh-delay="500" data-catalyst="" data-throttle-delay="5000"></notification-shelf-watcher>
1424
- <div hidden="" data-initial="" data-target="notification-shelf-watcher.placeholder"></div>
1425
-
1426
-
1427
-
1428
-
1429
-
1430
-
1431
- <div class="application-main " data-commit-hovercards-enabled="" data-discussion-hovercards-enabled="" data-issue-and-pr-hovercards-enabled="" data-project-hovercards-enabled="">
1432
- <div itemscope="" itemtype="http://schema.org/SoftwareSourceCode" class="">
1433
- <main id="js-repo-pjax-container">
1434
-
1435
-
1436
-
1437
-
1438
- <template class="js-user-list-create-dialog-template" data-label="Create list">
1439
- <div class="Box-header">
1440
- <h2 class="Box-title">Create list</h2>
1441
- </div>
1442
- <!-- '"` --><!-- </textarea></xmp> --><form class="Box-body d-flex flex-column p-3 js-user-list-form" data-turbo="false" action="/stars/minhlucvan/lists" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="Z7XDLQJPMYR1yMekEVOTzqVSApNdz1UMtdPTipcx5Mr4U-ATsBVbpEnC2B9NBVPtA_oANpcOehJS2oLI-YxVrA" autocomplete="off">
1443
- <p class="color-fg-subtle f5 mb-3">Create a list to organize your starred repositories.</p>
1444
- <input type="hidden" name="repository_id" value="{{ repositoryId }}">
1445
-
1446
- <div class="form-group mx-0 mt-0 mb-2 js-user-list-input-container js-characters-remaining-container position-relative">
1447
- <auto-check src="/stars/minhlucvan/list-check?attr=name" required="">
1448
- <text-expander keys=":" data-emoji-url="/autocomplete/emoji">
1449
- <input type="text" name="user_list[name]" class="form-control js-user-list-input js-characters-remaining-field" placeholder="⭐️ Name this list" value="{{ placeholderName }}" aria-label="List name" maxlength="32" data-maxlength="32" autofocus="" required="">
1450
- </text-expander>
1451
- <input type="hidden" value="hsz-bXMhjj7raJzPzxRc_PNpo4Jh9HouOcmW7VEyM6SEyxgeeyCzyQWTm7bQ-t1hbv03EvRR5_ieeEnORdeQSQ" data-csrf="true">
1452
- </auto-check>
1453
- <p class="note error position-relative js-user-list-error" hidden="">
1454
- Name .
1455
- </p>
1456
- <p class="mt-1 text-small float-right js-characters-remaining" data-suffix="remaining" hidden="">
1457
- 32 remaining
1458
- </p>
1459
- </div>
1460
- <div class="form-group mx-0 mt-0 mb-2 js-user-list-input-container js-characters-remaining-container position-relative">
1461
- <text-expander keys=":" data-emoji-url="/autocomplete/emoji">
1462
- <textarea name="user_list[description]" class="form-control js-user-list-input js-characters-remaining-field" placeholder="Write a description" aria-label="List description" maxlength="160" data-maxlength="160" style="height: 74px; min-height: 74px"></textarea>
1463
- </text-expander>
1464
- <p class="note error position-relative js-user-list-error" hidden="">
1465
- Description .
1466
- </p>
1467
- <p class="mt-1 text-small float-right js-characters-remaining" data-suffix="remaining" hidden="">
1468
- 160 remaining
1469
- </p>
1470
- </div>
1471
- <div hidden="hidden" data-generic-message="Unable to save your list at this time." data-view-component="true" class="js-user-list-base flash flash-error mx-0 mt-0 mb-2">
1472
-
1473
- .
1474
-
1475
-
1476
-
1477
- </div>
1478
- <div class="FormControl-checkbox-wrap">
1479
- <input name="user_list[private]" type="hidden" value="0" autocomplete="off"><input hidden_input="true" aria-describedby="caption-9ceca25f-0e5d-406e-b296-8af7e73203b8" class="FormControl-checkbox" type="checkbox" value="1" name="user_list[private]" id="user_list[private]">
1480
- <span class="FormControl-checkbox-labelWrap">
1481
- <label class="FormControl-label" for="user_list[private]">
1482
- Private
1483
- </label> <span class="FormControl-caption" id="caption-9ceca25f-0e5d-406e-b296-8af7e73203b8">Enabling this makes the list visible only to you.</span>
1484
-
1485
- </span>
1486
- </div> <button data-disable-invalid="true" data-submitting-message="Creating..." type="submit" disabled="disabled" data-view-component="true" class="Button--primary Button--medium Button Button--fullWidth mt-2"> <span class="Button-content">
1487
- <span class="Button-label">Create</span>
1488
- </span>
1489
- </button>
1490
-
1491
-
1492
- <p class="note f6 mt-2 mb-0">
1493
- <strong>Tip:</strong> type <code>:</code> to add emoji to the name or description.
1494
- </p>
1495
- </form>
1496
- </template>
1497
-
1498
-
1499
-
1500
-
1501
-
1502
-
1503
-
1504
-
1505
-
1506
-
1507
-
1508
-
1509
-
1510
-
1511
-
1512
-
1513
- <div id="repository-container-header" class="pt-3 hide-full-screen" data-turbo-replace="">
1514
-
1515
- <div class="d-flex flex-nowrap flex-justify-end mb-3 container-xl px-3 px-lg-5" style="gap: 1rem;">
1516
-
1517
- <div class="flex-auto min-width-0 width-fit">
1518
- <div id="repo-title-component" class=" d-flex flex-nowrap flex-items-center wb-break-word f3 text-normal">
1519
- <img class="avatar mr-2 d-none d-md-block" alt="Owner avatar" src="https://avatars.githubusercontent.com/u/6154722?s=48&amp;v=4" width="24" height="24">
1520
-
1521
-
1522
- <strong itemprop="name" class="mr-2 flex-self-stretch d-none d-md-block no-wrap overflow-x-hidden">
1523
- <a data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" class="d-block overflow-x-hidden color-fg-default" style="text-overflow: ellipsis;" href="/microsoft/vscode">vscode</a>
1524
- </strong>
1525
-
1526
- <span></span><span class="Label Label--secondary v-align-middle mr-1 d-none d-md-block">Public</span>
1527
- </div>
1528
-
1529
- <div class="d-none d-md-block">
1530
- </div>
1531
-
1532
-
1533
- </div>
1534
-
1535
- <div id="repository-details-container" class="flex-shrink-0" data-turbo-replace="" style="max-width: 70%;">
1536
- <ul class="pagehead-actions flex-shrink-0 d-none d-md-inline" style="padding: 2px 0;">
1537
-
1538
-
1539
-
1540
- <li>
1541
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/primer-react.eabf1a5c8951946a1f00.module.css">
1542
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/notifications-subscriptions-menu.933100a30c03fd4e8ae4.module.css">
1543
-
1544
- <react-partial partial-name="notifications-subscriptions-menu" data-ssr="false" data-attempted-ssr="false" data-react-profiling="true" data-catalyst="" class="loaded">
1545
-
1546
- <script type="application/json" data-target="react-partial.embeddedData">{"props":{"subscriptionType":"none","repositoryId":41881900,"repositoryName":"microsoft/vscode","watchersCount":3388,"subscribableThreadTypes":[{"name":"Issue","enabled":true,"subscribed":false},{"name":"PullRequest","enabled":true,"subscribed":false},{"name":"Release","enabled":true,"subscribed":false},{"name":"Discussion","enabled":false,"subscribed":false},{"name":"SecurityAlert","enabled":true,"subscribed":false}],"repositoryLabels":[],"showLabelSubscriptions":false}}</script>
1547
- <div data-target="react-partial.reactRoot"><div class="d-md-none"><button type="button" data-testid="notifications-subscriptions-menu-button-desktop" aria-label="Watch: Participating in microsoft/vscode" aria-haspopup="true" aria-expanded="false" tabindex="0" class="prc-Button-ButtonBase-9n-Xk NotificationsSubscriptionsMenu-module__watchButton--ccU5u" data-loading="false" data-size="medium" data-variant="default" id="_r_e_"><span data-component="buttonContent" data-align="center" class="prc-Button-ButtonContent-Iohp5"><span data-component="leadingVisual" class="prc-Button-Visual-YNt2F prc-Button-VisualWrap-E4cnq"><svg aria-hidden="true" focusable="false" class="octicon octicon-eye" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="M8 2c1.981 0 3.671.992 4.933 2.078 1.27 1.091 2.187 2.345 2.637 3.023a1.62 1.62 0 0 1 0 1.798c-.45.678-1.367 1.932-2.637 3.023C11.67 13.008 9.981 14 8 14c-1.981 0-3.671-.992-4.933-2.078C1.797 10.83.88 9.576.43 8.898a1.62 1.62 0 0 1 0-1.798c.45-.677 1.367-1.931 2.637-3.022C4.33 2.992 6.019 2 8 2ZM1.679 7.932a.12.12 0 0 0 0 .136c.411.622 1.241 1.75 2.366 2.717C5.176 11.758 6.527 12.5 8 12.5c1.473 0 2.825-.742 3.955-1.715 1.124-.967 1.954-2.096 2.366-2.717a.12.12 0 0 0 0-.136c-.412-.621-1.242-1.75-2.366-2.717C10.824 4.242 9.473 3.5 8 3.5c-1.473 0-2.825.742-3.955 1.715-1.124.967-1.954 2.096-2.366 2.717ZM8 10a2 2 0 1 1-.001-3.999A2 2 0 0 1 8 10Z"></path></svg></span><span data-component="text" class="prc-Button-Label-FWkx3"></span></span></button></div><div class="d-none d-md-block"><button type="button" data-testid="notifications-subscriptions-menu-button-mobile" aria-label="Watch: Participating in microsoft/vscode" aria-haspopup="true" aria-expanded="false" tabindex="0" class="prc-Button-ButtonBase-9n-Xk NotificationsSubscriptionsMenu-module__ActionMenuButton--UgYy6" data-loading="false" data-size="small" data-variant="default" id="_r_h_"><span data-component="buttonContent" data-align="center" class="prc-Button-ButtonContent-Iohp5"><span data-component="leadingVisual" class="prc-Button-Visual-YNt2F prc-Button-VisualWrap-E4cnq"><svg aria-hidden="true" focusable="false" class="octicon octicon-eye" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="M8 2c1.981 0 3.671.992 4.933 2.078 1.27 1.091 2.187 2.345 2.637 3.023a1.62 1.62 0 0 1 0 1.798c-.45.678-1.367 1.932-2.637 3.023C11.67 13.008 9.981 14 8 14c-1.981 0-3.671-.992-4.933-2.078C1.797 10.83.88 9.576.43 8.898a1.62 1.62 0 0 1 0-1.798c.45-.677 1.367-1.931 2.637-3.022C4.33 2.992 6.019 2 8 2ZM1.679 7.932a.12.12 0 0 0 0 .136c.411.622 1.241 1.75 2.366 2.717C5.176 11.758 6.527 12.5 8 12.5c1.473 0 2.825-.742 3.955-1.715 1.124-.967 1.954-2.096 2.366-2.717a.12.12 0 0 0 0-.136c-.412-.621-1.242-1.75-2.366-2.717C10.824 4.242 9.473 3.5 8 3.5c-1.473 0-2.825.742-3.955 1.715-1.124.967-1.954 2.096-2.366 2.717ZM8 10a2 2 0 1 1-.001-3.999A2 2 0 0 1 8 10Z"></path></svg></span><span data-component="text" class="prc-Button-Label-FWkx3">Watch<span class="ml-2 Counter rounded-3 NotificationsSubscriptionsMenu-module__watchCounter--vgIup">3388</span></span></span><span data-component="trailingAction" class="prc-Button-Visual-YNt2F prc-Button-VisualWrap-E4cnq"><svg aria-hidden="true" focusable="false" class="octicon octicon-triangle-down" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="m4.427 7.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 7H4.604a.25.25 0 0 0-.177.427Z"></path></svg></span></button></div><script type="application/json" id="__PRIMER_DATA__r_d___">{"resolvedServerColorMode":"night"}</script></div>
1548
- </react-partial>
1549
-
1550
-
1551
-
1552
-
1553
- </li>
1554
-
1555
- <li>
1556
- <div data-view-component="true" class="BtnGroup d-flex">
1557
- <a icon="repo-forked" id="fork-button" href="/microsoft/vscode/fork" data-hydro-click="{&quot;event_type&quot;:&quot;repository.click&quot;,&quot;payload&quot;:{&quot;target&quot;:&quot;FORK_BUTTON&quot;,&quot;repository_id&quot;:41881900,&quot;originating_url&quot;:&quot;https://github.com/microsoft/vscode&quot;,&quot;user_id&quot;:11575076}}" data-hydro-click-hmac="88d3fc36345e0db8a41e9bcc4612b7a7960f6be6761be7c11ba36f3bf3b25006" data-ga-click="Repository, show fork modal, action:files#disambiguate; text:Fork" data-view-component="true" class="btn-sm btn BtnGroup-item" aria-describedby="tooltip-2534da9d-c679-4eb4-b3f1-ae2fbdbd9944"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-repo-forked mr-2">
1558
- <path d="M5 5.372v.878c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75v-.878a2.25 2.25 0 1 1 1.5 0v.878a2.25 2.25 0 0 1-2.25 2.25h-1.5v2.128a2.251 2.251 0 1 1-1.5 0V8.5h-1.5A2.25 2.25 0 0 1 3.5 6.25v-.878a2.25 2.25 0 1 1 1.5 0ZM5 3.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm6.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-3 8.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z"></path>
1559
- </svg>Fork
1560
- <span id="repo-network-counter" data-pjax-replace="true" data-turbo-replace="true" title="37,413" data-view-component="true" class="Counter">37.4k</span>
1561
- <tool-tip id="tooltip-2534da9d-c679-4eb4-b3f1-ae2fbdbd9944" for="fork-button" popover="manual" data-direction="s" data-type="description" data-view-component="true" class="position-absolute sr-only" role="tooltip" style="--tool-tip-position-top: 148px; --tool-tip-position-left: 500.70703125px;">Fork your own copy of microsoft/vscode</tool-tip>
1562
- </a>
1563
- <details group_item="true" id="my-forks-menu-41881900" data-view-component="true" class="details-reset details-overlay BtnGroup-parent d-inline-block position-relative">
1564
- <summary aria-label="See your forks of this repository" data-view-component="true" class="btn-sm btn BtnGroup-item px-2 float-none" aria-haspopup="menu" role="button"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-triangle-down">
1565
- <path d="m4.427 7.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 7H4.604a.25.25 0 0 0-.177.427Z"></path>
1566
- </svg>
1567
- </summary>
1568
- <details-menu class="SelectMenu right-0" src="/microsoft/vscode/my_forks_menu_content?can_fork=true" role="menu">
1569
- <div class="SelectMenu-modal">
1570
- <button class="SelectMenu-closeButton position-absolute right-0 m-2" type="button" aria-label="Close menu" data-toggle-for="my-forks-menu-41881900">
1571
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-x">
1572
- <path d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 8l3.22 3.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 9.06l-3.22 3.22a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06Z"></path>
1573
- </svg>
1574
- </button>
1575
- <div id="filter-menu-45fe21" class="d-flex flex-column flex-1 overflow-hidden">
1576
- <div class="SelectMenu-list">
1577
-
1578
- <include-fragment aria-label="Loading" data-nonce="v2:03b0f735-7e9b-2994-f629-ec1f21c8f2bb" data-view-component="true" class="SelectMenu-loading">
1579
-
1580
- <p data-show-on-error="" hidden="">
1581
- Forks could not be loaded
1582
- </p>
1583
- <span data-hide-on-error="">
1584
- <span data-view-component="true">
1585
- <svg role="menuitem" style="box-sizing: content-box; color: var(--color-icon-primary);" width="32" height="32" viewBox="0 0 16 16" fill="none" aria-hidden="true" data-view-component="true" class="anim-rotate">
1586
- <circle cx="8" cy="8" r="7" stroke="currentColor" stroke-opacity="0.25" stroke-width="2" vector-effect="non-scaling-stroke" fill="none"></circle>
1587
- <path d="M15 8a7.002 7.002 0 00-7-7" stroke="currentColor" stroke-width="2" stroke-linecap="round" vector-effect="non-scaling-stroke"></path>
1588
- </svg> <span class="sr-only">Loading</span>
1589
- </span>
1590
- </span>
1591
-
1592
- <div data-show-on-forbidden-error="" hidden="">
1593
- <div class="Box">
1594
- <div class="blankslate-container">
1595
- <div data-view-component="true" class="blankslate blankslate-spacious color-bg-default rounded-2">
1596
-
1597
-
1598
- <h3 data-view-component="true" class="blankslate-heading"> Uh oh!
1599
- </h3>
1600
- <p data-view-component="true"> </p><p class="color-fg-muted my-2 mb-2 ws-normal">There was an error while loading. <a class="Link--inTextBlock" data-turbo="false" href="" aria-label="Please reload this page">Please reload this page</a>.</p>
1601
- <p></p>
1602
-
1603
- </div> </div>
1604
- </div> </div>
1605
- </include-fragment> </div>
1606
-
1607
- </div>
1608
- </div>
1609
- </details-menu>
1610
- </details></div>
1611
- </li>
1612
-
1613
- <li>
1614
- <template class="js-unstar-confirmation-dialog-template" aria-live="polite">
1615
- <div class="Box-header">
1616
- <h2 class="Box-title">Unstar this repository?</h2>
1617
- </div>
1618
- <div class="Box-body">
1619
- <p class="mb-3">
1620
- This will remove {{ repoNameWithOwner }} from the {{ listsWithCount }} that it's been added to.
1621
- </p>
1622
- <div class="form-actions">
1623
- <!-- '"` --><!-- </textarea></xmp> --><form class="js-social-confirmation-form" data-turbo="false" action="{{ confirmUrl }}" accept-charset="UTF-8" method="post">
1624
- <input type="hidden" name="authenticity_token" value="{{ confirmCsrfToken }}">
1625
- <input type="hidden" name="confirm" value="true">
1626
- <button data-close-dialog="true" type="submit" data-view-component="true" class="btn-danger btn width-full"> Unstar
1627
- </button>
1628
- </form> </div>
1629
- </div>
1630
- </template>
1631
-
1632
- <div data-view-component="true" class="js-toggler-container js-social-container starring-container d-flex">
1633
- <div data-view-component="true" class="starred BtnGroup flex-1 ml-0">
1634
- <!-- '"` --><!-- </textarea></xmp> --><form class="js-social-form BtnGroup-parent flex-auto js-deferred-toggler-target" data-turbo="false" action="/microsoft/vscode/unstar" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="VXy2lncSNHb822q865xyOySt1Xy04DLsf9K6MooRlCdb9MebJ4TxQ5pW7Y4jUusY_iwCi-zvQ6hg5iAsFeLaXw" autocomplete="off">
1635
- <input type="hidden" value="o09qwg2u1BLtfifJnOQpoCQNMoHQIqYR1eJdEEdKmMKtxxvPXTgRJ4vzoPtUKrCD_ozldogt11XK1scO2LnWug" data-csrf="true" class="js-confirm-csrf-token">
1636
- <input type="hidden" name="context" value="repository">
1637
- <button data-hydro-click="{&quot;event_type&quot;:&quot;repository.click&quot;,&quot;payload&quot;:{&quot;target&quot;:&quot;UNSTAR_BUTTON&quot;,&quot;repository_id&quot;:41881900,&quot;originating_url&quot;:&quot;https://github.com/microsoft/vscode&quot;,&quot;user_id&quot;:11575076}}" data-hydro-click-hmac="da524b7823fa15e038cb781106a5571df59eadb1c8945f70ffc954040aedb8c2" data-ga-click="Repository, click unstar button, action:files#disambiguate; text:Unstar" data-aria-prefix="Starred, click to unstar this repository" aria-label="Starred, click to unstar this repository (180737)" type="submit" data-view-component="true" class="rounded-left-2 btn-with-aria-count btn-sm btn BtnGroup-item"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-star-fill starred-button-icon d-inline-block mr-2">
1638
- <path d="M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25Z"></path>
1639
- </svg><span data-view-component="true" class="d-inline">
1640
- Starred
1641
- </span> <span id="repo-stars-counter-unstar" aria-label="180737 users starred this repository" data-singular-suffix="user starred this repository" data-plural-suffix="users starred this repository" data-turbo-replace="true" title="180,737" data-view-component="true" class="Counter js-social-count">181k</span>
1642
- </button></form> <details id="details-user-list-41881900-starred" data-view-component="true" class="details-reset details-overlay BtnGroup-parent js-user-list-menu d-flex position-relative">
1643
- <summary aria-label="Add this repository to a list" data-view-component="true" class="btn-sm btn BtnGroup-item px-2 float-none" aria-haspopup="menu" role="button"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-triangle-down">
1644
- <path d="m4.427 7.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 7H4.604a.25.25 0 0 0-.177.427Z"></path>
1645
- </svg>
1646
- </summary>
1647
- <details-menu class="SelectMenu right-0" src="/microsoft/vscode/lists" role="menu">
1648
- <div class="SelectMenu-modal">
1649
- <header class="SelectMenu-header">
1650
- <h4 class="SelectMenu-title f5" id="user-lists-menu">Lists</h4>
1651
-
1652
- <button class="SelectMenu-closeButton" type="button" aria-label="Close menu" data-toggle-for="details-user-list-41881900-starred">
1653
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-x">
1654
- <path d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 8l3.22 3.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 9.06l-3.22 3.22a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06Z"></path>
1655
- </svg>
1656
- </button>
1657
- </header>
1658
- <div id="filter-menu-5408e1" class="d-flex flex-column flex-1 overflow-hidden">
1659
- <div class="SelectMenu-list">
1660
-
1661
- <include-fragment aria-label="Loading" data-nonce="v2:03b0f735-7e9b-2994-f629-ec1f21c8f2bb" data-view-component="true" class="SelectMenu-loading">
1662
-
1663
- <span data-view-component="true">
1664
- <svg role="menuitem" style="box-sizing: content-box; color: var(--color-icon-primary);" width="32" height="32" viewBox="0 0 16 16" fill="none" aria-hidden="true" data-view-component="true" class="anim-rotate">
1665
- <circle cx="8" cy="8" r="7" stroke="currentColor" stroke-opacity="0.25" stroke-width="2" vector-effect="non-scaling-stroke" fill="none"></circle>
1666
- <path d="M15 8a7.002 7.002 0 00-7-7" stroke="currentColor" stroke-width="2" stroke-linecap="round" vector-effect="non-scaling-stroke"></path>
1667
- </svg> <span class="sr-only">Loading</span>
1668
- </span>
1669
-
1670
- <div data-show-on-forbidden-error="" hidden="">
1671
- <div class="Box">
1672
- <div class="blankslate-container">
1673
- <div data-view-component="true" class="blankslate blankslate-spacious color-bg-default rounded-2">
1674
-
1675
-
1676
- <h3 data-view-component="true" class="blankslate-heading"> Uh oh!
1677
- </h3>
1678
- <p data-view-component="true"> </p><p class="color-fg-muted my-2 mb-2 ws-normal">There was an error while loading. <a class="Link--inTextBlock" data-turbo="false" href="" aria-label="Please reload this page">Please reload this page</a>.</p>
1679
- <p></p>
1680
-
1681
- </div> </div>
1682
- </div> </div>
1683
- </include-fragment> </div>
1684
-
1685
- </div>
1686
- </div>
1687
- </details-menu>
1688
- </details>
1689
- </div>
1690
- <div data-view-component="true" class="unstarred BtnGroup ml-0 flex-1">
1691
- <!-- '"` --><!-- </textarea></xmp> --><form class="js-social-form BtnGroup-parent flex-auto" data-turbo="false" action="/microsoft/vscode/star" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="aG0JSWDsChlTY-AHokLE9vJFutGGZvsvA3wMJRnY3yn2-1jiv299a6t4CAHHx2xiUGgxrA-HlWr0g586733QSA" autocomplete="off">
1692
- <input type="hidden" name="context" value="repository">
1693
- <button data-hydro-click="{&quot;event_type&quot;:&quot;repository.click&quot;,&quot;payload&quot;:{&quot;target&quot;:&quot;STAR_BUTTON&quot;,&quot;repository_id&quot;:41881900,&quot;originating_url&quot;:&quot;https://github.com/microsoft/vscode&quot;,&quot;user_id&quot;:11575076}}" data-hydro-click-hmac="e35fa923516bbf54ccd6e7efe54a3499bbcbcf61c358daeee518fffed620b400" data-ga-click="Repository, click star button, action:files#disambiguate; text:Star" data-aria-prefix="Star this repository" aria-label="Star this repository (180737)" type="submit" data-view-component="true" class="js-toggler-target rounded-left-2 btn-with-aria-count btn-sm btn BtnGroup-item"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-star d-inline-block mr-2">
1694
- <path d="M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25Zm0 2.445L6.615 5.5a.75.75 0 0 1-.564.41l-3.097.45 2.24 2.184a.75.75 0 0 1 .216.664l-.528 3.084 2.769-1.456a.75.75 0 0 1 .698 0l2.77 1.456-.53-3.084a.75.75 0 0 1 .216-.664l2.24-2.183-3.096-.45a.75.75 0 0 1-.564-.41L8 2.694Z"></path>
1695
- </svg><span data-view-component="true" class="d-inline">
1696
- Star
1697
- </span> <span id="repo-stars-counter-star" aria-label="180737 users starred this repository" data-singular-suffix="user starred this repository" data-plural-suffix="users starred this repository" data-turbo-replace="true" title="180,737" data-view-component="true" class="Counter js-social-count">181k</span>
1698
- </button></form> <details id="details-user-list-41881900-unstarred" data-view-component="true" class="details-reset details-overlay BtnGroup-parent js-user-list-menu d-flex position-relative">
1699
- <summary aria-label="Add this repository to a list" data-view-component="true" class="btn-sm btn BtnGroup-item px-2 float-none" aria-haspopup="menu" role="button"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-triangle-down">
1700
- <path d="m4.427 7.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 7H4.604a.25.25 0 0 0-.177.427Z"></path>
1701
- </svg>
1702
- </summary>
1703
- <details-menu class="SelectMenu right-0" src="/microsoft/vscode/lists" role="menu">
1704
- <div class="SelectMenu-modal">
1705
- <header class="SelectMenu-header">
1706
- <h4 class="SelectMenu-title f5" id="user-lists-menu">Lists</h4>
1707
-
1708
- <button class="SelectMenu-closeButton" type="button" aria-label="Close menu" data-toggle-for="details-user-list-41881900-unstarred">
1709
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-x">
1710
- <path d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 8l3.22 3.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 9.06l-3.22 3.22a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06Z"></path>
1711
- </svg>
1712
- </button>
1713
- </header>
1714
- <div id="filter-menu-81fde2" class="d-flex flex-column flex-1 overflow-hidden">
1715
- <div class="SelectMenu-list">
1716
-
1717
- <include-fragment aria-label="Loading" data-nonce="v2:03b0f735-7e9b-2994-f629-ec1f21c8f2bb" data-view-component="true" class="SelectMenu-loading">
1718
-
1719
- <span data-view-component="true">
1720
- <svg role="menuitem" style="box-sizing: content-box; color: var(--color-icon-primary);" width="32" height="32" viewBox="0 0 16 16" fill="none" aria-hidden="true" data-view-component="true" class="anim-rotate">
1721
- <circle cx="8" cy="8" r="7" stroke="currentColor" stroke-opacity="0.25" stroke-width="2" vector-effect="non-scaling-stroke" fill="none"></circle>
1722
- <path d="M15 8a7.002 7.002 0 00-7-7" stroke="currentColor" stroke-width="2" stroke-linecap="round" vector-effect="non-scaling-stroke"></path>
1723
- </svg> <span class="sr-only">Loading</span>
1724
- </span>
1725
-
1726
- <div data-show-on-forbidden-error="" hidden="">
1727
- <div class="Box">
1728
- <div class="blankslate-container">
1729
- <div data-view-component="true" class="blankslate blankslate-spacious color-bg-default rounded-2">
1730
-
1731
-
1732
- <h3 data-view-component="true" class="blankslate-heading"> Uh oh!
1733
- </h3>
1734
- <p data-view-component="true"> </p><p class="color-fg-muted my-2 mb-2 ws-normal">There was an error while loading. <a class="Link--inTextBlock" data-turbo="false" href="" aria-label="Please reload this page">Please reload this page</a>.</p>
1735
- <p></p>
1736
-
1737
- </div> </div>
1738
- </div> </div>
1739
- </include-fragment> </div>
1740
-
1741
- </div>
1742
- </div>
1743
- </details-menu>
1744
- </details>
1745
- </div></div>
1746
- </li>
1747
-
1748
- </ul>
1749
-
1750
- </div>
1751
- </div>
1752
-
1753
- <div class=" container-xl ">
1754
- <div id="responsive-meta-container" data-turbo-replace="">
1755
- <div class="d-block d-md-none mb-2 px-3 px-md-4 px-lg-5">
1756
- <div class="d-flex gap-2 mt-n3 mb-3 flex-wrap">
1757
- <div class="d-flex flex-row gap-2">
1758
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/primer-react.eabf1a5c8951946a1f00.module.css">
1759
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/notifications-subscriptions-menu.933100a30c03fd4e8ae4.module.css">
1760
-
1761
- <react-partial partial-name="notifications-subscriptions-menu" data-ssr="false" data-attempted-ssr="false" data-react-profiling="true" data-catalyst="" class="loaded">
1762
-
1763
- <script type="application/json" data-target="react-partial.embeddedData">{"props":{"subscriptionType":"none","repositoryId":41881900,"repositoryName":"microsoft/vscode","watchersCount":3388,"subscribableThreadTypes":[{"name":"Issue","enabled":true,"subscribed":false},{"name":"PullRequest","enabled":true,"subscribed":false},{"name":"Release","enabled":true,"subscribed":false},{"name":"Discussion","enabled":false,"subscribed":false},{"name":"SecurityAlert","enabled":true,"subscribed":false}],"repositoryLabels":[],"showLabelSubscriptions":false}}</script>
1764
- <div data-target="react-partial.reactRoot"><div class="d-md-none"><button type="button" data-testid="notifications-subscriptions-menu-button-desktop" aria-label="Watch: Participating in microsoft/vscode" aria-haspopup="true" aria-expanded="false" tabindex="0" class="prc-Button-ButtonBase-9n-Xk NotificationsSubscriptionsMenu-module__watchButton--ccU5u" data-loading="false" data-size="medium" data-variant="default" id="_r_3_"><span data-component="buttonContent" data-align="center" class="prc-Button-ButtonContent-Iohp5"><span data-component="leadingVisual" class="prc-Button-Visual-YNt2F prc-Button-VisualWrap-E4cnq"><svg aria-hidden="true" focusable="false" class="octicon octicon-eye" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="M8 2c1.981 0 3.671.992 4.933 2.078 1.27 1.091 2.187 2.345 2.637 3.023a1.62 1.62 0 0 1 0 1.798c-.45.678-1.367 1.932-2.637 3.023C11.67 13.008 9.981 14 8 14c-1.981 0-3.671-.992-4.933-2.078C1.797 10.83.88 9.576.43 8.898a1.62 1.62 0 0 1 0-1.798c.45-.677 1.367-1.931 2.637-3.022C4.33 2.992 6.019 2 8 2ZM1.679 7.932a.12.12 0 0 0 0 .136c.411.622 1.241 1.75 2.366 2.717C5.176 11.758 6.527 12.5 8 12.5c1.473 0 2.825-.742 3.955-1.715 1.124-.967 1.954-2.096 2.366-2.717a.12.12 0 0 0 0-.136c-.412-.621-1.242-1.75-2.366-2.717C10.824 4.242 9.473 3.5 8 3.5c-1.473 0-2.825.742-3.955 1.715-1.124.967-1.954 2.096-2.366 2.717ZM8 10a2 2 0 1 1-.001-3.999A2 2 0 0 1 8 10Z"></path></svg></span><span data-component="text" class="prc-Button-Label-FWkx3"></span></span></button></div><div class="d-none d-md-block"><button type="button" data-testid="notifications-subscriptions-menu-button-mobile" aria-label="Watch: Participating in microsoft/vscode" aria-haspopup="true" aria-expanded="false" tabindex="0" class="prc-Button-ButtonBase-9n-Xk NotificationsSubscriptionsMenu-module__ActionMenuButton--UgYy6" data-loading="false" data-size="small" data-variant="default" id="_r_6_"><span data-component="buttonContent" data-align="center" class="prc-Button-ButtonContent-Iohp5"><span data-component="leadingVisual" class="prc-Button-Visual-YNt2F prc-Button-VisualWrap-E4cnq"><svg aria-hidden="true" focusable="false" class="octicon octicon-eye" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="M8 2c1.981 0 3.671.992 4.933 2.078 1.27 1.091 2.187 2.345 2.637 3.023a1.62 1.62 0 0 1 0 1.798c-.45.678-1.367 1.932-2.637 3.023C11.67 13.008 9.981 14 8 14c-1.981 0-3.671-.992-4.933-2.078C1.797 10.83.88 9.576.43 8.898a1.62 1.62 0 0 1 0-1.798c.45-.677 1.367-1.931 2.637-3.022C4.33 2.992 6.019 2 8 2ZM1.679 7.932a.12.12 0 0 0 0 .136c.411.622 1.241 1.75 2.366 2.717C5.176 11.758 6.527 12.5 8 12.5c1.473 0 2.825-.742 3.955-1.715 1.124-.967 1.954-2.096 2.366-2.717a.12.12 0 0 0 0-.136c-.412-.621-1.242-1.75-2.366-2.717C10.824 4.242 9.473 3.5 8 3.5c-1.473 0-2.825.742-3.955 1.715-1.124.967-1.954 2.096-2.366 2.717ZM8 10a2 2 0 1 1-.001-3.999A2 2 0 0 1 8 10Z"></path></svg></span><span data-component="text" class="prc-Button-Label-FWkx3">Watch<span class="ml-2 Counter rounded-3 NotificationsSubscriptionsMenu-module__watchCounter--vgIup">3388</span></span></span><span data-component="trailingAction" class="prc-Button-Visual-YNt2F prc-Button-VisualWrap-E4cnq"><svg aria-hidden="true" focusable="false" class="octicon octicon-triangle-down" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="m4.427 7.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 7H4.604a.25.25 0 0 0-.177.427Z"></path></svg></span></button></div><script type="application/json" id="__PRIMER_DATA__r_2___">{"resolvedServerColorMode":"night"}</script></div>
1765
- </react-partial>
1766
-
1767
-
1768
-
1769
- <div data-view-component="true" class="BtnGroup d-flex">
1770
- <a id="fork-icon-button" variant="small" group_item="true" href="/microsoft/vscode/fork" data-hydro-click="{&quot;event_type&quot;:&quot;repository.click&quot;,&quot;payload&quot;:{&quot;target&quot;:&quot;FORK_BUTTON&quot;,&quot;repository_id&quot;:41881900,&quot;originating_url&quot;:&quot;https://github.com/microsoft/vscode&quot;,&quot;user_id&quot;:11575076}}" data-hydro-click-hmac="88d3fc36345e0db8a41e9bcc4612b7a7960f6be6761be7c11ba36f3bf3b25006" data-ga-click="Repository, show fork modal, action:files#disambiguate; text:Fork" aria-labelledby="tooltip-db0c68d3-2c1c-4cb9-aa11-e9c3e611ff8c" data-view-component="true" class="Button Button--iconOnly Button--secondary Button--medium"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-repo-forked Button-visual">
1771
- <path d="M5 5.372v.878c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75v-.878a2.25 2.25 0 1 1 1.5 0v.878a2.25 2.25 0 0 1-2.25 2.25h-1.5v2.128a2.251 2.251 0 1 1-1.5 0V8.5h-1.5A2.25 2.25 0 0 1 3.5 6.25v-.878a2.25 2.25 0 1 1 1.5 0ZM5 3.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm6.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-3 8.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z"></path>
1772
- </svg>
1773
- </a><tool-tip id="tooltip-db0c68d3-2c1c-4cb9-aa11-e9c3e611ff8c" for="fork-icon-button" popover="manual" data-direction="s" data-type="label" data-view-component="true" class="sr-only position-absolute" aria-hidden="true" role="tooltip">Fork your own copy of microsoft/vscode</tool-tip>
1774
-
1775
- </div>
1776
- <style>
1777
- /*
1778
- This is kind of gross but let me explain.
1779
- The triangle-down icon in the user lists menu component needs to be larger on small screens
1780
- but Primer doesn't accept a responsive value for size.
1781
- So instead we use CSS to override the size on small screens only, to match the ⭐ button beside it.
1782
- The selector is written this way to avoid affecting other buttons inside the lists dropdown.
1783
- */
1784
- @media (max-width: 767px) {
1785
- .icon-button-group .BtnGroup-parent > * > button:first-child {
1786
- height: var(--control-medium-size);
1787
- width: var(--control-medium-size);
1788
- min-width: var(--control-medium-size);
1789
- }
1790
- }
1791
-
1792
- /* No idea what this is though. It was like this when I got here. */
1793
- @media (min-width: 544px) {
1794
- .icon-button-group .SelectMenu {
1795
- right: auto !important;
1796
- left: 0 !important;
1797
- }
1798
- }
1799
- </style>
1800
- <div data-view-component="true" class="js-toggler-container starring-container">
1801
- <div data-view-component="true" class="starred BtnGroup icon-button-group flex-1 ml-0">
1802
- <!-- '"` --><!-- </textarea></xmp> --><form class="js-social-form BtnGroup-parent" data-turbo="false" action="/microsoft/vscode/unstar" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="1okKN0Xt6j3ySeDfC5lWP0EDodH_aAmHRRYmHAgSdIDYAXs6FXsvCJTEZ-3DV88cm4J2JqdneMNaIrwCl-E6-A" autocomplete="off">
1803
- <input type="hidden" name="context" value="repository">
1804
- <button data-hydro-click="{&quot;event_type&quot;:&quot;repository.click&quot;,&quot;payload&quot;:{&quot;target&quot;:&quot;UNSTAR_BUTTON&quot;,&quot;repository_id&quot;:41881900,&quot;originating_url&quot;:&quot;https://github.com/microsoft/vscode&quot;,&quot;user_id&quot;:11575076}}" data-hydro-click-hmac="da524b7823fa15e038cb781106a5571df59eadb1c8945f70ffc954040aedb8c2" data-ga-click="Repository, click unstar button, action:files#disambiguate; text:Unstar" id="icon-button-b318058f-fab1-4afb-a018-b84359de5f79" aria-labelledby="tooltip-7fa43bf9-bc1a-4faf-82bb-33bc9d003ff4" type="submit" data-view-component="true" class="Button Button--iconOnly Button--secondary Button--medium js-toggler-target starred-button-icon BtnGroup-item rounded-left-2"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-star-fill Button-visual">
1805
- <path d="M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25Z"></path>
1806
- </svg>
1807
- </button><tool-tip id="tooltip-7fa43bf9-bc1a-4faf-82bb-33bc9d003ff4" for="icon-button-b318058f-fab1-4afb-a018-b84359de5f79" popover="manual" data-direction="s" data-type="label" data-view-component="true" class="sr-only position-absolute" aria-hidden="true" role="tooltip">Unstar this repository</tool-tip>
1808
-
1809
- </form> <details id="details-user-list-41881900" data-view-component="true" class="details-reset details-overlay BtnGroup-parent js-user-list-menu d-flex position-relative">
1810
- <summary aria-label="Add this repository to a list" data-view-component="true" class="btn-sm btn BtnGroup-item px-2 float-none" aria-haspopup="menu" role="button"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-triangle-down">
1811
- <path d="m4.427 7.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 7H4.604a.25.25 0 0 0-.177.427Z"></path>
1812
- </svg>
1813
- </summary>
1814
- <details-menu class="SelectMenu right-0" src="/microsoft/vscode/lists" role="menu">
1815
- <div class="SelectMenu-modal">
1816
- <header class="SelectMenu-header">
1817
- <h4 class="SelectMenu-title f5" id="user-lists-menu">Lists</h4>
1818
-
1819
- <button class="SelectMenu-closeButton" type="button" aria-label="Close menu" data-toggle-for="details-user-list-41881900">
1820
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-x">
1821
- <path d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 8l3.22 3.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 9.06l-3.22 3.22a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06Z"></path>
1822
- </svg>
1823
- </button>
1824
- </header>
1825
- <div id="filter-menu-7a926c" class="d-flex flex-column flex-1 overflow-hidden">
1826
- <div class="SelectMenu-list">
1827
-
1828
- <include-fragment aria-label="Loading" data-nonce="v2:03b0f735-7e9b-2994-f629-ec1f21c8f2bb" data-view-component="true" class="SelectMenu-loading">
1829
-
1830
- <span data-view-component="true">
1831
- <svg role="menuitem" style="box-sizing: content-box; color: var(--color-icon-primary);" width="32" height="32" viewBox="0 0 16 16" fill="none" aria-hidden="true" data-view-component="true" class="anim-rotate">
1832
- <circle cx="8" cy="8" r="7" stroke="currentColor" stroke-opacity="0.25" stroke-width="2" vector-effect="non-scaling-stroke" fill="none"></circle>
1833
- <path d="M15 8a7.002 7.002 0 00-7-7" stroke="currentColor" stroke-width="2" stroke-linecap="round" vector-effect="non-scaling-stroke"></path>
1834
- </svg> <span class="sr-only">Loading</span>
1835
- </span>
1836
-
1837
- <div data-show-on-forbidden-error="" hidden="">
1838
- <div class="Box">
1839
- <div class="blankslate-container">
1840
- <div data-view-component="true" class="blankslate blankslate-spacious color-bg-default rounded-2">
1841
-
1842
-
1843
- <h3 data-view-component="true" class="blankslate-heading"> Uh oh!
1844
- </h3>
1845
- <p data-view-component="true"> </p><p class="color-fg-muted my-2 mb-2 ws-normal">There was an error while loading. <a class="Link--inTextBlock" data-turbo="false" href="" aria-label="Please reload this page">Please reload this page</a>.</p>
1846
- <p></p>
1847
-
1848
- </div> </div>
1849
- </div> </div>
1850
- </include-fragment> </div>
1851
-
1852
- </div>
1853
- </div>
1854
- </details-menu>
1855
- </details>
1856
- </div>
1857
- <div data-view-component="true" class="unstarred BtnGroup icon-button-group flex-1 ml-0">
1858
- <!-- '"` --><!-- </textarea></xmp> --><form class="js-social-form BtnGroup-parent" data-turbo="false" action="/microsoft/vscode/star" accept-charset="UTF-8" method="post"><input type="hidden" name="authenticity_token" value="kzo28dAKmPJtnHPlcEBfTeVTiQcqZ0nc4vNvwzxIPaANrGdaD4nvgJWHm-MVxffZR34CeqOGJ5kVDPzcyu0ywQ" autocomplete="off">
1859
- <input type="hidden" name="context" value="repository">
1860
- <button data-hydro-click="{&quot;event_type&quot;:&quot;repository.click&quot;,&quot;payload&quot;:{&quot;target&quot;:&quot;STAR_BUTTON&quot;,&quot;repository_id&quot;:41881900,&quot;originating_url&quot;:&quot;https://github.com/microsoft/vscode&quot;,&quot;user_id&quot;:11575076}}" data-hydro-click-hmac="e35fa923516bbf54ccd6e7efe54a3499bbcbcf61c358daeee518fffed620b400" data-ga-click="Repository, click star button, action:files#disambiguate; text:Star" id="icon-button-0b84cc39-a4a7-4fda-a380-c329e5c7ca6f" aria-labelledby="tooltip-06d33941-34f5-4178-bbcd-90be3421ed35" type="submit" data-view-component="true" class="Button Button--iconOnly Button--secondary Button--medium js-toggler-target BtnGroup-item rounded-left-2"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-star Button-visual">
1861
- <path d="M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25Zm0 2.445L6.615 5.5a.75.75 0 0 1-.564.41l-3.097.45 2.24 2.184a.75.75 0 0 1 .216.664l-.528 3.084 2.769-1.456a.75.75 0 0 1 .698 0l2.77 1.456-.53-3.084a.75.75 0 0 1 .216-.664l2.24-2.183-3.096-.45a.75.75 0 0 1-.564-.41L8 2.694Z"></path>
1862
- </svg>
1863
- </button><tool-tip id="tooltip-06d33941-34f5-4178-bbcd-90be3421ed35" for="icon-button-0b84cc39-a4a7-4fda-a380-c329e5c7ca6f" popover="manual" data-direction="s" data-type="label" data-view-component="true" class="sr-only position-absolute" aria-hidden="true" role="tooltip">Star this repository</tool-tip>
1864
-
1865
- </form> <details id="details-user-list-41881900" data-view-component="true" class="details-reset details-overlay BtnGroup-parent js-user-list-menu d-flex position-relative">
1866
- <summary aria-label="Add this repository to a list" data-view-component="true" class="btn-sm btn BtnGroup-item px-2 float-none" aria-haspopup="menu" role="button"> <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-triangle-down">
1867
- <path d="m4.427 7.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 7H4.604a.25.25 0 0 0-.177.427Z"></path>
1868
- </svg>
1869
- </summary>
1870
- <details-menu class="SelectMenu right-0" src="/microsoft/vscode/lists" role="menu">
1871
- <div class="SelectMenu-modal">
1872
- <header class="SelectMenu-header">
1873
- <h4 class="SelectMenu-title f5" id="user-lists-menu">Lists</h4>
1874
-
1875
- <button class="SelectMenu-closeButton" type="button" aria-label="Close menu" data-toggle-for="details-user-list-41881900">
1876
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-x">
1877
- <path d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 8l3.22 3.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 9.06l-3.22 3.22a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06Z"></path>
1878
- </svg>
1879
- </button>
1880
- </header>
1881
- <div id="filter-menu-9a8929" class="d-flex flex-column flex-1 overflow-hidden">
1882
- <div class="SelectMenu-list">
1883
-
1884
- <include-fragment aria-label="Loading" data-nonce="v2:03b0f735-7e9b-2994-f629-ec1f21c8f2bb" data-view-component="true" class="SelectMenu-loading">
1885
-
1886
- <span data-view-component="true">
1887
- <svg role="menuitem" style="box-sizing: content-box; color: var(--color-icon-primary);" width="32" height="32" viewBox="0 0 16 16" fill="none" aria-hidden="true" data-view-component="true" class="anim-rotate">
1888
- <circle cx="8" cy="8" r="7" stroke="currentColor" stroke-opacity="0.25" stroke-width="2" vector-effect="non-scaling-stroke" fill="none"></circle>
1889
- <path d="M15 8a7.002 7.002 0 00-7-7" stroke="currentColor" stroke-width="2" stroke-linecap="round" vector-effect="non-scaling-stroke"></path>
1890
- </svg> <span class="sr-only">Loading</span>
1891
- </span>
1892
-
1893
- <div data-show-on-forbidden-error="" hidden="">
1894
- <div class="Box">
1895
- <div class="blankslate-container">
1896
- <div data-view-component="true" class="blankslate blankslate-spacious color-bg-default rounded-2">
1897
-
1898
-
1899
- <h3 data-view-component="true" class="blankslate-heading"> Uh oh!
1900
- </h3>
1901
- <p data-view-component="true"> </p><p class="color-fg-muted my-2 mb-2 ws-normal">There was an error while loading. <a class="Link--inTextBlock" data-turbo="false" href="" aria-label="Please reload this page">Please reload this page</a>.</p>
1902
- <p></p>
1903
-
1904
- </div> </div>
1905
- </div> </div>
1906
- </include-fragment> </div>
1907
-
1908
- </div>
1909
- </div>
1910
- </details-menu>
1911
- </details>
1912
- </div></div>
1913
- </div>
1914
- <div class="d-flex flex-row gap-2">
1915
-
1916
-
1917
- </div>
1918
- </div>
1919
- <p class="f4 mb-3 color-fg-muted">
1920
- Visual Studio Code
1921
- </p>
1922
- <div class="mb-2 d-flex flex-items-center Link--secondary">
1923
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-link flex-shrink-0 mr-2">
1924
- <path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z"></path>
1925
- </svg>
1926
- <span class="flex-auto min-width-0 css-truncate css-truncate-target width-fit">
1927
- <a title="https://code.visualstudio.com" role="link" target="_blank" class="text-bold" rel="noopener noreferrer" href="https://code.visualstudio.com">code.visualstudio.com</a>
1928
- </span>
1929
- </div>
1930
-
1931
-
1932
- <h3 class="sr-only">License</h3>
1933
- <div class="mb-2">
1934
- <a href="/microsoft/vscode/blob/main/LICENSE.txt" class="Link--muted" data-analytics-event="{&quot;category&quot;:&quot;Repository Overview&quot;,&quot;action&quot;:&quot;click&quot;,&quot;label&quot;:&quot;location:sidebar;file:license&quot;}">
1935
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-law mr-1 mr-sm-1 mr-md-2 mr-lg-2">
1936
- <path d="M8.75.75V2h.985c.304 0 .603.08.867.231l1.29.736c.038.022.08.033.124.033h2.234a.75.75 0 0 1 0 1.5h-.427l2.111 4.692a.75.75 0 0 1-.154.838l-.53-.53.529.531-.001.002-.002.002-.006.006-.006.005-.01.01-.045.04c-.21.176-.441.327-.686.45C14.556 10.78 13.88 11 13 11a4.498 4.498 0 0 1-2.023-.454 3.544 3.544 0 0 1-.686-.45l-.045-.04-.016-.015-.006-.006-.004-.004v-.001a.75.75 0 0 1-.154-.838L12.178 4.5h-.162c-.305 0-.604-.079-.868-.231l-1.29-.736a.245.245 0 0 0-.124-.033H8.75V13h2.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5h2.5V3.5h-.984a.245.245 0 0 0-.124.033l-1.289.737c-.265.15-.564.23-.869.23h-.162l2.112 4.692a.75.75 0 0 1-.154.838l-.53-.53.529.531-.001.002-.002.002-.006.006-.016.015-.045.04c-.21.176-.441.327-.686.45C4.556 10.78 3.88 11 3 11a4.498 4.498 0 0 1-2.023-.454 3.544 3.544 0 0 1-.686-.45l-.045-.04-.016-.015-.006-.006-.004-.004v-.001a.75.75 0 0 1-.154-.838L2.178 4.5H1.75a.75.75 0 0 1 0-1.5h2.234a.249.249 0 0 0 .125-.033l1.288-.737c.265-.15.564-.23.869-.23h.984V.75a.75.75 0 0 1 1.5 0Zm2.945 8.477c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L13 6.327Zm-10 0c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L3 6.327Z"></path>
1937
- </svg>
1938
- MIT license
1939
- </a>
1940
- </div>
1941
-
1942
-
1943
- <div class="mb-3">
1944
- <h3 class="sr-only">Code of conduct</h3>
1945
- <div class="mb-2">
1946
- <a href="/microsoft/.github/blob/main/CODE_OF_CONDUCT.md" class="Link--muted" data-analytics-event="{&quot;category&quot;:&quot;Repository Overview&quot;,&quot;action&quot;:&quot;click&quot;,&quot;label&quot;:&quot;location:sidebar;file:code of conduct&quot;}">
1947
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-code-of-conduct mr-1">
1948
- <path d="M8.048 2.241c.964-.709 2.079-1.238 3.325-1.241a4.616 4.616 0 0 1 3.282 1.355c.41.408.757.86.996 1.428.238.568.348 1.206.347 1.968 0 2.193-1.505 4.254-3.081 5.862-1.496 1.526-3.213 2.796-4.249 3.563l-.22.163a.749.749 0 0 1-.895 0l-.221-.163c-1.036-.767-2.753-2.037-4.249-3.563C1.51 10.008.007 7.952.002 5.762a4.614 4.614 0 0 1 1.353-3.407C3.123.585 6.223.537 8.048 2.24Zm-1.153.983c-1.25-1.033-3.321-.967-4.48.191a3.115 3.115 0 0 0-.913 2.335c0 1.556 1.109 3.24 2.652 4.813C5.463 11.898 6.96 13.032 8 13.805c.353-.262.758-.565 1.191-.905l-1.326-1.223a.75.75 0 0 1 1.018-1.102l1.48 1.366c.328-.281.659-.577.984-.887L9.99 9.802a.75.75 0 1 1 1.019-1.103l1.384 1.28c.295-.329.566-.661.81-.995L12.92 8.7l-1.167-1.168c-.674-.671-1.78-.664-2.474.03-.268.269-.538.537-.802.797-.893.882-2.319.843-3.185-.032-.346-.35-.693-.697-1.043-1.047a.75.75 0 0 1-.04-1.016c.162-.191.336-.401.52-.623.62-.748 1.356-1.637 2.166-2.417Zm7.112 4.442c.313-.65.491-1.293.491-1.916v-.001c0-.614-.088-1.045-.23-1.385-.143-.339-.357-.633-.673-.949a3.111 3.111 0 0 0-2.218-.915c-1.092.003-2.165.627-3.226 1.602-.823.755-1.554 1.637-2.228 2.45l-.127.154.562.566a.755.755 0 0 0 1.066.02l.794-.79c1.258-1.258 3.312-1.31 4.594-.032.396.394.792.791 1.173 1.173Z"></path>
1949
- </svg>
1950
- Code of conduct
1951
- </a>
1952
- </div>
1953
-
1954
- <h3 class="sr-only">Contributing</h3>
1955
- <div class="mb-2">
1956
- <a href="/microsoft/vscode/blob/main/CONTRIBUTING.md" class="Link--muted" data-analytics-event="{&quot;category&quot;:&quot;Repository Overview&quot;,&quot;action&quot;:&quot;click&quot;,&quot;label&quot;:&quot;location:sidebar;file:contributing&quot;}">
1957
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-people mr-1">
1958
- <path d="M2 5.5a3.5 3.5 0 1 1 5.898 2.549 5.508 5.508 0 0 1 3.034 4.084.75.75 0 1 1-1.482.235 4 4 0 0 0-7.9 0 .75.75 0 0 1-1.482-.236A5.507 5.507 0 0 1 3.102 8.05 3.493 3.493 0 0 1 2 5.5ZM11 4a3.001 3.001 0 0 1 2.22 5.018 5.01 5.01 0 0 1 2.56 3.012.749.749 0 0 1-.885.954.752.752 0 0 1-.549-.514 3.507 3.507 0 0 0-2.522-2.372.75.75 0 0 1-.574-.73v-.352a.75.75 0 0 1 .416-.672A1.5 1.5 0 0 0 11 5.5.75.75 0 0 1 11 4Zm-5.5-.5a2 2 0 1 0-.001 3.999A2 2 0 0 0 5.5 3.5Z"></path>
1959
- </svg>
1960
- Contributing
1961
- </a>
1962
- </div>
1963
-
1964
- <h3 class="sr-only">Security policy</h3>
1965
- <div class="mb-2">
1966
- <a href="/microsoft/vscode/blob/main/SECURITY.md" class="Link--muted" data-analytics-event="{&quot;category&quot;:&quot;Repository Overview&quot;,&quot;action&quot;:&quot;click&quot;,&quot;label&quot;:&quot;location:sidebar;file:security policy&quot;}">
1967
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-law mr-1">
1968
- <path d="M8.75.75V2h.985c.304 0 .603.08.867.231l1.29.736c.038.022.08.033.124.033h2.234a.75.75 0 0 1 0 1.5h-.427l2.111 4.692a.75.75 0 0 1-.154.838l-.53-.53.529.531-.001.002-.002.002-.006.006-.006.005-.01.01-.045.04c-.21.176-.441.327-.686.45C14.556 10.78 13.88 11 13 11a4.498 4.498 0 0 1-2.023-.454 3.544 3.544 0 0 1-.686-.45l-.045-.04-.016-.015-.006-.006-.004-.004v-.001a.75.75 0 0 1-.154-.838L12.178 4.5h-.162c-.305 0-.604-.079-.868-.231l-1.29-.736a.245.245 0 0 0-.124-.033H8.75V13h2.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5h2.5V3.5h-.984a.245.245 0 0 0-.124.033l-1.289.737c-.265.15-.564.23-.869.23h-.162l2.112 4.692a.75.75 0 0 1-.154.838l-.53-.53.529.531-.001.002-.002.002-.006.006-.016.015-.045.04c-.21.176-.441.327-.686.45C4.556 10.78 3.88 11 3 11a4.498 4.498 0 0 1-2.023-.454 3.544 3.544 0 0 1-.686-.45l-.045-.04-.016-.015-.006-.006-.004-.004v-.001a.75.75 0 0 1-.154-.838L2.178 4.5H1.75a.75.75 0 0 1 0-1.5h2.234a.249.249 0 0 0 .125-.033l1.288-.737c.265-.15.564-.23.869-.23h.984V.75a.75.75 0 0 1 1.5 0Zm2.945 8.477c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L13 6.327Zm-10 0c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L3 6.327Z"></path>
1969
- </svg>
1970
- Security policy
1971
- </a>
1972
- </div>
1973
-
1974
- <ul class="d-flex flex-wrap mb-2 gap-2" aria-label="Repository details">
1975
- <a class="Link--secondary no-underline d-block mr-2" role="listitem" href="/microsoft/vscode/stargazers">
1976
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-star mr-1">
1977
- <path d="M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25Zm0 2.445L6.615 5.5a.75.75 0 0 1-.564.41l-3.097.45 2.24 2.184a.75.75 0 0 1 .216.664l-.528 3.084 2.769-1.456a.75.75 0 0 1 .698 0l2.77 1.456-.53-3.084a.75.75 0 0 1 .216-.664l2.24-2.183-3.096-.45a.75.75 0 0 1-.564-.41L8 2.694Z"></path>
1978
- </svg>
1979
- <span class="text-bold color-fg-default">181k</span>
1980
- stars
1981
- </a> <a class="Link--secondary no-underline d-block mr-2" role="listitem" href="/microsoft/vscode/forks">
1982
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-repo-forked mr-1">
1983
- <path d="M5 5.372v.878c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75v-.878a2.25 2.25 0 1 1 1.5 0v.878a2.25 2.25 0 0 1-2.25 2.25h-1.5v2.128a2.251 2.251 0 1 1-1.5 0V8.5h-1.5A2.25 2.25 0 0 1 3.5 6.25v-.878a2.25 2.25 0 1 1 1.5 0ZM5 3.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm6.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-3 8.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z"></path>
1984
- </svg>
1985
- <span class="text-bold color-fg-default">37.4k</span>
1986
- forks
1987
- </a> <a class="Link--secondary no-underline d-block mr-2" role="listitem" href="/microsoft/vscode/watchers">
1988
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-eye mr-1">
1989
- <path d="M8 2c1.981 0 3.671.992 4.933 2.078 1.27 1.091 2.187 2.345 2.637 3.023a1.62 1.62 0 0 1 0 1.798c-.45.678-1.367 1.932-2.637 3.023C11.67 13.008 9.981 14 8 14c-1.981 0-3.671-.992-4.933-2.078C1.797 10.83.88 9.576.43 8.898a1.62 1.62 0 0 1 0-1.798c.45-.677 1.367-1.931 2.637-3.022C4.33 2.992 6.019 2 8 2ZM1.679 7.932a.12.12 0 0 0 0 .136c.411.622 1.241 1.75 2.366 2.717C5.176 11.758 6.527 12.5 8 12.5c1.473 0 2.825-.742 3.955-1.715 1.124-.967 1.954-2.096 2.366-2.717a.12.12 0 0 0 0-.136c-.412-.621-1.242-1.75-2.366-2.717C10.824 4.242 9.473 3.5 8 3.5c-1.473 0-2.825.742-3.955 1.715-1.124.967-1.954 2.096-2.366 2.717ZM8 10a2 2 0 1 1-.001-3.999A2 2 0 0 1 8 10Z"></path>
1990
- </svg>
1991
- <span class="text-bold color-fg-default">3.4k</span>
1992
- watching
1993
- </a> <include-fragment loading="lazy" src="/microsoft/vscode/branch-and-tag-count" data-nonce="v2:03b0f735-7e9b-2994-f629-ec1f21c8f2bb" data-view-component="true">
1994
-
1995
- <a class="Link--secondary no-underline d-block mr-2" role="listitem" href="/microsoft/vscode/branches">
1996
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-git-branch mr-1">
1997
- <path d="M9.5 3.25a2.25 2.25 0 1 1 3 2.122V6A2.5 2.5 0 0 1 10 8.5H6a1 1 0 0 0-1 1v1.128a2.251 2.251 0 1 1-1.5 0V5.372a2.25 2.25 0 1 1 1.5 0v1.836A2.493 2.493 0 0 1 6 7h4a1 1 0 0 0 1-1v-.628A2.25 2.25 0 0 1 9.5 3.25Zm-6 0a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Zm8.25-.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM4.25 12a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Z"></path>
1998
- </svg>
1999
- <span class="color-fg-muted">Branches</span>
2000
- </a><a class="Link--secondary no-underline d-block mr-2" role="listitem" href="/microsoft/vscode/tags">
2001
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-tag mr-1">
2002
- <path d="M1 7.775V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 0 1 0 2.474l-5.026 5.026a1.75 1.75 0 0 1-2.474 0l-6.25-6.25A1.752 1.752 0 0 1 1 7.775Zm1.5 0c0 .066.026.13.073.177l6.25 6.25a.25.25 0 0 0 .354 0l5.025-5.025a.25.25 0 0 0 0-.354l-6.25-6.25a.25.25 0 0 0-.177-.073H2.75a.25.25 0 0 0-.25.25ZM6 5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z"></path>
2003
- </svg>
2004
- <span class="color-fg-muted">Tags</span>
2005
- </a>
2006
-
2007
- <div data-show-on-forbidden-error="" hidden="">
2008
- <div class="Box">
2009
- <div class="blankslate-container">
2010
- <div data-view-component="true" class="blankslate blankslate-spacious color-bg-default rounded-2">
2011
-
2012
-
2013
- <h3 data-view-component="true" class="blankslate-heading"> Uh oh!
2014
- </h3>
2015
- <p data-view-component="true"> </p><p class="color-fg-muted my-2 mb-2 ws-normal">There was an error while loading. <a class="Link--inTextBlock" data-turbo="false" href="" aria-label="Please reload this page">Please reload this page</a>.</p>
2016
- <p></p>
2017
-
2018
- </div> </div>
2019
- </div> </div>
2020
- </include-fragment> <a class="Link--secondary no-underline d-block mr-2" role="listitem" href="/microsoft/vscode/activity">
2021
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-pulse mr-1">
2022
- <path d="M6 2c.306 0 .582.187.696.471L10 10.731l1.304-3.26A.751.751 0 0 1 12 7h3.25a.75.75 0 0 1 0 1.5h-2.742l-1.812 4.528a.751.751 0 0 1-1.392 0L6 4.77 4.696 8.03A.75.75 0 0 1 4 8.5H.75a.75.75 0 0 1 0-1.5h2.742l1.812-4.529A.751.751 0 0 1 6 2Z"></path>
2023
- </svg>
2024
- <span>Activity</span>
2025
- </a>
2026
- <a class="Link--secondary no-underline d-block mr-2" role="listitem" href="/microsoft/vscode/custom-properties">
2027
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-note mr-1">
2028
- <path d="M0 3.75C0 2.784.784 2 1.75 2h12.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25Zm1.75-.25a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25ZM3.5 6.25a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1-.75-.75Zm.75 2.25h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1 0-1.5Z"></path>
2029
- </svg>
2030
- <span>Custom properties</span>
2031
- </a></ul>
2032
-
2033
- <div class="mb-2 d-flex color-fg-muted">
2034
- <div class="d-flex flex-items-center" style="height: 21px">
2035
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-globe flex-shrink-0 mr-2">
2036
- <path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM5.78 8.75a9.64 9.64 0 0 0 1.363 4.177c.255.426.542.832.857 1.215.245-.296.551-.705.857-1.215A9.64 9.64 0 0 0 10.22 8.75Zm4.44-1.5a9.64 9.64 0 0 0-1.363-4.177c-.307-.51-.612-.919-.857-1.215a9.927 9.927 0 0 0-.857 1.215A9.64 9.64 0 0 0 5.78 7.25Zm-5.944 1.5H1.543a6.507 6.507 0 0 0 4.666 5.5c-.123-.181-.24-.365-.352-.552-.715-1.192-1.437-2.874-1.581-4.948Zm-2.733-1.5h2.733c.144-2.074.866-3.756 1.58-4.948.12-.197.237-.381.353-.552a6.507 6.507 0 0 0-4.666 5.5Zm10.181 1.5c-.144 2.074-.866 3.756-1.58 4.948-.12.197-.237.381-.353.552a6.507 6.507 0 0 0 4.666-5.5Zm2.733-1.5a6.507 6.507 0 0 0-4.666-5.5c.123.181.24.365.353.552.714 1.192 1.436 2.874 1.58 4.948Z"></path>
2037
- </svg>
2038
- </div>
2039
- <span class="flex-auto min-width-0 width-fit">
2040
- Public repository
2041
- </span>
2042
- </div>
2043
-
2044
- </div>
2045
- </div>
2046
-
2047
- </div>
2048
-
2049
- <div class="border-bottom mx-xl-5 "></div>
2050
- </div>
2051
-
2052
- </div>
2053
-
2054
-
2055
-
2056
- <turbo-frame id="repo-content-turbo-frame" target="_top" data-turbo-action="advance" class="">
2057
- <div id="repo-content-pjax-container" class="repository-content ">
2058
- <a href="https://github.dev/" class="d-none js-github-dev-shortcut" data-hotkey=".,Mod+Alt+.">Open in github.dev</a>
2059
- <a href="https://github.dev/" class="d-none js-github-dev-new-tab-shortcut" data-hotkey="Shift+.,Shift+&gt;,&gt;" target="_blank" rel="noopener noreferrer">Open in a new github.dev tab</a>
2060
- <a class="d-none" data-hotkey=",,Mod+Alt+," target="_blank" href="/codespaces/new/microsoft/vscode?resume=1">Open in codespace</a>
2061
-
2062
-
2063
-
2064
-
2065
-
2066
-
2067
- <h1 class="sr-only">microsoft/vscode</h1>
2068
- <div class="clearfix container-xl px-md-4 px-lg-5 px-3">
2069
- <div>
2070
-
2071
- <div style="max-width: 100%" data-view-component="true" class="Layout Layout--flowRow-until-md react-repos-overview-margin Layout--sidebarPosition-end Layout--sidebarPosition-flowRow-end">
2072
- <div data-view-component="true" class="Layout-main"> <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/primer-react.eabf1a5c8951946a1f00.module.css">
2073
- <link crossorigin="anonymous" media="all" rel="stylesheet" href="https://github.githubassets.com/assets/8.b14b6fddffe5b4a1fb97.module.css">
2074
-
2075
- <react-partial partial-name="repos-overview" data-ssr="true" data-attempted-ssr="true" data-react-profiling="true" data-catalyst="" class="loaded">
2076
-
2077
- <script type="application/json" data-target="react-partial.embeddedData">{"props":{"initialPayload":{"allShortcutsEnabled":true,"path":"/","repo":{"id":41881900,"defaultBranch":"main","name":"vscode","ownerLogin":"microsoft","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2015-09-04T03:23:38.000+07:00","ownerAvatar":"https://avatars.githubusercontent.com/u/6154722?v=4","public":true,"private":false,"isOrgOwned":true},"currentUser":{"id":11575076,"login":"minhlucvan","userEmail":"luk.mink@gmail.com"},"refInfo":{"name":"main","listCacheKey":"v0:1768587930.0","canEdit":true,"refType":"branch","currentOid":"ea6ce12828c272697926762402173c0395ad9511"},"tree":{"items":[{"name":".config","path":".config","contentType":"directory"},{"name":".devcontainer","path":".devcontainer","contentType":"directory"},{"name":".eslint-plugin-local","path":".eslint-plugin-local","contentType":"directory"},{"name":".github","path":".github","contentType":"directory"},{"name":".vscode","path":".vscode","contentType":"directory"},{"name":"build","path":"build","contentType":"directory"},{"name":"cli","path":"cli","contentType":"directory"},{"name":"extensions","path":"extensions","contentType":"directory"},{"name":"remote","path":"remote","contentType":"directory"},{"name":"resources","path":"resources","contentType":"directory"},{"name":"scripts","path":"scripts","contentType":"directory"},{"name":"src","path":"src","contentType":"directory"},{"name":"test","path":"test","contentType":"directory"},{"name":".editorconfig","path":".editorconfig","contentType":"file"},{"name":".eslint-ignore","path":".eslint-ignore","contentType":"file"},{"name":".git-blame-ignore-revs","path":".git-blame-ignore-revs","contentType":"file"},{"name":".gitattributes","path":".gitattributes","contentType":"file"},{"name":".gitignore","path":".gitignore","contentType":"file"},{"name":".lsifrc.json","path":".lsifrc.json","contentType":"file"},{"name":".mailmap","path":".mailmap","contentType":"file"},{"name":".mention-bot","path":".mention-bot","contentType":"file"},{"name":".npmrc","path":".npmrc","contentType":"file"},{"name":".nvmrc","path":".nvmrc","contentType":"file"},{"name":".vscode-test.js","path":".vscode-test.js","contentType":"file"},{"name":"AGENTS.md","path":"AGENTS.md","contentType":"file"},{"name":"CONTRIBUTING.md","path":"CONTRIBUTING.md","contentType":"file"},{"name":"CodeQL.yml","path":"CodeQL.yml","contentType":"file"},{"name":"LICENSE.txt","path":"LICENSE.txt","contentType":"file"},{"name":"README.md","path":"README.md","contentType":"file"},{"name":"SECURITY.md","path":"SECURITY.md","contentType":"file"},{"name":"ThirdPartyNotices.txt","path":"ThirdPartyNotices.txt","contentType":"file"},{"name":"cglicenses.json","path":"cglicenses.json","contentType":"file"},{"name":"cgmanifest.json","path":"cgmanifest.json","contentType":"file"},{"name":"eslint.config.js","path":"eslint.config.js","contentType":"file"},{"name":"gulpfile.mjs","path":"gulpfile.mjs","contentType":"file"},{"name":"package-lock.json","path":"package-lock.json","contentType":"file"},{"name":"package.json","path":"package.json","contentType":"file"},{"name":"product.json","path":"product.json","contentType":"file"},{"name":"tsfmt.json","path":"tsfmt.json","contentType":"file"}],"templateDirectorySuggestionUrl":null,"readme":null,"totalCount":39,"showBranchInfobar":false},"fileTree":null,"fileTreeProcessingTime":null,"foldersToFetch":[],"userNameDisplayConfiguration":"handle","treeExpanded":false,"symbolsExpanded":false,"copilotSWEAgentEnabled":false,"isOverview":true,"overview":{"banners":{"shouldRecommendReadme":false,"isPersonalRepo":false,"showUseActionBanner":false,"actionSlug":null,"actionId":null,"showProtectBranchBanner":false,"publishBannersInfo":{"dismissActionNoticePath":"/settings/dismiss-notice/publish_action_from_repo","releasePath":"/microsoft/vscode/releases/new?marketplace=true","showPublishActionBanner":false},"interactionLimitBanner":null,"showInvitationBanner":false,"inviterName":null,"actionsMigrationBannerInfo":{"releaseTags":[],"showImmutableActionsMigrationBanner":false,"initialMigrationStatus":null},"showDeployBanner":false,"detectedStack":{"framework":null,"packageManager":null}},"codeButton":{"contactPath":"/contact","isEnterprise":false,"local":{"protocolInfo":{"httpAvailable":true,"sshAvailable":true,"httpUrl":"https://github.com/microsoft/vscode.git","showCloneWarning":false,"sshUrl":"git@github.com:microsoft/vscode.git","sshCertificatesRequired":false,"sshCertificatesAvailable":false,"ghCliUrl":"gh repo clone microsoft/vscode","defaultProtocol":"http","newSshKeyUrl":"/settings/ssh/new","setProtocolPath":"/users/set_protocol"},"platformInfo":{"cloneUrl":"https://desktop.github.com","showVisualStudioCloneButton":false,"visualStudioCloneUrl":"https://windows.github.com","showXcodeCloneButton":false,"xcodeCloneUrl":"xcode://clone?repo=https%3A%2F%2Fgithub.com%2Fmicrosoft%2Fvscode","zipballUrl":"/microsoft/vscode/archive/refs/heads/main.zip"}},"repoPolicyInfo":{"allowed":true,"canBill":true,"changesWouldBeSafe":true,"disabledByBusiness":false,"disabledByOrganization":false,"hasIpAllowLists":false},"currentUserIsEnterpriseManaged":false,"enterpriseManagedBusinessName":null,"codespacesEnabled":true,"hasAccessToCodespaces":true},"popovers":{"rename":null,"renamedParentRepo":null},"commitCount":"143,778","overviewFiles":[{"displayName":"README.md","repoName":"vscode","refName":"main","path":"README.md","preferredFileType":"readme","tabName":"README","richText":"\u003carticle class=\"markdown-body entry-content container-lg\" itemprop=\"text\"\u003e\u003cdiv class=\"markdown-heading\" dir=\"auto\"\u003e\u003ch1 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"\u003eVisual Studio Code - Open Source (\"Code - OSS\")\u003c/h1\u003e\u003ca id=\"user-content-visual-studio-code---open-source-code---oss\" class=\"anchor\" aria-label=\"Permalink: Visual Studio Code - Open Source (\u0026quot;Code - OSS\u0026quot;)\" href=\"#visual-studio-code---open-source-code---oss\"\u003e\u003csvg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"\u003e\u003cpath d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"\u003e\u003c/path\u003e\u003c/svg\u003e\u003c/a\u003e\u003c/div\u003e\n\u003cp dir=\"auto\"\u003e\u003ca href=\"https://github.com/microsoft/vscode/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request+sort%3Areactions-%2B1-desc\"\u003e\u003cimg src=\"https://camo.githubusercontent.com/4c8b8bc6eb4db5068056f781db2a63254ebd4fc7cc648287e0ff599434dea499/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f6d6963726f736f66742f7673636f64652f666561747572652d726571756573742e737667\" alt=\"Feature Requests\" data-canonical-src=\"https://img.shields.io/github/issues/microsoft/vscode/feature-request.svg\" style=\"max-width: 100%;\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/microsoft/vscode/issues?utf8=%E2%9C%93\u0026amp;q=is%3Aissue+is%3Aopen+label%3Abug\"\u003e\u003cimg src=\"https://camo.githubusercontent.com/e4c8c6f566765bd98f4bbbc880cfbb353cbabe574ada3ec23db83c307dad1529/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f6d6963726f736f66742f7673636f64652f6275672e737667\" alt=\"Bugs\" data-canonical-src=\"https://img.shields.io/github/issues/microsoft/vscode/bug.svg\" style=\"max-width: 100%;\"\u003e\u003c/a\u003e\n\u003ca href=\"https://gitter.im/Microsoft/vscode\" rel=\"nofollow\"\u003e\u003cimg src=\"https://camo.githubusercontent.com/e058a490c16d8ad79a43645498dd9e928fe1c19e86ffcbf962428049436ba979/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636861742d6f6e2532306769747465722d79656c6c6f772e737667\" alt=\"Gitter\" data-canonical-src=\"https://img.shields.io/badge/chat-on%20gitter-yellow.svg\" style=\"max-width: 100%;\"\u003e\u003c/a\u003e\u003c/p\u003e\n\u003cdiv class=\"markdown-heading\" dir=\"auto\"\u003e\u003ch2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"\u003eThe Repository\u003c/h2\u003e\u003ca id=\"user-content-the-repository\" class=\"anchor\" aria-label=\"Permalink: The Repository\" href=\"#the-repository\"\u003e\u003csvg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"\u003e\u003cpath d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"\u003e\u003c/path\u003e\u003c/svg\u003e\u003c/a\u003e\u003c/div\u003e\n\u003cp dir=\"auto\"\u003eThis repository (\"\u003ccode\u003eCode - OSS\u003c/code\u003e\") is where we (Microsoft) develop the \u003ca href=\"https://code.visualstudio.com\" rel=\"nofollow\"\u003eVisual Studio Code\u003c/a\u003e product together with the community. Not only do we work on code and issues here, we also publish our \u003ca href=\"https://github.com/microsoft/vscode/wiki/Roadmap\"\u003eroadmap\u003c/a\u003e, \u003ca href=\"https://github.com/microsoft/vscode/wiki/Iteration-Plans\"\u003emonthly iteration plans\u003c/a\u003e, and our \u003ca href=\"https://github.com/microsoft/vscode/wiki/Running-the-Endgame\"\u003eendgame plans\u003c/a\u003e. This source code is available to everyone under the standard \u003ca href=\"https://github.com/microsoft/vscode/blob/main/LICENSE.txt\"\u003eMIT license\u003c/a\u003e.\u003c/p\u003e\n\u003cdiv class=\"markdown-heading\" dir=\"auto\"\u003e\u003ch2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"\u003eVisual Studio Code\u003c/h2\u003e\u003ca id=\"user-content-visual-studio-code\" class=\"anchor\" aria-label=\"Permalink: Visual Studio Code\" href=\"#visual-studio-code\"\u003e\u003csvg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"\u003e\u003cpath d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"\u003e\u003c/path\u003e\u003c/svg\u003e\u003c/a\u003e\u003c/div\u003e\n\u003cp align=\"center\" dir=\"auto\"\u003e\n \u003ca target=\"_blank\" rel=\"noopener noreferrer nofollow\" href=\"https://user-images.githubusercontent.com/35271042/118224532-3842c400-b438-11eb-923d-a5f66fa6785a.png\"\u003e\u003cimg alt=\"VS Code in action\" src=\"https://user-images.githubusercontent.com/35271042/118224532-3842c400-b438-11eb-923d-a5f66fa6785a.png\" style=\"max-width: 100%;\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\u003cp dir=\"auto\"\u003e\u003ca href=\"https://code.visualstudio.com\" rel=\"nofollow\"\u003eVisual Studio Code\u003c/a\u003e is a distribution of the \u003ccode\u003eCode - OSS\u003c/code\u003e repository with Microsoft-specific customizations released under a traditional \u003ca href=\"https://code.visualstudio.com/License/\" rel=\"nofollow\"\u003eMicrosoft product license\u003c/a\u003e.\u003c/p\u003e\n\u003cp dir=\"auto\"\u003e\u003ca href=\"https://code.visualstudio.com\" rel=\"nofollow\"\u003eVisual Studio Code\u003c/a\u003e combines the simplicity of a code editor with what developers need for their core edit-build-debug cycle. It provides comprehensive code editing, navigation, and understanding support along with lightweight debugging, a rich extensibility model, and lightweight integration with existing tools.\u003c/p\u003e\n\u003cp dir=\"auto\"\u003eVisual Studio Code is updated monthly with new features and bug fixes. You can download it for Windows, macOS, and Linux on \u003ca href=\"https://code.visualstudio.com/Download\" rel=\"nofollow\"\u003eVisual Studio Code's website\u003c/a\u003e. To get the latest releases every day, install the \u003ca href=\"https://code.visualstudio.com/insiders\" rel=\"nofollow\"\u003eInsiders build\u003c/a\u003e.\u003c/p\u003e\n\u003cdiv class=\"markdown-heading\" dir=\"auto\"\u003e\u003ch2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"\u003eContributing\u003c/h2\u003e\u003ca id=\"user-content-contributing\" class=\"anchor\" aria-label=\"Permalink: Contributing\" href=\"#contributing\"\u003e\u003csvg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"\u003e\u003cpath d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"\u003e\u003c/path\u003e\u003c/svg\u003e\u003c/a\u003e\u003c/div\u003e\n\u003cp dir=\"auto\"\u003eThere are many ways in which you can participate in this project, for example:\u003c/p\u003e\n\u003cul dir=\"auto\"\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/vscode/issues\"\u003eSubmit bugs and feature requests\u003c/a\u003e, and help us verify as they are checked in\u003c/li\u003e\n\u003cli\u003eReview \u003ca href=\"https://github.com/microsoft/vscode/pulls\"\u003esource code changes\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReview the \u003ca href=\"https://github.com/microsoft/vscode-docs\"\u003edocumentation\u003c/a\u003e and make pull requests for anything from typos to additional and new content\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp dir=\"auto\"\u003eIf you are interested in fixing issues and contributing directly to the code base,\nplease see the document \u003ca href=\"https://github.com/microsoft/vscode/wiki/How-to-Contribute\"\u003eHow to Contribute\u003c/a\u003e, which covers the following:\u003c/p\u003e\n\u003cul dir=\"auto\"\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/vscode/wiki/How-to-Contribute\"\u003eHow to build and run from source\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/vscode/wiki/How-to-Contribute#debugging\"\u003eThe development workflow, including debugging and running tests\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/vscode/wiki/Coding-Guidelines\"\u003eCoding guidelines\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/vscode/wiki/How-to-Contribute#pull-requests\"\u003eSubmitting pull requests\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/vscode/wiki/How-to-Contribute#where-to-contribute\"\u003eFinding an issue to work on\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://aka.ms/vscodeloc\" rel=\"nofollow\"\u003eContributing to translations\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cdiv class=\"markdown-heading\" dir=\"auto\"\u003e\u003ch2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"\u003eFeedback\u003c/h2\u003e\u003ca id=\"user-content-feedback\" class=\"anchor\" aria-label=\"Permalink: Feedback\" href=\"#feedback\"\u003e\u003csvg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"\u003e\u003cpath d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"\u003e\u003c/path\u003e\u003c/svg\u003e\u003c/a\u003e\u003c/div\u003e\n\u003cul dir=\"auto\"\u003e\n\u003cli\u003eAsk a question on \u003ca href=\"https://stackoverflow.com/questions/tagged/vscode\" rel=\"nofollow\"\u003eStack Overflow\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"/microsoft/vscode/blob/main/CONTRIBUTING.md\"\u003eRequest a new feature\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpvote \u003ca href=\"https://github.com/microsoft/vscode/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request+sort%3Areactions-%2B1-desc\"\u003epopular feature requests\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/vscode/issues\"\u003eFile an issue\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConnect with the extension author community on \u003ca href=\"https://github.com/microsoft/vscode-discussions/discussions\"\u003eGitHub Discussions\u003c/a\u003e or \u003ca href=\"https://aka.ms/vscode-dev-community\" rel=\"nofollow\"\u003eSlack\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFollow \u003ca href=\"https://x.com/code\" rel=\"nofollow\"\u003e@code\u003c/a\u003e and let us know what you think!\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp dir=\"auto\"\u003eSee our \u003ca href=\"https://github.com/microsoft/vscode/wiki/Feedback-Channels\"\u003ewiki\u003c/a\u003e for a description of each of these channels and information on some other available community-driven channels.\u003c/p\u003e\n\u003cdiv class=\"markdown-heading\" dir=\"auto\"\u003e\u003ch2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"\u003eRelated Projects\u003c/h2\u003e\u003ca id=\"user-content-related-projects\" class=\"anchor\" aria-label=\"Permalink: Related Projects\" href=\"#related-projects\"\u003e\u003csvg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"\u003e\u003cpath d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"\u003e\u003c/path\u003e\u003c/svg\u003e\u003c/a\u003e\u003c/div\u003e\n\u003cp dir=\"auto\"\u003eMany of the core components and extensions to VS Code live in their own repositories on GitHub. For example, the \u003ca href=\"https://github.com/microsoft/vscode-node-debug\"\u003enode debug adapter\u003c/a\u003e and the \u003ca href=\"https://github.com/microsoft/vscode-mono-debug\"\u003emono debug adapter\u003c/a\u003e repositories are separate from each other. For a complete list, please visit the \u003ca href=\"https://github.com/microsoft/vscode/wiki/Related-Projects\"\u003eRelated Projects\u003c/a\u003e page on our \u003ca href=\"https://github.com/microsoft/vscode/wiki\"\u003ewiki\u003c/a\u003e.\u003c/p\u003e\n\u003cdiv class=\"markdown-heading\" dir=\"auto\"\u003e\u003ch2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"\u003eBundled Extensions\u003c/h2\u003e\u003ca id=\"user-content-bundled-extensions\" class=\"anchor\" aria-label=\"Permalink: Bundled Extensions\" href=\"#bundled-extensions\"\u003e\u003csvg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"\u003e\u003cpath d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"\u003e\u003c/path\u003e\u003c/svg\u003e\u003c/a\u003e\u003c/div\u003e\n\u003cp dir=\"auto\"\u003eVS Code includes a set of built-in extensions located in the \u003ca href=\"/microsoft/vscode/blob/main/extensions\"\u003eextensions\u003c/a\u003e folder, including grammars and snippets for many languages. Extensions that provide rich language support (inline suggestions, Go to Definition) for a language have the suffix \u003ccode\u003elanguage-features\u003c/code\u003e. For example, the \u003ccode\u003ejson\u003c/code\u003e extension provides coloring for \u003ccode\u003eJSON\u003c/code\u003e and the \u003ccode\u003ejson-language-features\u003c/code\u003e extension provides rich language support for \u003ccode\u003eJSON\u003c/code\u003e.\u003c/p\u003e\n\u003cdiv class=\"markdown-heading\" dir=\"auto\"\u003e\u003ch2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"\u003eDevelopment Container\u003c/h2\u003e\u003ca id=\"user-content-development-container\" class=\"anchor\" aria-label=\"Permalink: Development Container\" href=\"#development-container\"\u003e\u003csvg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"\u003e\u003cpath d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"\u003e\u003c/path\u003e\u003c/svg\u003e\u003c/a\u003e\u003c/div\u003e\n\u003cp dir=\"auto\"\u003eThis repository includes a Visual Studio Code Dev Containers / GitHub Codespaces development container.\u003c/p\u003e\n\u003cul dir=\"auto\"\u003e\n\u003cli\u003e\n\u003cp dir=\"auto\"\u003eFor \u003ca href=\"https://aka.ms/vscode-remote/download/containers\" rel=\"nofollow\"\u003eDev Containers\u003c/a\u003e, use the \u003cstrong\u003eDev Containers: Clone Repository in Container Volume...\u003c/strong\u003e command which creates a Docker volume for better disk I/O on macOS and Windows.\u003c/p\u003e\n\u003cul dir=\"auto\"\u003e\n\u003cli\u003eIf you already have VS Code and Docker installed, you can also click \u003ca href=\"https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/microsoft/vscode\" rel=\"nofollow\"\u003ehere\u003c/a\u003e to get started. This will cause VS Code to automatically install the Dev Containers extension if needed, clone the source code into a container volume, and spin up a dev container for use.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp dir=\"auto\"\u003eFor Codespaces, install the \u003ca href=\"https://marketplace.visualstudio.com/items?itemName=GitHub.codespaces\" rel=\"nofollow\"\u003eGitHub Codespaces\u003c/a\u003e extension in VS Code, and use the \u003cstrong\u003eCodespaces: Create New Codespace\u003c/strong\u003e command.\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp dir=\"auto\"\u003eDocker / the Codespace should have at least \u003cstrong\u003e4 Cores and 6 GB of RAM (8 GB recommended)\u003c/strong\u003e to run a full build. See the \u003ca href=\"/microsoft/vscode/blob/main/.devcontainer/README.md\"\u003edevelopment container README\u003c/a\u003e for more information.\u003c/p\u003e\n\u003cdiv class=\"markdown-heading\" dir=\"auto\"\u003e\u003ch2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"\u003eCode of Conduct\u003c/h2\u003e\u003ca id=\"user-content-code-of-conduct\" class=\"anchor\" aria-label=\"Permalink: Code of Conduct\" href=\"#code-of-conduct\"\u003e\u003csvg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"\u003e\u003cpath d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"\u003e\u003c/path\u003e\u003c/svg\u003e\u003c/a\u003e\u003c/div\u003e\n\u003cp dir=\"auto\"\u003eThis project has adopted the \u003ca href=\"https://opensource.microsoft.com/codeofconduct/\" rel=\"nofollow\"\u003eMicrosoft Open Source Code of Conduct\u003c/a\u003e. For more information see the \u003ca href=\"https://opensource.microsoft.com/codeofconduct/faq/\" rel=\"nofollow\"\u003eCode of Conduct FAQ\u003c/a\u003e or contact \u003ca href=\"mailto:opencode@microsoft.com\"\u003eopencode@microsoft.com\u003c/a\u003e with any additional questions or comments.\u003c/p\u003e\n\u003cdiv class=\"markdown-heading\" dir=\"auto\"\u003e\u003ch2 tabindex=\"-1\" class=\"heading-element\" dir=\"auto\"\u003eLicense\u003c/h2\u003e\u003ca id=\"user-content-license\" class=\"anchor\" aria-label=\"Permalink: License\" href=\"#license\"\u003e\u003csvg class=\"octicon octicon-link\" viewBox=\"0 0 16 16\" version=\"1.1\" width=\"16\" height=\"16\" aria-hidden=\"true\"\u003e\u003cpath d=\"m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z\"\u003e\u003c/path\u003e\u003c/svg\u003e\u003c/a\u003e\u003c/div\u003e\n\u003cp dir=\"auto\"\u003eCopyright (c) Microsoft Corporation. All rights reserved.\u003c/p\u003e\n\u003cp dir=\"auto\"\u003eLicensed under the \u003ca href=\"/microsoft/vscode/blob/main/LICENSE.txt\"\u003eMIT\u003c/a\u003e license.\u003c/p\u003e\n\u003c/article\u003e","loaded":true,"timedOut":false,"errorMessage":null,"headerInfo":{"toc":[{"level":1,"text":"Visual Studio Code - Open Source (\"Code - OSS\")","anchor":"visual-studio-code---open-source-code---oss","htmlText":"Visual Studio Code - Open Source (\"Code - OSS\")"},{"level":2,"text":"The Repository","anchor":"the-repository","htmlText":"The Repository"},{"level":2,"text":"Visual Studio Code","anchor":"visual-studio-code","htmlText":"Visual Studio Code"},{"level":2,"text":"Contributing","anchor":"contributing","htmlText":"Contributing"},{"level":2,"text":"Feedback","anchor":"feedback","htmlText":"Feedback"},{"level":2,"text":"Related Projects","anchor":"related-projects","htmlText":"Related Projects"},{"level":2,"text":"Bundled Extensions","anchor":"bundled-extensions","htmlText":"Bundled Extensions"},{"level":2,"text":"Development Container","anchor":"development-container","htmlText":"Development Container"},{"level":2,"text":"Code of Conduct","anchor":"code-of-conduct","htmlText":"Code of Conduct"},{"level":2,"text":"License","anchor":"license","htmlText":"License"}],"siteNavLoginPath":"/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoft%2Fvscode"}},{"displayName":"CODE_OF_CONDUCT.md","repoName":".github","refName":"main","path":"CODE_OF_CONDUCT.md","preferredFileType":"code_of_conduct","tabName":"Code of conduct","richText":null,"loaded":false,"timedOut":false,"errorMessage":null,"headerInfo":{"toc":null,"siteNavLoginPath":"/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoft%2Fvscode"}},{"displayName":"CONTRIBUTING.md","repoName":"vscode","refName":"main","path":"CONTRIBUTING.md","preferredFileType":"contributing","tabName":"Contributing","richText":null,"loaded":false,"timedOut":false,"errorMessage":null,"headerInfo":{"toc":null,"siteNavLoginPath":"/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoft%2Fvscode"}},{"displayName":"LICENSE.txt","repoName":"vscode","refName":"main","path":"LICENSE.txt","preferredFileType":"license","tabName":"MIT","richText":null,"loaded":false,"timedOut":false,"errorMessage":null,"headerInfo":{"toc":null,"siteNavLoginPath":"/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoft%2Fvscode"}},{"displayName":"SECURITY.md","repoName":"vscode","refName":"main","path":"SECURITY.md","preferredFileType":"security","tabName":"Security","richText":null,"loaded":false,"timedOut":false,"errorMessage":null,"headerInfo":{"toc":null,"siteNavLoginPath":"/login?return_to=https%3A%2F%2Fgithub.com%2Fmicrosoft%2Fvscode"}}],"overviewFilesProcessingTime":0,"copilotSWEAgentEnabled":false,"createFromTemplatePath":"/new?template_name=vscode\u0026template_owner=microsoft"}},"appPayload":{"helpUrl":"https://docs.github.com","findFileWorkerPath":"/assets-cdn/worker/find-file-worker-0cea8c6113ab.js","findInFileWorkerPath":"/assets-cdn/worker/find-in-file-worker-edcdbd6f0915.js","githubDevUrl":"https://github.dev/","enabled_features":{"copilot_workspace":false,"code_nav_ui_events":false,"react_blob_overlay":true,"accessible_code_button":true}}}}</script>
2078
- <div data-target="react-partial.reactRoot"> <!-- --> <!-- --> <div class="OverviewContent-module__Box--AAyU2"><div class="OverviewHeader-module__Box--XXfuL"></div><div class="OverviewContent-module__Box_1--BhUvC"><div class="OverviewContent-module__Box_2--VG_ln"><div class="OverviewContent-module__Box_3--x_JdB"><button type="button" aria-haspopup="true" aria-expanded="false" tabindex="0" style="min-width:0" aria-label="main branch" data-testid="anchor-button" class="prc-Button-ButtonBase-9n-Xk overview-ref-selector width-full RefSelectorAnchoredOverlay-module__RefSelectorOverlayBtn--D34zl" data-loading="false" data-size="medium" data-variant="default" id="ref-picker-repos-header-ref-selector" data-hotkey="w"><span data-component="buttonContent" data-align="center" class="prc-Button-ButtonContent-Iohp5"><span data-component="text" class="prc-Button-Label-FWkx3"><div class="RefSelectorAnchoredOverlay-module__RefSelectorOverlayContainer--mCbv8"><div class="RefSelectorAnchoredOverlay-module__RefSelectorOverlayHeader--D4cnZ"><svg aria-hidden="true" focusable="false" class="octicon octicon-git-branch" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M9.5 3.25a2.25 2.25 0 1 1 3 2.122V6A2.5 2.5 0 0 1 10 8.5H6a1 1 0 0 0-1 1v1.128a2.251 2.251 0 1 1-1.5 0V5.372a2.25 2.25 0 1 1 1.5 0v1.836A2.493 2.493 0 0 1 6 7h4a1 1 0 0 0 1-1v-.628A2.25 2.25 0 0 1 9.5 3.25Zm-6 0a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Zm8.25-.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM4.25 12a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Z"></path></svg></div><div class="ref-selector-button-text-container RefSelectorAnchoredOverlay-module__RefSelectorBtnTextContainer--yO402"><span class="RefSelectorAnchoredOverlay-module__RefSelectorText--bxVhQ">&nbsp;<!-- -->main</span></div></div></span><span data-component="trailingVisual" class="prc-Button-Visual-YNt2F prc-Button-VisualWrap-E4cnq"><svg aria-hidden="true" focusable="false" class="octicon octicon-triangle-down" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="m4.427 7.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 7H4.604a.25.25 0 0 0-.177.427Z"></path></svg></span></span></button><button hidden="" data-testid="ref-selector-hotkey-button" data-hotkey-scope="read-only-cursor-text-area" data-hotkey="w"></button></div><div class="OverviewContent-module__Box_4--GdyrA"><a type="button" href="/microsoft/vscode/branches" class="prc-Button-ButtonBase-9n-Xk OverviewContent-module__Button--bbZn8" data-loading="false" data-size="medium" data-variant="invisible"><span data-component="buttonContent" data-align="center" class="prc-Button-ButtonContent-Iohp5"><span data-component="leadingVisual" class="prc-Button-Visual-YNt2F prc-Button-VisualWrap-E4cnq"><svg aria-hidden="true" focusable="false" class="octicon octicon-git-branch" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M9.5 3.25a2.25 2.25 0 1 1 3 2.122V6A2.5 2.5 0 0 1 10 8.5H6a1 1 0 0 0-1 1v1.128a2.251 2.251 0 1 1-1.5 0V5.372a2.25 2.25 0 1 1 1.5 0v1.836A2.493 2.493 0 0 1 6 7h4a1 1 0 0 0 1-1v-.628A2.25 2.25 0 0 1 9.5 3.25Zm-6 0a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Zm8.25-.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM4.25 12a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Z"></path></svg></span><span data-component="text" class="prc-Button-Label-FWkx3"><span><strong class="color-fg-default">2618 </strong>Branches</span></span></span></a><a type="button" href="/microsoft/vscode/tags" class="prc-Button-ButtonBase-9n-Xk OverviewContent-module__Button--bbZn8" data-loading="false" data-size="medium" data-variant="invisible"><span data-component="buttonContent" data-align="center" class="prc-Button-ButtonContent-Iohp5"><span data-component="leadingVisual" class="prc-Button-Visual-YNt2F prc-Button-VisualWrap-E4cnq"><svg aria-hidden="true" focusable="false" class="octicon octicon-tag" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1 7.775V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 0 1 0 2.474l-5.026 5.026a1.75 1.75 0 0 1-2.474 0l-6.25-6.25A1.752 1.752 0 0 1 1 7.775Zm1.5 0c0 .066.026.13.073.177l6.25 6.25a.25.25 0 0 0 .354 0l5.025-5.025a.25.25 0 0 0 0-.354l-6.25-6.25a.25.25 0 0 0-.177-.073H2.75a.25.25 0 0 0-.25.25ZM6 5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z"></path></svg></span><span data-component="text" class="prc-Button-Label-FWkx3"><span><strong class="color-fg-default">342 </strong>Tags</span></span></span></a></div><div class="OverviewContent-module__Box_5--wttWN"><a type="button" aria-label="Go to Branches page" href="/microsoft/vscode/branches" class="prc-Button-ButtonBase-9n-Xk OverviewContent-module__Button_1--AQow7" data-loading="false" data-no-visuals="true" data-size="medium" data-variant="invisible"><svg aria-hidden="true" focusable="false" class="octicon octicon-git-branch" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M9.5 3.25a2.25 2.25 0 1 1 3 2.122V6A2.5 2.5 0 0 1 10 8.5H6a1 1 0 0 0-1 1v1.128a2.251 2.251 0 1 1-1.5 0V5.372a2.25 2.25 0 1 1 1.5 0v1.836A2.493 2.493 0 0 1 6 7h4a1 1 0 0 0 1-1v-.628A2.25 2.25 0 0 1 9.5 3.25Zm-6 0a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Zm8.25-.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM4.25 12a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Z"></path></svg></a><a type="button" aria-label="Go to Tags page" href="/microsoft/vscode/tags" class="prc-Button-ButtonBase-9n-Xk OverviewContent-module__Button_1--AQow7" data-loading="false" data-no-visuals="true" data-size="medium" data-variant="invisible"><svg aria-hidden="true" focusable="false" class="octicon octicon-tag" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1 7.775V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 0 1 0 2.474l-5.026 5.026a1.75 1.75 0 0 1-2.474 0l-6.25-6.25A1.752 1.752 0 0 1 1 7.775Zm1.5 0c0 .066.026.13.073.177l6.25 6.25a.25.25 0 0 0 .354 0l5.025-5.025a.25.25 0 0 0 0-.354l-6.25-6.25a.25.25 0 0 0-.177-.073H2.75a.25.25 0 0 0-.25.25ZM6 5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z"></path></svg></a></div></div><div class="OverviewContent-module__Box_6--tJpBe"><div class="OverviewContent-module__Box_7--x594V"><button hidden="" data-hotkey="t,Shift+T"></button><div class="OverviewContent-module__Box_8--TjDBQ"><div class="Box-sc-62in7e-0 OverviewContent-module__FileResultsList--ZnbCo"><span class="TextInput__StyledTextInput-sc-ttxlvl-0 d-flex FileResultsList-module__FilesSearchBox--fSAh3 TextInput-wrapper prc-components-TextInputWrapper-Hpdqi prc-components-TextInputBaseWrapper-wY-n0" data-leading-visual="true" data-trailing-visual="true" aria-busy="false"><span class="TextInput-icon" id="_r_10_" aria-hidden="true"><svg aria-hidden="true" focusable="false" class="octicon octicon-search" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="M10.68 11.74a6 6 0 0 1-7.922-8.982 6 6 0 0 1 8.982 7.922l3.04 3.04a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215ZM11.5 7a4.499 4.499 0 1 0-8.997 0A4.499 4.499 0 0 0 11.5 7Z"></path></svg></span><input aria-label="Go to file" role="combobox" aria-controls="file-results-list" aria-expanded="false" aria-haspopup="dialog" autocorrect="off" spellcheck="false" placeholder="Go to file" aria-describedby="_r_10_ _r_11_" data-component="input" class="prc-components-Input-IwWrt" type="text" value=""><span class="TextInput-icon" id="_r_11_" aria-hidden="true"><kbd>t</kbd></span></span></div></div><div class="OverviewContent-module__Box_9--kxlwV"><button type="button" class="prc-Button-ButtonBase-9n-Xk" data-loading="false" data-no-visuals="true" data-size="medium" data-variant="default"><span data-component="buttonContent" data-align="center" class="prc-Button-ButtonContent-Iohp5"><span data-component="text" class="prc-Button-Label-FWkx3">Go to file</span></span></button></div><div><h2 class="sr-only ScreenReaderHeading-module__userSelectNone--vlUbc prc-Heading-Heading-MtWFE" data-testid="screen-reader-heading">Add file</h2><button type="button" aria-label="Add file" aria-haspopup="true" aria-expanded="false" tabindex="0" class="prc-Button-ButtonBase-9n-Xk" data-loading="false" data-no-visuals="true" data-size="medium" data-variant="default" id="_R_a35ab_"><span data-component="buttonContent" data-align="center" class="prc-Button-ButtonContent-Iohp5"><span data-component="text" class="prc-Button-Label-FWkx3"><span class="react-directory-add-file-button">Add file<svg aria-hidden="true" focusable="false" class="octicon octicon-triangle-down" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="m4.427 7.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 7H4.604a.25.25 0 0 0-.177.427Z"></path></svg></span><svg aria-hidden="true" focusable="false" class="octicon octicon-plus react-directory-add-file-icon" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M7.75 2a.75.75 0 0 1 .75.75V7h4.25a.75.75 0 0 1 0 1.5H8.5v4.25a.75.75 0 0 1-1.5 0V8.5H2.75a.75.75 0 0 1 0-1.5H7V2.75A.75.75 0 0 1 7.75 2Z"></path></svg></span></span></button></div></div><button type="button" aria-haspopup="true" aria-expanded="false" tabindex="0" class="prc-Button-ButtonBase-9n-Xk" data-loading="false" data-size="medium" data-variant="primary" id="_R_75ab_"><span data-component="buttonContent" data-align="center" class="prc-Button-ButtonContent-Iohp5"><span data-component="leadingVisual" class="prc-Button-Visual-YNt2F prc-Button-VisualWrap-E4cnq"><svg aria-hidden="true" focusable="false" class="octicon octicon-code hide-sm" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="m11.28 3.22 4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734L13.94 8l-3.72-3.72a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215Zm-6.56 0a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042L2.06 8l3.72 3.72a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L.47 8.53a.75.75 0 0 1 0-1.06Z"></path></svg></span><span data-component="text" class="prc-Button-Label-FWkx3">Code</span><span data-component="trailingVisual" class="prc-Button-Visual-YNt2F prc-Button-VisualWrap-E4cnq"><svg aria-hidden="true" focusable="false" class="octicon octicon-triangle-down" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="m4.427 7.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 7H4.604a.25.25 0 0 0-.177.427Z"></path></svg></span></span></button><div class="OverviewContent-module__Box_10--UMc9C"><button data-component="IconButton" type="button" aria-haspopup="true" aria-expanded="false" tabindex="0" class="prc-Button-ButtonBase-9n-Xk prc-Button-IconButton-fyge7" data-loading="false" data-no-visuals="true" data-size="medium" data-variant="default" aria-labelledby="_R_7p5ab_" id="_R_95ab_"><svg aria-hidden="true" focusable="false" class="octicon octicon-kebab-horizontal" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M8 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM1.5 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm13 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"></path></svg></button><span class="prc-TooltipV2-Tooltip-tLeuB" data-direction="n" aria-hidden="true" id="_R_7p5ab_" popover="auto">Open more actions menu</span></div></div></div><div class="OverviewContent-module__Box_11--QeUk1"><div data-hpc="true"><button hidden="" data-testid="focus-next-element-button" data-hotkey="j"></button><button hidden="" data-testid="focus-previous-element-button" data-hotkey="k"></button><h2 class="sr-only ScreenReaderHeading-module__userSelectNone--vlUbc prc-Heading-Heading-MtWFE" data-testid="screen-reader-heading" id="folders-and-files">Folders and files</h2><table class="Table-module__Box--KyMHK" aria-labelledby="folders-and-files"><thead class="DirectoryContent-module__OverviewHeaderRow--FlrUZ Table-module__Box_1--DkRqs"><tr class="Table-module__Box_2--l1wjV"><th colspan="2" class="DirectoryContent-module__Box--y3Nvf"><span class="text-bold">Name</span></th><th colspan="1" class="DirectoryContent-module__Box_1--xeAhp"><span class="text-bold">Name</span></th><th class="hide-sm"><div class="width-fit prc-Truncate-Truncate-2G1eo" data-inline="true" title="Last commit message" style="--truncate-max-width:125px"><span class="text-bold">Last commit message</span></div></th><th colspan="1" class="DirectoryContent-module__Box_2--h912w"><div class="width-fit prc-Truncate-Truncate-2G1eo" data-inline="true" title="Last commit date" style="--truncate-max-width:125px"><span class="text-bold">Last commit date</span></div></th></tr></thead><tbody><tr class="DirectoryContent-module__Box_3--zI0N1"><td colspan="3" class="bgColor-muted p-1 rounded-top-2"><div class="LatestCommit-module__Box--Fimpo"><h2 class="sr-only ScreenReaderHeading-module__userSelectNone--vlUbc prc-Heading-Heading-MtWFE" data-testid="screen-reader-heading">Latest commit</h2><div data-testid="latest-commit" class="LatestCommit-module__Box_1--aQ5OG"><div class="CommitAttribution-module__CommitAttributionContainer--Si80C"><div data-testid="author-avatar" class="Box-sc-62in7e-0 AuthorAvatar-module__AuthorAvatarContainer--Z1TF8"><a class="Link__StyledLink-sc-1syctfj-0 prc-Link-Link-9ZwDx" href="/ulugbekna" data-testid="avatar-icon-link" data-hovercard-url="/users/ulugbekna/hovercard" aria-keyshortcuts="Alt+ArrowUp"><img data-component="Avatar" class="Box-sc-62in7e-0 kglDHV AuthorAvatar-module__authorAvatarImage--bQzij prc-Avatar-Avatar-0xaUi" alt="ulugbekna" width="20" height="20" data-testid="github-avatar" aria-label="ulugbekna" src="https://avatars.githubusercontent.com/u/16353531?v=4&amp;size=40" style="--avatarSize-regular: 20px;"></a><a class="Link__StyledLink-sc-1syctfj-0 dtKDuy AuthorAvatar-module__authorHoverableLink--vw9qe prc-Link-Link-9ZwDx" data-muted="true" href="/microsoft/vscode/commits?author=ulugbekna" aria-label="commits by ulugbekna" data-hovercard-url="/users/ulugbekna/hovercard" aria-keyshortcuts="Alt+ArrowUp">ulugbekna</a></div><span class=""></span></div><div class="d-none d-sm-flex LatestCommit-module__Box_2--JDY37"><div class="Truncate flex-items-center f5"><span class="Text__StyledText-sc-1klmep6-0 Truncate-text prc-Text-Text-9mHv3" data-testid="latest-commit-html"><a href="/microsoft/vscode/commit/ea6ce12828c272697926762402173c0395ad9511" class="Link--secondary" data-pjax="true" data-hovercard-url="/microsoft/vscode/commit/ea6ce12828c272697926762402173c0395ad9511/hovercard" aria-keyshortcuts="Alt+ArrowUp">inline completions: fix passing changeHint context (</a><a href="https://github.com/microsoft/vscode/pull/288428" data-hovercard-url="/microsoft/vscode/pull/288428/hovercard" data-hovercard-type="pull_request" data-url="https://github.com/microsoft/vscode/issues/288428" data-permission-text="Title is private" data-id="3822965735" data-error-text="Failed to load title" class="issue-link js-issue-link" aria-keyshortcuts="Alt+ArrowUp">#288428</a><a href="/microsoft/vscode/commit/ea6ce12828c272697926762402173c0395ad9511" class="Link--secondary" data-pjax="true" data-hovercard-url="/microsoft/vscode/commit/ea6ce12828c272697926762402173c0395ad9511/hovercard" aria-keyshortcuts="Alt+ArrowUp">)</a></span></div><button data-component="IconButton" type="button" data-testid="checks-status-badge-icon" class="prc-Button-ButtonBase-9n-Xk IconButton__StyledIconButton-sc-i53dt6-0 jJvKWs ChecksStatusBadge-module__ChecksStatusBadgeIconButton--rpD4z prc-Button-IconButton-fyge7" data-loading="false" data-no-visuals="true" data-size="small" data-variant="invisible" aria-labelledby="_r_16_"><svg aria-hidden="true" focusable="false" class="octicon octicon-dot-fill" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z"></path></svg></button><span class="prc-TooltipV2-Tooltip-tLeuB" data-direction="s" aria-hidden="true" id="_r_16_" popover="auto">pending</span></div><span class="d-flex d-sm-none fgColor-muted f6"><relative-time tense="past" datetime="2026-01-16T18:25:28.000Z" title="Jan 17, 2026, 1:25 AM GMT+7">Jan 17, 2026</relative-time></span></div><div class="d-flex flex-shrink-0 gap-2"><div data-testid="latest-commit-details" class="d-none d-sm-flex flex-items-center"><span class="d-flex flex-nowrap fgColor-muted f6"><a class="Link--secondary prc-Link-Link-9ZwDx" aria-label="Commit ea6ce12" data-hovercard-url="/microsoft/vscode/commit/ea6ce12828c272697926762402173c0395ad9511/hovercard" href="/microsoft/vscode/commit/ea6ce12828c272697926762402173c0395ad9511" data-discover="true" aria-keyshortcuts="Alt+ArrowUp">ea6ce12</a>&nbsp;·&nbsp;<relative-time tense="past" datetime="2026-01-16T18:25:28.000Z" title="Jan 17, 2026, 1:25 AM GMT+7">Jan 17, 2026</relative-time></span></div><div class="d-flex gap-2"><h2 class="sr-only ScreenReaderHeading-module__userSelectNone--vlUbc prc-Heading-Heading-MtWFE" data-testid="screen-reader-heading">History</h2><a href="/microsoft/vscode/commits/main/" class="prc-Button-ButtonBase-9n-Xk d-none d-lg-flex LinkButton-module__code-view-link-button--thtqc flex-items-center fgColor-default" data-loading="false" data-size="small" data-variant="invisible"><span data-component="buttonContent" data-align="center" class="prc-Button-ButtonContent-Iohp5"><span data-component="leadingVisual" class="prc-Button-Visual-YNt2F prc-Button-VisualWrap-E4cnq"><svg aria-hidden="true" focusable="false" class="octicon octicon-history" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="m.427 1.927 1.215 1.215a8.002 8.002 0 1 1-1.6 5.685.75.75 0 1 1 1.493-.154 6.5 6.5 0 1 0 1.18-4.458l1.358 1.358A.25.25 0 0 1 3.896 6H.25A.25.25 0 0 1 0 5.75V2.104a.25.25 0 0 1 .427-.177ZM7.75 4a.75.75 0 0 1 .75.75v2.992l2.028.812a.75.75 0 0 1-.557 1.392l-2.5-1A.751.751 0 0 1 7 8.25v-3.5A.75.75 0 0 1 7.75 4Z"></path></svg></span><span data-component="text" class="prc-Button-Label-FWkx3"><span class="fgColor-default">143,778 Commits</span></span></span></a><div class="d-sm-none"><button data-component="IconButton" type="button" aria-pressed="false" aria-expanded="false" data-testid="latest-commit-details-toggle" class="prc-Button-ButtonBase-9n-Xk LatestCommit-module__IconButton--Zxaob prc-Button-IconButton-fyge7" data-loading="false" data-no-visuals="true" data-size="small" data-variant="invisible" aria-labelledby="_r_18_"><svg aria-hidden="true" focusable="false" class="octicon octicon-ellipsis" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="M0 5.75C0 4.784.784 4 1.75 4h12.5c.966 0 1.75.784 1.75 1.75v4.5A1.75 1.75 0 0 1 14.25 12H1.75A1.75 1.75 0 0 1 0 10.25ZM12 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM7 8a1 1 0 1 0 2 0 1 1 0 0 0-2 0ZM4 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z"></path></svg></button><span class="prc-TooltipV2-Tooltip-tLeuB" data-direction="s" aria-hidden="true" id="_r_18_" popover="auto">Open commit details</span></div><div class="d-flex d-lg-none"><span role="tooltip" aria-label="143,778 Commits" id="history-icon-button-tooltip" class="prc-Tooltip-Tooltip-JLsri prc-Tooltip-Tooltip--n-SqCQ- tooltipped-n"><a aria-label="View commit history for this file." href="/microsoft/vscode/commits/main/" class="prc-Button-ButtonBase-9n-Xk LinkButton-module__code-view-link-button--thtqc flex-items-center fgColor-default" data-loading="false" data-size="small" data-variant="invisible" aria-describedby="history-icon-button-tooltip"><span data-component="buttonContent" data-align="center" class="prc-Button-ButtonContent-Iohp5"><span data-component="leadingVisual" class="prc-Button-Visual-YNt2F prc-Button-VisualWrap-E4cnq"><svg aria-hidden="true" focusable="false" class="octicon octicon-history" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="m.427 1.927 1.215 1.215a8.002 8.002 0 1 1-1.6 5.685.75.75 0 1 1 1.493-.154 6.5 6.5 0 1 0 1.18-4.458l1.358 1.358A.25.25 0 0 1 3.896 6H.25A.25.25 0 0 1 0 5.75V2.104a.25.25 0 0 1 .427-.177ZM7.75 4a.75.75 0 0 1 .75.75v2.992l2.028.812a.75.75 0 0 1-.557 1.392l-2.5-1A.751.751 0 0 1 7 8.25v-3.5A.75.75 0 0 1 7.75 4Z"></path></svg></span></span></a></span></div></div></div></div></td></tr><tr class="react-directory-row undefined" id="folder-row-0"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".config" aria-label=".config, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/.config" data-discover="true">.config</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".config" aria-label=".config, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/.config" data-discover="true">.config</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="chore: suppress node warnings (#274905)
2079
-
2080
- * chore: suppress node CFG warnings
2081
-
2082
- * Add lines from gdnsuppress" class="Link--secondary" href="/microsoft/vscode/commit/18d828e5d596e56b516fac7baa53e4b32cf087be">chore: suppress node warnings (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3584028422" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/274905" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/274905/hovercard" href="https://github.com/microsoft/vscode/pull/274905" aria-keyshortcuts="Alt+ArrowUp">#274905</a><a data-pjax="true" title="chore: suppress node warnings (#274905)
2083
-
2084
- * chore: suppress node CFG warnings
2085
-
2086
- * Add lines from gdnsuppress" class="Link--secondary" href="/microsoft/vscode/commit/18d828e5d596e56b516fac7baa53e4b32cf087be">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2025-11-04T03:45:30.000Z" title="Nov 4, 2025, 10:45 AM GMT+7">Nov 4, 2025</relative-time></div></td></tr><tr class="react-directory-row undefined" id="folder-row-1"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".devcontainer" aria-label=".devcontainer, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/.devcontainer" data-discover="true">.devcontainer</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".devcontainer" aria-label=".devcontainer, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/.devcontainer" data-discover="true">.devcontainer</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="fix: changed the node js version from 20 to 22 as per #257193 (#257400)
2087
-
2088
- Co-authored-by: Saptarshi Chakraborty &lt;saptarshi.c10@ad.infosys.com&gt;" class="Link--secondary" href="/microsoft/vscode/commit/8ab30c59997c076e108806d2b9d5a28e0aba64aa">fix: changed the node js version from 20 to 22 as per</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3250814454" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/257193" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/257193/hovercard" href="https://github.com/microsoft/vscode/issues/257193" aria-keyshortcuts="Alt+ArrowUp">#257193</a> <a data-pjax="true" title="fix: changed the node js version from 20 to 22 as per #257193 (#257400)
2089
-
2090
- Co-authored-by: Saptarshi Chakraborty &lt;saptarshi.c10@ad.infosys.com&gt;" class="Link--secondary" href="/microsoft/vscode/commit/8ab30c59997c076e108806d2b9d5a28e0aba64aa">(</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3254976745" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/257400" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/257400/hovercard" href="https://github.com/microsoft/vscode/pull/257400" aria-keyshortcuts="Alt+ArrowUp">#257400</a><a data-pjax="true" title="fix: changed the node js version from 20 to 22 as per #257193 (#257400)
2091
-
2092
- Co-authored-by: Saptarshi Chakraborty &lt;saptarshi.c10@ad.infosys.com&gt;" class="Link--secondary" href="/microsoft/vscode/commit/8ab30c59997c076e108806d2b9d5a28e0aba64aa">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2025-07-23T09:07:51.000Z" title="Jul 23, 2025, 4:07 PM GMT+7">Jul 23, 2025</relative-time></div></td></tr><tr class="react-directory-row undefined" id="folder-row-2"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".eslint-plugin-local" aria-label=".eslint-plugin-local, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/.eslint-plugin-local" data-discover="true">.eslint-plugin-local</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".eslint-plugin-local" aria-label=".eslint-plugin-local, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/.eslint-plugin-local" data-discover="true">.eslint-plugin-local</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="Remove Map/Set eslint rule" class="Link--secondary" href="/microsoft/vscode/commit/f2f21a56ea086998b1caeede014815fcac04ce5b">Remove Map/Set eslint rule</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2025-11-25T19:00:09.000Z" title="Nov 26, 2025, 2:00 AM GMT+7">Nov 26, 2025</relative-time></div></td></tr><tr class="react-directory-row undefined" id="folder-row-3"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".github" aria-label=".github, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/.github" data-discover="true">.github</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".github" aria-label=".github, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/.github" data-discover="true">.github</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="updates learnings (#287749)" class="Link--secondary" href="/microsoft/vscode/commit/92e1dfc80f574829b2251f7aa5bd598e9c91bb9d">updates learnings (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3812755526" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/287749" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/287749/hovercard" href="https://github.com/microsoft/vscode/pull/287749" aria-keyshortcuts="Alt+ArrowUp">#287749</a><a data-pjax="true" title="updates learnings (#287749)" class="Link--secondary" href="/microsoft/vscode/commit/92e1dfc80f574829b2251f7aa5bd598e9c91bb9d">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2026-01-14T11:38:21.000Z" title="Jan 14, 2026, 6:38 PM GMT+7">Jan 14, 2026</relative-time></div></td></tr><tr class="react-directory-row undefined" id="folder-row-4"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".vscode" aria-label=".vscode, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/.vscode" data-discover="true">.vscode</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".vscode" aria-label=".vscode, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/.vscode" data-discover="true">.vscode</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="eng - opt the team into using sessions (#288384)" class="Link--secondary" href="/microsoft/vscode/commit/a61aec9852a211d315f3a75b2353d8a7e9e6f8dc">eng - opt the team into using sessions (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3822480095" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/288384" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/288384/hovercard" href="https://github.com/microsoft/vscode/pull/288384" aria-keyshortcuts="Alt+ArrowUp">#288384</a><a data-pjax="true" title="eng - opt the team into using sessions (#288384)" class="Link--secondary" href="/microsoft/vscode/commit/a61aec9852a211d315f3a75b2353d8a7e9e6f8dc">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2026-01-16T15:52:48.000Z" title="Jan 16, 2026, 10:52 PM GMT+7">Jan 16, 2026</relative-time></div></td></tr><tr class="react-directory-row undefined" id="folder-row-5"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="build" aria-label="build, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/build" data-discover="true">build</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="build" aria-label="build, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/build" data-discover="true">build</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="feat: enable win11 context menu for stable (#287832)
2093
-
2094
- * feat: enable win11 context menu for stable
2095
-
2096
- * chore: update dll package
2097
-
2098
- * chore: codesign appx for stable
2099
-
2100
- * feat: support system setup
2101
-
2102
- * fix: allow installing appx for system setup
2103
-
2104
- * fix: add -SkipLicense to avoid exception during install" class="Link--secondary" href="/microsoft/vscode/commit/3e56b3a2a4002a63b82bdcfdb7ea5873dbc6957e">feat: enable win11 context menu for stable (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3814310633" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/287832" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/287832/hovercard" href="https://github.com/microsoft/vscode/pull/287832" aria-keyshortcuts="Alt+ArrowUp">#287832</a><a data-pjax="true" title="feat: enable win11 context menu for stable (#287832)
2105
-
2106
- * feat: enable win11 context menu for stable
2107
-
2108
- * chore: update dll package
2109
-
2110
- * chore: codesign appx for stable
2111
-
2112
- * feat: support system setup
2113
-
2114
- * fix: allow installing appx for system setup
2115
-
2116
- * fix: add -SkipLicense to avoid exception during install" class="Link--secondary" href="/microsoft/vscode/commit/3e56b3a2a4002a63b82bdcfdb7ea5873dbc6957e">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2026-01-15T18:49:28.000Z" title="Jan 16, 2026, 1:49 AM GMT+7">Jan 16, 2026</relative-time></div></td></tr><tr class="react-directory-row undefined" id="folder-row-6"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="cli" aria-label="cli, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/cli" data-discover="true">cli</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="cli" aria-label="cli, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/cli" data-discover="true">cli</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="3rd party notices (#286063)" class="Link--secondary" href="/microsoft/vscode/commit/4ed90f790da8ff69afeb294ce13be15afa1c0c5b">3rd party notices (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3784166851" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/286063" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/286063/hovercard" href="https://github.com/microsoft/vscode/pull/286063" aria-keyshortcuts="Alt+ArrowUp">#286063</a><a data-pjax="true" title="3rd party notices (#286063)" class="Link--secondary" href="/microsoft/vscode/commit/4ed90f790da8ff69afeb294ce13be15afa1c0c5b">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2026-01-06T08:23:42.000Z" title="Jan 6, 2026, 3:23 PM GMT+7">Jan 6, 2026</relative-time></div></td></tr><tr class="react-directory-row undefined" id="folder-row-7"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="extensions" aria-label="extensions, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/extensions" data-discover="true">extensions</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="extensions" aria-label="extensions, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/extensions" data-discover="true">extensions</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="Merge pull request #288417 from microsoft/mrleemurray/probable-quail-black
2117
-
2118
- Add 2026 theme files and enhance customization options" class="Link--secondary" href="/microsoft/vscode/commit/eb67b922d65e80aff770ba883693191ed5a2ed32">Merge pull request</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3822811508" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/288417" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/288417/hovercard" href="https://github.com/microsoft/vscode/pull/288417" aria-keyshortcuts="Alt+ArrowUp">#288417</a> <a data-pjax="true" title="Merge pull request #288417 from microsoft/mrleemurray/probable-quail-black
2119
-
2120
- Add 2026 theme files and enhance customization options" class="Link--secondary" href="/microsoft/vscode/commit/eb67b922d65e80aff770ba883693191ed5a2ed32">from microsoft/mrleemurray/probable-quail-…</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2026-01-16T17:28:38.000Z" title="Jan 17, 2026, 12:28 AM GMT+7">Jan 17, 2026</relative-time></div></td></tr><tr class="react-directory-row undefined" id="folder-row-8"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="remote" aria-label="remote, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/remote" data-discover="true">remote</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="remote" aria-label="remote, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/remote" data-discover="true">remote</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="Merge pull request #287561 from microsoft/tyriar/xterm_260113
2121
-
2122
- @xterm/xterm@6.1.0-beta.102" class="Link--secondary" href="/microsoft/vscode/commit/9d173ad771442fa0c61786916566dbb925621dba">Merge pull request</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3809273708" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/287561" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/287561/hovercard" href="https://github.com/microsoft/vscode/pull/287561" aria-keyshortcuts="Alt+ArrowUp">#287561</a> <a data-pjax="true" title="Merge pull request #287561 from microsoft/tyriar/xterm_260113
2123
-
2124
- @xterm/xterm@6.1.0-beta.102" class="Link--secondary" href="/microsoft/vscode/commit/9d173ad771442fa0c61786916566dbb925621dba">from microsoft/tyriar/xterm_260113</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2026-01-16T11:33:20.000Z" title="Jan 16, 2026, 6:33 PM GMT+7">Jan 16, 2026</relative-time></div></td></tr><tr class="react-directory-row undefined" id="folder-row-9"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="resources" aria-label="resources, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/resources" data-discover="true">resources</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="resources" aria-label="resources, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/resources" data-discover="true">resources</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="fix: ci for snap builds (#280871)" class="Link--secondary" href="/microsoft/vscode/commit/fae32c4c21fc40c9caaf480b4f7f28ca077a2be6">fix: ci for snap builds (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3688794909" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/280871" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/280871/hovercard" href="https://github.com/microsoft/vscode/pull/280871" aria-keyshortcuts="Alt+ArrowUp">#280871</a><a data-pjax="true" title="fix: ci for snap builds (#280871)" class="Link--secondary" href="/microsoft/vscode/commit/fae32c4c21fc40c9caaf480b4f7f28ca077a2be6">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2025-12-03T07:22:13.000Z" title="Dec 3, 2025, 2:22 PM GMT+7">Dec 3, 2025</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-10"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="scripts" aria-label="scripts, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/scripts" data-discover="true">scripts</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="scripts" aria-label="scripts, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/scripts" data-discover="true">scripts</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="Deletes unused playground-server. (#286718)
2125
-
2126
- The monaco dev playground now uses vite." class="Link--secondary" href="/microsoft/vscode/commit/4f9b1f6593452409a5c15a6eb1e58acb5464f173">Deletes unused playground-server. (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3796577008" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/286718" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/286718/hovercard" href="https://github.com/microsoft/vscode/pull/286718" aria-keyshortcuts="Alt+ArrowUp">#286718</a><a data-pjax="true" title="Deletes unused playground-server. (#286718)
2127
-
2128
- The monaco dev playground now uses vite." class="Link--secondary" href="/microsoft/vscode/commit/4f9b1f6593452409a5c15a6eb1e58acb5464f173">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2026-01-09T11:43:06.000Z" title="Jan 9, 2026, 6:43 PM GMT+7">Jan 9, 2026</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-11"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="src" aria-label="src, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/src" data-discover="true">src</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="src" aria-label="src, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/src" data-discover="true">src</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="inline completions: fix passing changeHint context (#288428)" class="Link--secondary" href="/microsoft/vscode/commit/ea6ce12828c272697926762402173c0395ad9511">inline completions: fix passing changeHint context (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3822965735" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/288428" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/288428/hovercard" href="https://github.com/microsoft/vscode/pull/288428" aria-keyshortcuts="Alt+ArrowUp">#288428</a><a data-pjax="true" title="inline completions: fix passing changeHint context (#288428)" class="Link--secondary" href="/microsoft/vscode/commit/ea6ce12828c272697926762402173c0395ad9511">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2026-01-16T18:25:28.000Z" title="Jan 17, 2026, 1:25 AM GMT+7">Jan 17, 2026</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-12"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="test" aria-label="test, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/test" data-discover="true">test</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file-directory-fill icon-directory" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="test" aria-label="test, (Directory)" class="Link--primary" href="/microsoft/vscode/tree/main/test" data-discover="true">test</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="deps - check in a package.lock (#288233)" class="Link--secondary" href="/microsoft/vscode/commit/563f788ca95716034e7f68e7e113640d727cb8a8">deps - check in a package.lock (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3820469460" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/288233" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/288233/hovercard" href="https://github.com/microsoft/vscode/pull/288233" aria-keyshortcuts="Alt+ArrowUp">#288233</a><a data-pjax="true" title="deps - check in a package.lock (#288233)" class="Link--secondary" href="/microsoft/vscode/commit/563f788ca95716034e7f68e7e113640d727cb8a8">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2026-01-16T06:19:00.000Z" title="Jan 16, 2026, 1:19 PM GMT+7">Jan 16, 2026</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-13"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".editorconfig" aria-label=".editorconfig, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.editorconfig" data-discover="true">.editorconfig</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".editorconfig" aria-label=".editorconfig, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.editorconfig" data-discover="true">.editorconfig</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="No forcing tabsize on users" class="Link--secondary" href="/microsoft/vscode/commit/a04ddffb9dee33d27f308529b6f4359a592db45d">No forcing tabsize on users</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2018-12-19T17:10:53.000Z" title="Dec 20, 2018, 12:10 AM GMT+7">Dec 20, 2018</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-14"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".eslint-ignore" aria-label=".eslint-ignore, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.eslint-ignore" data-discover="true">.eslint-ignore</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".eslint-ignore" aria-label=".eslint-ignore, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.eslint-ignore" data-discover="true">.eslint-ignore</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="Remove `src/vs/loader.js` (fix #285255) (#286727)" class="Link--secondary" href="/microsoft/vscode/commit/9ad93e319e64d5ff258c8d8a69e17384d16c6751">Remove</a> <code><a data-pjax="true" title="Remove `src/vs/loader.js` (fix #285255) (#286727)" class="Link--secondary" href="/microsoft/vscode/commit/9ad93e319e64d5ff258c8d8a69e17384d16c6751">src/vs/loader.js</a></code> <a data-pjax="true" title="Remove `src/vs/loader.js` (fix #285255) (#286727)" class="Link--secondary" href="/microsoft/vscode/commit/9ad93e319e64d5ff258c8d8a69e17384d16c6751">(</a><span class="issue-keyword tooltipped tooltipped-se" aria-label="This commit closes issue #285255."><a data-pjax="true" title="Remove `src/vs/loader.js` (fix #285255) (#286727)" class="Link--secondary" href="/microsoft/vscode/commit/9ad93e319e64d5ff258c8d8a69e17384d16c6751">fix</a></span> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3765827139" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/285255" data-hovercard-type="issue" data-hovercard-url="/microsoft/vscode/issues/285255/hovercard" href="https://github.com/microsoft/vscode/issues/285255" aria-keyshortcuts="Alt+ArrowUp">#285255</a><a data-pjax="true" title="Remove `src/vs/loader.js` (fix #285255) (#286727)" class="Link--secondary" href="/microsoft/vscode/commit/9ad93e319e64d5ff258c8d8a69e17384d16c6751">) (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3796668232" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/286727" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/286727/hovercard" href="https://github.com/microsoft/vscode/pull/286727" aria-keyshortcuts="Alt+ArrowUp">#286727</a><a data-pjax="true" title="Remove `src/vs/loader.js` (fix #285255) (#286727)" class="Link--secondary" href="/microsoft/vscode/commit/9ad93e319e64d5ff258c8d8a69e17384d16c6751">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2026-01-09T14:13:32.000Z" title="Jan 9, 2026, 9:13 PM GMT+7">Jan 9, 2026</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-15"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".git-blame-ignore-revs" aria-label=".git-blame-ignore-revs, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.git-blame-ignore-revs" data-discover="true">.git-blame-ignore-revs</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".git-blame-ignore-revs" aria-label=".git-blame-ignore-revs, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.git-blame-ignore-revs" data-discover="true">.git-blame-ignore-revs</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="eng - add ESM migration commit to `.git-blame-ignore-revs` (#227190)" class="Link--secondary" href="/microsoft/vscode/commit/a6de21e1a45e970ee1f1ca9410a36b7d2af66580">eng - add ESM migration commit to</a> <code><a data-pjax="true" title="eng - add ESM migration commit to `.git-blame-ignore-revs` (#227190)" class="Link--secondary" href="/microsoft/vscode/commit/a6de21e1a45e970ee1f1ca9410a36b7d2af66580">.git-blame-ignore-revs</a></code> <a data-pjax="true" title="eng - add ESM migration commit to `.git-blame-ignore-revs` (#227190)" class="Link--secondary" href="/microsoft/vscode/commit/a6de21e1a45e970ee1f1ca9410a36b7d2af66580">(</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2496627185" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/227190" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/227190/hovercard" href="https://github.com/microsoft/vscode/pull/227190" aria-keyshortcuts="Alt+ArrowUp">#227190</a><a data-pjax="true" title="eng - add ESM migration commit to `.git-blame-ignore-revs` (#227190)" class="Link--secondary" href="/microsoft/vscode/commit/a6de21e1a45e970ee1f1ca9410a36b7d2af66580">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2024-08-30T09:06:02.000Z" title="Aug 30, 2024, 4:06 PM GMT+7">Aug 30, 2024</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-16"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".gitattributes" aria-label=".gitattributes, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.gitattributes" data-discover="true">.gitattributes</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".gitattributes" aria-label=".gitattributes, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.gitattributes" data-discover="true">.gitattributes</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="Whitelist comments in all JSON files. For #129206" class="Link--secondary" href="/microsoft/vscode/commit/abfaf30a04ffd25f9b3a835479379329ab947495">Whitelist comments in all JSON files. For</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="951171624" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/129206" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/129206/hovercard" href="https://github.com/microsoft/vscode/pull/129206" aria-keyshortcuts="Alt+ArrowUp">#129206</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2021-09-20T12:54:26.000Z" title="Sep 20, 2021, 7:54 PM GMT+7">Sep 20, 2021</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-17"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".gitignore" aria-label=".gitignore, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.gitignore" data-discover="true">.gitignore</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".gitignore" aria-label=".gitignore, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.gitignore" data-discover="true">.gitignore</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="Add data prompt (#267543)
2129
-
2130
- For querying telemetry data. Uses the Azure MCP Server's kusto tool." class="Link--secondary" href="/microsoft/vscode/commit/b20a91e37afe5c690e76f702e8590344b37b5f8a">Add data prompt (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3436112972" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/267543" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/267543/hovercard" href="https://github.com/microsoft/vscode/pull/267543" aria-keyshortcuts="Alt+ArrowUp">#267543</a><a data-pjax="true" title="Add data prompt (#267543)
2131
-
2132
- For querying telemetry data. Uses the Azure MCP Server's kusto tool." class="Link--secondary" href="/microsoft/vscode/commit/b20a91e37afe5c690e76f702e8590344b37b5f8a">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2025-09-19T23:00:11.000Z" title="Sep 20, 2025, 6:00 AM GMT+7">Sep 20, 2025</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-18"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".lsifrc.json" aria-label=".lsifrc.json, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.lsifrc.json" data-discover="true">.lsifrc.json</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".lsifrc.json" aria-label=".lsifrc.json, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.lsifrc.json" data-discover="true">.lsifrc.json</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="Add lsifrc file" class="Link--secondary" href="/microsoft/vscode/commit/dd782c3a54ff9d3719e483e7ed1e7229aa830e1c">Add lsifrc file</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2021-07-14T11:38:16.000Z" title="Jul 14, 2021, 6:38 PM GMT+7">Jul 14, 2021</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-19"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".mailmap" aria-label=".mailmap, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.mailmap" data-discover="true">.mailmap</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".mailmap" aria-label=".mailmap, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.mailmap" data-discover="true">.mailmap</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="update .mailmap (#159565)" class="Link--secondary" href="/microsoft/vscode/commit/43a909c0ae0e25aed7780871e7e340daf8d237a6">update .mailmap (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1355814239" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/159565" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/159565/hovercard" href="https://github.com/microsoft/vscode/pull/159565" aria-keyshortcuts="Alt+ArrowUp">#159565</a><a data-pjax="true" title="update .mailmap (#159565)" class="Link--secondary" href="/microsoft/vscode/commit/43a909c0ae0e25aed7780871e7e340daf8d237a6">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2022-08-30T14:14:56.000Z" title="Aug 30, 2022, 9:14 PM GMT+7">Aug 30, 2022</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-20"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".mention-bot" aria-label=".mention-bot, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.mention-bot" data-discover="true">.mention-bot</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".mention-bot" aria-label=".mention-bot, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.mention-bot" data-discover="true">.mention-bot</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="update mention bot configuration
2133
-
2134
- fixes #8822" class="Link--secondary" href="/microsoft/vscode/commit/797317d8705e556ddb413e89035e494719ab30f5">update mention bot configuration</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2016-07-11T14:43:26.000Z" title="Jul 11, 2016, 9:43 PM GMT+7">Jul 11, 2016</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-21"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".npmrc" aria-label=".npmrc, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.npmrc" data-discover="true">.npmrc</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".npmrc" aria-label=".npmrc, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.npmrc" data-discover="true">.npmrc</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="fix: capture diagnostics and add workaround for graphite recording order failures (#287798)
2135
-
2136
- * feat: expose gpu log messages as part of --status
2137
-
2138
- This is useful in scenarios where the application rendering
2139
- completely breaks and we want to know the health of gpu process
2140
- on demand without having to restart the application.
2141
-
2142
- The log messages are usually available on demand via
2143
- Developer: Show GPU Info page but during complete rendering failure
2144
- the developer page will also fail to render.
2145
-
2146
- * feat: add support for argv.json switch to recover from failure
2147
-
2148
- * chore: address feedback
2149
-
2150
- * chore: update build
2151
-
2152
- * chore: bump distro" class="Link--secondary" href="/microsoft/vscode/commit/1fe49563dcd08fe007b04c6aa3b89a1f1fef46b6">fix: capture diagnostics and add workaround for graphite recording or…</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2026-01-15T08:00:20.000Z" title="Jan 15, 2026, 3:00 PM GMT+7">Jan 15, 2026</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-22"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".nvmrc" aria-label=".nvmrc, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.nvmrc" data-discover="true">.nvmrc</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".nvmrc" aria-label=".nvmrc, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.nvmrc" data-discover="true">.nvmrc</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="chore: bump .nvmrc (#282925)" class="Link--secondary" href="/microsoft/vscode/commit/8adcf3ee9582d9d4060585dced29bff2be576821">chore: bump .nvmrc (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3721801956" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/282925" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/282925/hovercard" href="https://github.com/microsoft/vscode/pull/282925" aria-keyshortcuts="Alt+ArrowUp">#282925</a><a data-pjax="true" title="chore: bump .nvmrc (#282925)" class="Link--secondary" href="/microsoft/vscode/commit/8adcf3ee9582d9d4060585dced29bff2be576821">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2025-12-12T04:11:26.000Z" title="Dec 12, 2025, 11:11 AM GMT+7">Dec 12, 2025</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-23"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".vscode-test.js" aria-label=".vscode-test.js, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.vscode-test.js" data-discover="true">.vscode-test.js</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title=".vscode-test.js" aria-label=".vscode-test.js, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/.vscode-test.js" data-discover="true">.vscode-test.js</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="Support folding in git COMMIT_MSG files (#272356)" class="Link--secondary" href="/microsoft/vscode/commit/b5903ae54c35d78b8ed2fd82a7dcf31764191de7">Support folding in git COMMIT_MSG files (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3534069316" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/272356" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/272356/hovercard" href="https://github.com/microsoft/vscode/pull/272356" aria-keyshortcuts="Alt+ArrowUp">#272356</a><a data-pjax="true" title="Support folding in git COMMIT_MSG files (#272356)" class="Link--secondary" href="/microsoft/vscode/commit/b5903ae54c35d78b8ed2fd82a7dcf31764191de7">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2025-10-21T16:26:47.000Z" title="Oct 21, 2025, 11:26 PM GMT+7">Oct 21, 2025</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-24"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="AGENTS.md" aria-label="AGENTS.md, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/AGENTS.md" data-discover="true">AGENTS.md</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="AGENTS.md" aria-label="AGENTS.md, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/AGENTS.md" data-discover="true">AGENTS.md</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="docs - add instructions for AI coding agents (#280321)" class="Link--secondary" href="/microsoft/vscode/commit/ea130eeb3ab7e0f81a81bf137c5161ae5377e47c">docs - add instructions for AI coding agents (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3681072116" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/280321" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/280321/hovercard" href="https://github.com/microsoft/vscode/pull/280321" aria-keyshortcuts="Alt+ArrowUp">#280321</a><a data-pjax="true" title="docs - add instructions for AI coding agents (#280321)" class="Link--secondary" href="/microsoft/vscode/commit/ea130eeb3ab7e0f81a81bf137c5161ae5377e47c">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2025-12-01T13:59:21.000Z" title="Dec 1, 2025, 8:59 PM GMT+7">Dec 1, 2025</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-25"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="CONTRIBUTING.md" aria-label="CONTRIBUTING.md, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/CONTRIBUTING.md" data-discover="true">CONTRIBUTING.md</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="CONTRIBUTING.md" aria-label="CONTRIBUTING.md, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/CONTRIBUTING.md" data-discover="true">CONTRIBUTING.md</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="Merge branch 'main' into patch-1" class="Link--secondary" href="/microsoft/vscode/commit/1fe872e131c0b79e006abdc87c78f2ea26bc82f6">Merge branch 'main' into patch-1</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2023-12-11T11:12:18.000Z" title="Dec 11, 2023, 6:12 PM GMT+7">Dec 11, 2023</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-26"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="CodeQL.yml" aria-label="CodeQL.yml, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/CodeQL.yml" data-discover="true">CodeQL.yml</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="CodeQL.yml" aria-label="CodeQL.yml, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/CodeQL.yml" data-discover="true">CodeQL.yml</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="eng: mark the patch application file as being generated (#194047)" class="Link--secondary" href="/microsoft/vscode/commit/dd4ed00c370acbae83e0239d73bc18d1353a212e">eng: mark the patch application file as being generated (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1912165368" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/194047" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/194047/hovercard" href="https://github.com/microsoft/vscode/pull/194047" aria-keyshortcuts="Alt+ArrowUp">#194047</a><a data-pjax="true" title="eng: mark the patch application file as being generated (#194047)" class="Link--secondary" href="/microsoft/vscode/commit/dd4ed00c370acbae83e0239d73bc18d1353a212e">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2023-09-26T03:31:01.000Z" title="Sep 26, 2023, 10:31 AM GMT+7">Sep 26, 2023</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-27"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="LICENSE.txt" aria-label="LICENSE.txt, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/LICENSE.txt" data-discover="true">LICENSE.txt</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="LICENSE.txt" aria-label="LICENSE.txt, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/LICENSE.txt" data-discover="true">LICENSE.txt</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="remove blank line (my best checkin ever)" class="Link--secondary" href="/microsoft/vscode/commit/eee5d36cbf70c906d66bcdc03861b3feaa445d75">remove blank line (my best checkin ever)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2020-05-01T21:26:04.000Z" title="May 2, 2020, 4:26 AM GMT+7">May 2, 2020</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-28"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="README.md" aria-label="README.md, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/README.md" data-discover="true">README.md</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="README.md" aria-label="README.md, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/README.md" data-discover="true">README.md</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="docs: update Twitter branding to X in README (#280235)
2153
-
2154
- docs: update Twitter link to X
2155
-
2156
- Co-authored-by: João Moreno &lt;joaomoreno@users.noreply.github.com&gt;" class="Link--secondary" href="/microsoft/vscode/commit/ca00f864402e7a4660e06cda55b5d839f36b87b7">docs: update Twitter branding to X in README (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3679248649" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/280235" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/280235/hovercard" href="https://github.com/microsoft/vscode/pull/280235" aria-keyshortcuts="Alt+ArrowUp">#280235</a><a data-pjax="true" title="docs: update Twitter branding to X in README (#280235)
2157
-
2158
- docs: update Twitter link to X
2159
-
2160
- Co-authored-by: João Moreno &lt;joaomoreno@users.noreply.github.com&gt;" class="Link--secondary" href="/microsoft/vscode/commit/ca00f864402e7a4660e06cda55b5d839f36b87b7">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2025-12-16T16:49:55.000Z" title="Dec 16, 2025, 11:49 PM GMT+7">Dec 16, 2025</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-29"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="SECURITY.md" aria-label="SECURITY.md, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/SECURITY.md" data-discover="true">SECURITY.md</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="SECURITY.md" aria-label="SECURITY.md, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/SECURITY.md" data-discover="true">SECURITY.md</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="update security.md (#252288)" class="Link--secondary" href="/microsoft/vscode/commit/f730bc2a24fc650b9cf9fca24b2f6df0aa7b317c">update security.md (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3172221743" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/252288" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/252288/hovercard" href="https://github.com/microsoft/vscode/pull/252288" aria-keyshortcuts="Alt+ArrowUp">#252288</a><a data-pjax="true" title="update security.md (#252288)" class="Link--secondary" href="/microsoft/vscode/commit/f730bc2a24fc650b9cf9fca24b2f6df0aa7b317c">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2025-06-24T14:46:23.000Z" title="Jun 24, 2025, 9:46 PM GMT+7">Jun 24, 2025</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-30"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="ThirdPartyNotices.txt" aria-label="ThirdPartyNotices.txt, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/ThirdPartyNotices.txt" data-discover="true">ThirdPartyNotices.txt</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="ThirdPartyNotices.txt" aria-label="ThirdPartyNotices.txt, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/ThirdPartyNotices.txt" data-discover="true">ThirdPartyNotices.txt</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="oss tool (#280470)" class="Link--secondary" href="/microsoft/vscode/commit/468760014796f83a413b5537d4cb56e9531e1c5e">oss tool (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3683355482" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/280470" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/280470/hovercard" href="https://github.com/microsoft/vscode/pull/280470" aria-keyshortcuts="Alt+ArrowUp">#280470</a><a data-pjax="true" title="oss tool (#280470)" class="Link--secondary" href="/microsoft/vscode/commit/468760014796f83a413b5537d4cb56e9531e1c5e">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2025-12-02T00:12:19.000Z" title="Dec 2, 2025, 7:12 AM GMT+7">Dec 2, 2025</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-31"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="cglicenses.json" aria-label="cglicenses.json, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/cglicenses.json" data-discover="true">cglicenses.json</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="cglicenses.json" aria-label="cglicenses.json, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/cglicenses.json" data-discover="true">cglicenses.json</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="adopt new version of tas-client, no longer use &quot;umd&quot; variant (#263340)
2161
-
2162
- upgrade to tas-client 0.3.1" class="Link--secondary" href="/microsoft/vscode/commit/27a2bcb0565b06f02c76f633ea8a0dade9ba231c">adopt new version of tas-client, no longer use "umd" variant (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3353398947" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/263340" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/263340/hovercard" href="https://github.com/microsoft/vscode/pull/263340" aria-keyshortcuts="Alt+ArrowUp">#263340</a><a data-pjax="true" title="adopt new version of tas-client, no longer use &quot;umd&quot; variant (#263340)
2163
-
2164
- upgrade to tas-client 0.3.1" class="Link--secondary" href="/microsoft/vscode/commit/27a2bcb0565b06f02c76f633ea8a0dade9ba231c">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2025-11-12T15:50:41.000Z" title="Nov 12, 2025, 10:50 PM GMT+7">Nov 12, 2025</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-32"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="cgmanifest.json" aria-label="cgmanifest.json, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/cgmanifest.json" data-discover="true">cgmanifest.json</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="cgmanifest.json" aria-label="cgmanifest.json, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/cgmanifest.json" data-discover="true">cgmanifest.json</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="chore: bump electron@39.2.7 (#283786)
2165
-
2166
- * chore: bump electron@39.2.7
2167
-
2168
- * chore: bump distro
2169
-
2170
- * chore: update electron checksums" class="Link--secondary" href="/microsoft/vscode/commit/4c616ec9d165b0aea980705650e47e667d02414c">chore: bump electron@39.2.7 (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3734368198" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/283786" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/283786/hovercard" href="https://github.com/microsoft/vscode/pull/283786" aria-keyshortcuts="Alt+ArrowUp">#283786</a><a data-pjax="true" title="chore: bump electron@39.2.7 (#283786)
2171
-
2172
- * chore: bump electron@39.2.7
2173
-
2174
- * chore: bump distro
2175
-
2176
- * chore: update electron checksums" class="Link--secondary" href="/microsoft/vscode/commit/4c616ec9d165b0aea980705650e47e667d02414c">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2025-12-16T12:57:53.000Z" title="Dec 16, 2025, 7:57 PM GMT+7">Dec 16, 2025</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-33"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="eslint.config.js" aria-label="eslint.config.js, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/eslint.config.js" data-discover="true">eslint.config.js</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="eslint.config.js" aria-label="eslint.config.js, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/eslint.config.js" data-discover="true">eslint.config.js</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="chore: bump native-watchdog (#287848)
2177
-
2178
- * chore: bump native-watchdog
2179
-
2180
- * Rename more instances
2181
-
2182
- * chore: update Debian x64 dep list" class="Link--secondary" href="/microsoft/vscode/commit/1251d8b73782553eaa0bfa214aec1db2666ff467">chore: bump native-watchdog (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3814532382" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/287848" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/287848/hovercard" href="https://github.com/microsoft/vscode/pull/287848" aria-keyshortcuts="Alt+ArrowUp">#287848</a><a data-pjax="true" title="chore: bump native-watchdog (#287848)
2183
-
2184
- * chore: bump native-watchdog
2185
-
2186
- * Rename more instances
2187
-
2188
- * chore: update Debian x64 dep list" class="Link--secondary" href="/microsoft/vscode/commit/1251d8b73782553eaa0bfa214aec1db2666ff467">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2026-01-15T06:34:13.000Z" title="Jan 15, 2026, 1:34 PM GMT+7">Jan 15, 2026</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-34"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="gulpfile.mjs" aria-label="gulpfile.mjs, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/gulpfile.mjs" data-discover="true">gulpfile.mjs</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="gulpfile.mjs" aria-label="gulpfile.mjs, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/gulpfile.mjs" data-discover="true">gulpfile.mjs</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="Run our build scripts directly as typescript (#277567)
2189
-
2190
- * Run our build scripts directly as typescript #277567
2191
-
2192
- Follow up on #276864
2193
- For #277526
2194
-
2195
- * Remove a few more ts-node references
2196
-
2197
- * Fix linux and script reference
2198
-
2199
- * Remove `_build-script` ref
2200
-
2201
- * Fix script missing closing quote
2202
-
2203
- * use type only import
2204
-
2205
- * Fix export
2206
-
2207
- * Make sure to run copy-policy-dto
2208
-
2209
- * Make sure we run the copy-policy-dto script
2210
-
2211
- * Enable `verbatimModuleSyntax`
2212
-
2213
- * Pipelines fixes
2214
-
2215
- * Try adding explicit ext to path
2216
-
2217
- * Fix bad edit
2218
-
2219
- * Revert extra `--`
2220
-
2221
- ---------
2222
-
2223
- Co-authored-by: João Moreno &lt;joaomoreno@users.noreply.github.com&gt;" class="Link--secondary" href="/microsoft/vscode/commit/2648263d3ed0b0107b76b654cc1f2963f4c22896">Run our build scripts directly as typescript (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3627602652" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/277567" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/277567/hovercard" href="https://github.com/microsoft/vscode/pull/277567" aria-keyshortcuts="Alt+ArrowUp">#277567</a><a data-pjax="true" title="Run our build scripts directly as typescript (#277567)
2224
-
2225
- * Run our build scripts directly as typescript #277567
2226
-
2227
- Follow up on #276864
2228
- For #277526
2229
-
2230
- * Remove a few more ts-node references
2231
-
2232
- * Fix linux and script reference
2233
-
2234
- * Remove `_build-script` ref
2235
-
2236
- * Fix script missing closing quote
2237
-
2238
- * use type only import
2239
-
2240
- * Fix export
2241
-
2242
- * Make sure to run copy-policy-dto
2243
-
2244
- * Make sure we run the copy-policy-dto script
2245
-
2246
- * Enable `verbatimModuleSyntax`
2247
-
2248
- * Pipelines fixes
2249
-
2250
- * Try adding explicit ext to path
2251
-
2252
- * Fix bad edit
2253
-
2254
- * Revert extra `--`
2255
-
2256
- ---------
2257
-
2258
- Co-authored-by: João Moreno &lt;joaomoreno@users.noreply.github.com&gt;" class="Link--secondary" href="/microsoft/vscode/commit/2648263d3ed0b0107b76b654cc1f2963f4c22896">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2025-11-21T13:56:00.000Z" title="Nov 21, 2025, 8:56 PM GMT+7">Nov 21, 2025</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-35"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="package-lock.json" aria-label="package-lock.json, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/package-lock.json" data-discover="true">package-lock.json</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="package-lock.json" aria-label="package-lock.json, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/package-lock.json" data-discover="true">package-lock.json</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="Merge pull request #287561 from microsoft/tyriar/xterm_260113
2259
-
2260
- @xterm/xterm@6.1.0-beta.102" class="Link--secondary" href="/microsoft/vscode/commit/9d173ad771442fa0c61786916566dbb925621dba">Merge pull request</a> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3809273708" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/287561" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/287561/hovercard" href="https://github.com/microsoft/vscode/pull/287561" aria-keyshortcuts="Alt+ArrowUp">#287561</a> <a data-pjax="true" title="Merge pull request #287561 from microsoft/tyriar/xterm_260113
2261
-
2262
- @xterm/xterm@6.1.0-beta.102" class="Link--secondary" href="/microsoft/vscode/commit/9d173ad771442fa0c61786916566dbb925621dba">from microsoft/tyriar/xterm_260113</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2026-01-16T11:33:20.000Z" title="Jan 16, 2026, 6:33 PM GMT+7">Jan 16, 2026</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-36"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="package.json" aria-label="package.json, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/package.json" data-discover="true">package.json</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="package.json" aria-label="package.json, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/package.json" data-discover="true">package.json</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="updating distro hash (#288309)" class="Link--secondary" href="/microsoft/vscode/commit/d0eda2a6229ee5194e56f82bcdc560157cd2c172">updating distro hash (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3821562673" data-permission-text="Title is private" data-url="https://github.com/microsoft/vscode/issues/288309" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/vscode/pull/288309/hovercard" href="https://github.com/microsoft/vscode/pull/288309" aria-keyshortcuts="Alt+ArrowUp">#288309</a><a data-pjax="true" title="updating distro hash (#288309)" class="Link--secondary" href="/microsoft/vscode/commit/d0eda2a6229ee5194e56f82bcdc560157cd2c172">)</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2026-01-16T11:53:24.000Z" title="Jan 16, 2026, 6:53 PM GMT+7">Jan 16, 2026</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-37"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="product.json" aria-label="product.json, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/product.json" data-discover="true">product.json</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="product.json" aria-label="product.json, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/product.json" data-discover="true">product.json</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="make it a command for the setup tool" class="Link--secondary" href="/microsoft/vscode/commit/bedacb90c35657c358b4fafae18ac72f8f02aee6">make it a command for the setup tool</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2026-01-12T09:41:08.000Z" title="Jan 12, 2026, 4:41 PM GMT+7">Jan 12, 2026</relative-time></div></td></tr><tr class="react-directory-row truncate-for-mobile" id="folder-row-38"><td class="react-directory-row-name-cell-small-screen" colspan="2"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="tsfmt.json" aria-label="tsfmt.json, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/tsfmt.json" data-discover="true">tsfmt.json</a></div></div></div></div></td><td class="react-directory-row-name-cell-large-screen" colspan="1"><div class="react-directory-filename-column"><svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z"></path></svg><div class="overflow-hidden"><div class="react-directory-filename-cell"><div class="react-directory-truncate"><a title="tsfmt.json" aria-label="tsfmt.json, (File)" class="Link--primary" href="/microsoft/vscode/blob/main/tsfmt.json" data-discover="true">tsfmt.json</a></div></div></div></div></td><td class="react-directory-row-commit-cell"><div><div class="react-directory-commit-message"><a data-pjax="true" title="Add insertSpaceAfterOpeningAndBeforeClosingEmptyBraces to tsfmt
2263
-
2264
- This setting currently isn't picked up properly (https://github.com/vvakame/typescript-formatter/issues/166) but adding it for the future" class="Link--secondary" href="/microsoft/vscode/commit/9a1466679bbe4e55ad1770f79071170cda94e704">Add insertSpaceAfterOpeningAndBeforeClosingEmptyBraces to tsfmt</a></div></div></td><td><div class="react-directory-commit-age"><relative-time tense="past" datetime="2021-08-30T22:48:55.000Z" title="Aug 31, 2021, 5:48 AM GMT+7">Aug 31, 2021</relative-time></div></td></tr><tr class="show-for-mobile DirectoryContent-module__Box_4--QyUbd" data-testid="view-all-files-row"><td colspan="3" class="DirectoryContent-module__Box_5--OJZQU"><div><button class="prc-Link-Link-9ZwDx">View all files</button></div></td></tr></tbody></table></div><div class="OverviewRepoFiles-module__Box_1--yBtNT"><div class="OverviewRepoFiles-module__Box_2--w5aD8"><div itemscope="" itemtype="https://schema.org/abstract" class="OverviewRepoFiles-module__Box_3--ELDBz"><h2 class="prc-src-InternalVisuallyHidden-2YaI6">Repository files navigation</h2><nav class="prc-components-UnderlineWrapper-eT-Yj OverviewRepoFiles-module__UnderlineNav--uKbU6" aria-label="Repository files" data-variant="inset"><ul class="prc-components-UnderlineItemList-xKlKC" role="list"><li class="prc-UnderlineNav-UnderlineNavItem-syRjR"><a href="#" aria-current="page" class="prc-components-UnderlineItem-7fP-n"><span data-component="text" data-content="README">README</span></a></li><li class="prc-UnderlineNav-UnderlineNavItem-syRjR"><a href="#" class="prc-components-UnderlineItem-7fP-n"><span data-component="text" data-content="Code of conduct">Code of conduct</span></a></li><li class="prc-UnderlineNav-UnderlineNavItem-syRjR"><a href="#" class="prc-components-UnderlineItem-7fP-n"><span data-component="text" data-content="Contributing">Contributing</span></a></li><li style="display: flex; align-items: center; height: 45px;"><div style="display: inline-block; border-left-width: 1px; border-left-style: solid; border-left-color: var(--borderColor-muted); width: 1px; margin-right: var(--base-size-4); height: 24px;"></div><button type="button" aria-controls="_R_b9ab_" aria-expanded="false" class="prc-Button-ButtonBase-9n-Xk prc-UnderlineNav-MoreButton-Y8soj" data-loading="false" data-size="medium" data-variant="default"><span data-component="buttonContent" data-align="center" class="prc-Button-ButtonContent-Iohp5"><span data-component="text" class="prc-Button-Label-FWkx3"><span>More<span class="prc-src-InternalVisuallyHidden-2YaI6">&nbsp;Repository files items</span></span></span></span><span data-component="trailingAction" class="prc-Button-Visual-YNt2F prc-Button-VisualWrap-E4cnq"><svg aria-hidden="true" focusable="false" class="octicon octicon-triangle-down" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="m4.427 7.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 7H4.604a.25.25 0 0 0-.177.427Z"></path></svg></span></button><ul class="prc-ActionList-ActionList-rPFF2" data-dividers="false" data-variant="inset" id="_R_b9ab_" style="position: absolute; z-index: 1; top: 90%; box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px; border-radius: 12px; background: var(--overlay-bgColor); list-style: none; min-width: 192px; max-width: 640px; right: 0px; display: none;"><li data-has-description="false" class="prc-ActionList-ActionListItem-So4vC"><a class="prc-ActionList-ActionListContent-KBb8- prc-Link-Link-9ZwDx" tabindex="0" aria-labelledby="_r_b_--label " id="_r_b_" data-size="medium" icon="[object Object]" style="text-decoration: none;"><span class="prc-ActionList-Spacer-4tR2m"></span><span class="prc-ActionList-LeadingAction-hbWbh prc-ActionList-VisualWrap-bdCsS" data-component="ActionList.Selection"><svg aria-hidden="true" focusable="false" class="octicon octicon-check prc-ActionList-SingleSelectCheckmark-zMd8d" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z"></path></svg></span><span class="prc-ActionList-ActionListSubContent-gKsFp" data-component="ActionList.Item--DividerContainer"><span id="_r_b_--label" class="prc-ActionList-ItemLabel-81ohH"><span class="prc-UnderlineNav-MenuItemContent-3J7gB">MIT license</span></span></span></a></li><li data-has-description="false" class="prc-ActionList-ActionListItem-So4vC"><a class="prc-ActionList-ActionListContent-KBb8- prc-Link-Link-9ZwDx" tabindex="0" aria-labelledby="_r_c_--label " id="_r_c_" data-size="medium" icon="[object Object]" style="text-decoration: none;"><span class="prc-ActionList-Spacer-4tR2m"></span><span class="prc-ActionList-LeadingAction-hbWbh prc-ActionList-VisualWrap-bdCsS" data-component="ActionList.Selection"><svg aria-hidden="true" focusable="false" class="octicon octicon-check prc-ActionList-SingleSelectCheckmark-zMd8d" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align: text-bottom;"><path d="M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z"></path></svg></span><span class="prc-ActionList-ActionListSubContent-gKsFp" data-component="ActionList.Item--DividerContainer"><span id="_r_c_--label" class="prc-ActionList-ItemLabel-81ohH"><span class="prc-UnderlineNav-MenuItemContent-3J7gB">Security</span></span></span></a></li></ul></li></ul></nav><button data-component="IconButton" type="button" class="prc-Button-ButtonBase-9n-Xk IconButton__StyledIconButton-sc-i53dt6-0 jCdPVA prc-Button-IconButton-fyge7" data-loading="false" data-no-visuals="true" data-size="small" data-variant="invisible" aria-labelledby="_R_j9ab_" data-hotkey="e,Shift+E"><svg aria-hidden="true" focusable="false" class="octicon octicon-pencil" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M11.013 1.427a1.75 1.75 0 0 1 2.474 0l1.086 1.086a1.75 1.75 0 0 1 0 2.474l-8.61 8.61c-.21.21-.47.364-.756.445l-3.251.93a.75.75 0 0 1-.927-.928l.929-3.25c.081-.286.235-.547.445-.758l8.61-8.61Zm.176 4.823L9.75 4.81l-6.286 6.287a.253.253 0 0 0-.064.108l-.558 1.953 1.953-.558a.253.253 0 0 0 .108-.064Zm1.238-3.763a.25.25 0 0 0-.354 0L10.811 3.75l1.439 1.44 1.263-1.263a.25.25 0 0 0 0-.354Z"></path></svg></button><span class="prc-TooltipV2-Tooltip-tLeuB" data-direction="s" aria-hidden="true" id="_R_j9ab_" popover="auto">Edit file</span><button type="button" aria-label="Outline" aria-haspopup="true" aria-expanded="false" tabindex="0" class="prc-Button-ButtonBase-9n-Xk OverviewRepoFiles-module__ActionMenu_Button--BfRMS" data-loading="false" data-size="medium" data-variant="invisible" id="_R_r9ab_"><svg aria-hidden="true" focusable="false" class="octicon octicon-list-unordered" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom"><path d="M5.75 2.5h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5Zm0 5h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5Zm0 5h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5ZM2 14a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm1-6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM2 4a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"></path></svg></button></div><div class="Box-sc-62in7e-0 js-snippet-clipboard-copy-unpositioned DirectoryRichtextContent-module__SharedMarkdownContent--BTKsc" data-hpc="true"><article class="markdown-body entry-content container-lg" itemprop="text"><div class="markdown-heading" dir="auto"><h1 tabindex="-1" class="heading-element" dir="auto">Visual Studio Code - Open Source ("Code - OSS")</h1><a id="user-content-visual-studio-code---open-source-code---oss" class="anchor" aria-label="Permalink: Visual Studio Code - Open Source (&quot;Code - OSS&quot;)" href="#visual-studio-code---open-source-code---oss"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z"></path></svg></a></div>
2265
- <p dir="auto"><a href="https://github.com/microsoft/vscode/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request+sort%3Areactions-%2B1-desc"><img src="https://camo.githubusercontent.com/4c8b8bc6eb4db5068056f781db2a63254ebd4fc7cc648287e0ff599434dea499/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f6d6963726f736f66742f7673636f64652f666561747572652d726571756573742e737667" alt="Feature Requests" data-canonical-src="https://img.shields.io/github/issues/microsoft/vscode/feature-request.svg" style="max-width: 100%;"></a>
2266
- <a href="https://github.com/microsoft/vscode/issues?utf8=%E2%9C%93&amp;q=is%3Aissue+is%3Aopen+label%3Abug"><img src="https://camo.githubusercontent.com/e4c8c6f566765bd98f4bbbc880cfbb353cbabe574ada3ec23db83c307dad1529/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f6d6963726f736f66742f7673636f64652f6275672e737667" alt="Bugs" data-canonical-src="https://img.shields.io/github/issues/microsoft/vscode/bug.svg" style="max-width: 100%;"></a>
2267
- <a href="https://gitter.im/Microsoft/vscode" rel="nofollow"><img src="https://camo.githubusercontent.com/e058a490c16d8ad79a43645498dd9e928fe1c19e86ffcbf962428049436ba979/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636861742d6f6e2532306769747465722d79656c6c6f772e737667" alt="Gitter" data-canonical-src="https://img.shields.io/badge/chat-on%20gitter-yellow.svg" style="max-width: 100%;"></a></p>
2268
- <div class="markdown-heading" dir="auto"><h2 tabindex="-1" class="heading-element" dir="auto">The Repository</h2><a id="user-content-the-repository" class="anchor" aria-label="Permalink: The Repository" href="#the-repository"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z"></path></svg></a></div>
2269
- <p dir="auto">This repository ("<code>Code - OSS</code>") is where we (Microsoft) develop the <a href="https://code.visualstudio.com" rel="nofollow">Visual Studio Code</a> product together with the community. Not only do we work on code and issues here, we also publish our <a href="https://github.com/microsoft/vscode/wiki/Roadmap">roadmap</a>, <a href="https://github.com/microsoft/vscode/wiki/Iteration-Plans">monthly iteration plans</a>, and our <a href="https://github.com/microsoft/vscode/wiki/Running-the-Endgame">endgame plans</a>. This source code is available to everyone under the standard <a href="https://github.com/microsoft/vscode/blob/main/LICENSE.txt">MIT license</a>.</p>
2270
- <div class="markdown-heading" dir="auto"><h2 tabindex="-1" class="heading-element" dir="auto">Visual Studio Code</h2><a id="user-content-visual-studio-code" class="anchor" aria-label="Permalink: Visual Studio Code" href="#visual-studio-code"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z"></path></svg></a></div>
2271
- <p align="center" dir="auto">
2272
- <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/35271042/118224532-3842c400-b438-11eb-923d-a5f66fa6785a.png"><img alt="VS Code in action" src="https://user-images.githubusercontent.com/35271042/118224532-3842c400-b438-11eb-923d-a5f66fa6785a.png" style="max-width: 100%;"></a>
2273
- </p>
2274
- <p dir="auto"><a href="https://code.visualstudio.com" rel="nofollow">Visual Studio Code</a> is a distribution of the <code>Code - OSS</code> repository with Microsoft-specific customizations released under a traditional <a href="https://code.visualstudio.com/License/" rel="nofollow">Microsoft product license</a>.</p>
2275
- <p dir="auto"><a href="https://code.visualstudio.com" rel="nofollow">Visual Studio Code</a> combines the simplicity of a code editor with what developers need for their core edit-build-debug cycle. It provides comprehensive code editing, navigation, and understanding support along with lightweight debugging, a rich extensibility model, and lightweight integration with existing tools.</p>
2276
- <p dir="auto">Visual Studio Code is updated monthly with new features and bug fixes. You can download it for Windows, macOS, and Linux on <a href="https://code.visualstudio.com/Download" rel="nofollow">Visual Studio Code's website</a>. To get the latest releases every day, install the <a href="https://code.visualstudio.com/insiders" rel="nofollow">Insiders build</a>.</p>
2277
- <div class="markdown-heading" dir="auto"><h2 tabindex="-1" class="heading-element" dir="auto">Contributing</h2><a id="user-content-contributing" class="anchor" aria-label="Permalink: Contributing" href="#contributing"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z"></path></svg></a></div>
2278
- <p dir="auto">There are many ways in which you can participate in this project, for example:</p>
2279
- <ul dir="auto">
2280
- <li><a href="https://github.com/microsoft/vscode/issues">Submit bugs and feature requests</a>, and help us verify as they are checked in</li>
2281
- <li>Review <a href="https://github.com/microsoft/vscode/pulls">source code changes</a></li>
2282
- <li>Review the <a href="https://github.com/microsoft/vscode-docs">documentation</a> and make pull requests for anything from typos to additional and new content</li>
2283
- </ul>
2284
- <p dir="auto">If you are interested in fixing issues and contributing directly to the code base,
2285
- please see the document <a href="https://github.com/microsoft/vscode/wiki/How-to-Contribute">How to Contribute</a>, which covers the following:</p>
2286
- <ul dir="auto">
2287
- <li><a href="https://github.com/microsoft/vscode/wiki/How-to-Contribute">How to build and run from source</a></li>
2288
- <li><a href="https://github.com/microsoft/vscode/wiki/How-to-Contribute#debugging">The development workflow, including debugging and running tests</a></li>
2289
- <li><a href="https://github.com/microsoft/vscode/wiki/Coding-Guidelines">Coding guidelines</a></li>
2290
- <li><a href="https://github.com/microsoft/vscode/wiki/How-to-Contribute#pull-requests">Submitting pull requests</a></li>
2291
- <li><a href="https://github.com/microsoft/vscode/wiki/How-to-Contribute#where-to-contribute">Finding an issue to work on</a></li>
2292
- <li><a href="https://aka.ms/vscodeloc" rel="nofollow">Contributing to translations</a></li>
2293
- </ul>
2294
- <div class="markdown-heading" dir="auto"><h2 tabindex="-1" class="heading-element" dir="auto">Feedback</h2><a id="user-content-feedback" class="anchor" aria-label="Permalink: Feedback" href="#feedback"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z"></path></svg></a></div>
2295
- <ul dir="auto">
2296
- <li>Ask a question on <a href="https://stackoverflow.com/questions/tagged/vscode" rel="nofollow">Stack Overflow</a></li>
2297
- <li><a href="/microsoft/vscode/blob/main/CONTRIBUTING.md">Request a new feature</a></li>
2298
- <li>Upvote <a href="https://github.com/microsoft/vscode/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request+sort%3Areactions-%2B1-desc">popular feature requests</a></li>
2299
- <li><a href="https://github.com/microsoft/vscode/issues">File an issue</a></li>
2300
- <li>Connect with the extension author community on <a href="https://github.com/microsoft/vscode-discussions/discussions">GitHub Discussions</a> or <a href="https://aka.ms/vscode-dev-community" rel="nofollow">Slack</a></li>
2301
- <li>Follow <a href="https://x.com/code" rel="nofollow">@code</a> and let us know what you think!</li>
2302
- </ul>
2303
- <p dir="auto">See our <a href="https://github.com/microsoft/vscode/wiki/Feedback-Channels">wiki</a> for a description of each of these channels and information on some other available community-driven channels.</p>
2304
- <div class="markdown-heading" dir="auto"><h2 tabindex="-1" class="heading-element" dir="auto">Related Projects</h2><a id="user-content-related-projects" class="anchor" aria-label="Permalink: Related Projects" href="#related-projects"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z"></path></svg></a></div>
2305
- <p dir="auto">Many of the core components and extensions to VS Code live in their own repositories on GitHub. For example, the <a href="https://github.com/microsoft/vscode-node-debug">node debug adapter</a> and the <a href="https://github.com/microsoft/vscode-mono-debug">mono debug adapter</a> repositories are separate from each other. For a complete list, please visit the <a href="https://github.com/microsoft/vscode/wiki/Related-Projects">Related Projects</a> page on our <a href="https://github.com/microsoft/vscode/wiki">wiki</a>.</p>
2306
- <div class="markdown-heading" dir="auto"><h2 tabindex="-1" class="heading-element" dir="auto">Bundled Extensions</h2><a id="user-content-bundled-extensions" class="anchor" aria-label="Permalink: Bundled Extensions" href="#bundled-extensions"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z"></path></svg></a></div>
2307
- <p dir="auto">VS Code includes a set of built-in extensions located in the <a href="/microsoft/vscode/blob/main/extensions">extensions</a> folder, including grammars and snippets for many languages. Extensions that provide rich language support (inline suggestions, Go to Definition) for a language have the suffix <code>language-features</code>. For example, the <code>json</code> extension provides coloring for <code>JSON</code> and the <code>json-language-features</code> extension provides rich language support for <code>JSON</code>.</p>
2308
- <div class="markdown-heading" dir="auto"><h2 tabindex="-1" class="heading-element" dir="auto">Development Container</h2><a id="user-content-development-container" class="anchor" aria-label="Permalink: Development Container" href="#development-container"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z"></path></svg></a></div>
2309
- <p dir="auto">This repository includes a Visual Studio Code Dev Containers / GitHub Codespaces development container.</p>
2310
- <ul dir="auto">
2311
- <li>
2312
- <p dir="auto">For <a href="https://aka.ms/vscode-remote/download/containers" rel="nofollow">Dev Containers</a>, use the <strong>Dev Containers: Clone Repository in Container Volume...</strong> command which creates a Docker volume for better disk I/O on macOS and Windows.</p>
2313
- <ul dir="auto">
2314
- <li>If you already have VS Code and Docker installed, you can also click <a href="https://vscode.dev/redirect?url=vscode://ms-vscode-remote.remote-containers/cloneInVolume?url=https://github.com/microsoft/vscode" rel="nofollow">here</a> to get started. This will cause VS Code to automatically install the Dev Containers extension if needed, clone the source code into a container volume, and spin up a dev container for use.</li>
2315
- </ul>
2316
- </li>
2317
- <li>
2318
- <p dir="auto">For Codespaces, install the <a href="https://marketplace.visualstudio.com/items?itemName=GitHub.codespaces" rel="nofollow">GitHub Codespaces</a> extension in VS Code, and use the <strong>Codespaces: Create New Codespace</strong> command.</p>
2319
- </li>
2320
- </ul>
2321
- <p dir="auto">Docker / the Codespace should have at least <strong>4 Cores and 6 GB of RAM (8 GB recommended)</strong> to run a full build. See the <a href="/microsoft/vscode/blob/main/.devcontainer/README.md">development container README</a> for more information.</p>
2322
- <div class="markdown-heading" dir="auto"><h2 tabindex="-1" class="heading-element" dir="auto">Code of Conduct</h2><a id="user-content-code-of-conduct" class="anchor" aria-label="Permalink: Code of Conduct" href="#code-of-conduct"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z"></path></svg></a></div>
2323
- <p dir="auto">This project has adopted the <a href="https://opensource.microsoft.com/codeofconduct/" rel="nofollow">Microsoft Open Source Code of Conduct</a>. For more information see the <a href="https://opensource.microsoft.com/codeofconduct/faq/" rel="nofollow">Code of Conduct FAQ</a> or contact <a href="mailto:opencode@microsoft.com">opencode@microsoft.com</a> with any additional questions or comments.</p>
2324
- <div class="markdown-heading" dir="auto"><h2 tabindex="-1" class="heading-element" dir="auto">License</h2><a id="user-content-license" class="anchor" aria-label="Permalink: License" href="#license"><svg class="octicon octicon-link" viewBox="0 0 16 16" version="1.1" width="16" height="16" aria-hidden="true"><path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z"></path></svg></a></div>
2325
- <p dir="auto">Copyright (c) Microsoft Corporation. All rights reserved.</p>
2326
- <p dir="auto">Licensed under the <a href="/microsoft/vscode/blob/main/LICENSE.txt">MIT</a> license.</p>
2327
- </article></div></div></div></div></div> <!-- --> <!-- --> <script type="application/json" id="__PRIMER_DATA__R_0___">{"resolvedServerColorMode":"night"}</script></div>
2328
- </react-partial>
2329
-
2330
-
2331
- <input type="hidden" value="qJ6fRJIF_7R6Kbr99ouQ4q40mJ-Z9U8UKUcfkrPfUOiKoJdgW_nlcqddvWyM_oalyjq-nP55L_VRBVzs3tPqYg" data-csrf="true" id="react-codespace-csrf">
2332
- </div>
2333
- <div data-view-component="true" class="Layout-sidebar">
2334
-
2335
- <div class="BorderGrid about-margin">
2336
- <div class="BorderGrid-row">
2337
- <div class="BorderGrid-cell">
2338
- <div class="hide-sm hide-md">
2339
- <h2 class="mb-3 h4">About</h2>
2340
-
2341
- <p class="f4 my-3">
2342
- Visual Studio Code
2343
- </p>
2344
- <div class="my-3 d-flex flex-items-center">
2345
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-link flex-shrink-0 mr-2">
2346
- <path d="m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z"></path>
2347
- </svg>
2348
- <span class="flex-auto min-width-0 css-truncate css-truncate-target width-fit">
2349
- <a title="https://code.visualstudio.com" role="link" target="_blank" rel="noopener noreferrer nofollow" class="text-bold" href="https://code.visualstudio.com">code.visualstudio.com</a>
2350
- </span>
2351
- </div>
2352
-
2353
- <h3 class="sr-only">Topics</h3>
2354
- <div class="my-3">
2355
- <div class="f6">
2356
- <a href="/topics/electron" title="Topic: electron" data-view-component="true" class="topic-tag topic-tag-link">
2357
- electron
2358
- </a>
2359
- <a href="/topics/microsoft" title="Topic: microsoft" data-view-component="true" class="topic-tag topic-tag-link">
2360
- microsoft
2361
- </a>
2362
- <a href="/topics/editor" title="Topic: editor" data-view-component="true" class="topic-tag topic-tag-link">
2363
- editor
2364
- </a>
2365
- <a href="/topics/typescript" title="Topic: typescript" data-view-component="true" class="topic-tag topic-tag-link">
2366
- typescript
2367
- </a>
2368
- <a href="/topics/visual-studio-code" title="Topic: visual-studio-code" data-view-component="true" class="topic-tag topic-tag-link">
2369
- visual-studio-code
2370
- </a>
2371
- </div>
2372
-
2373
- </div>
2374
-
2375
- <h3 class="sr-only">Resources</h3>
2376
- <div class="mt-2">
2377
- <a class="Link--muted" data-analytics-event="{&quot;category&quot;:&quot;Repository Overview&quot;,&quot;action&quot;:&quot;click&quot;,&quot;label&quot;:&quot;location:sidebar;file:readme&quot;}" href="#readme-ov-file">
2378
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-book mr-2">
2379
- <path d="M0 1.75A.75.75 0 0 1 .75 1h4.253c1.227 0 2.317.59 3 1.501A3.743 3.743 0 0 1 11.006 1h4.245a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-.75.75h-4.507a2.25 2.25 0 0 0-1.591.659l-.622.621a.75.75 0 0 1-1.06 0l-.622-.621A2.25 2.25 0 0 0 5.258 13H.75a.75.75 0 0 1-.75-.75Zm7.251 10.324.004-5.073-.002-2.253A2.25 2.25 0 0 0 5.003 2.5H1.5v9h3.757a3.75 3.75 0 0 1 1.994.574ZM8.755 4.75l-.004 7.322a3.752 3.752 0 0 1 1.992-.572H14.5v-9h-3.495a2.25 2.25 0 0 0-2.25 2.25Z"></path>
2380
- </svg>
2381
- Readme
2382
- </a> </div>
2383
-
2384
-
2385
- <h3 class="sr-only">License</h3>
2386
- <div class="mt-2">
2387
- <a href="#MIT-1-ov-file" class="Link--muted" data-analytics-event="{&quot;category&quot;:&quot;Repository Overview&quot;,&quot;action&quot;:&quot;click&quot;,&quot;label&quot;:&quot;location:sidebar;file:license&quot;}">
2388
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-law mr-1 mr-sm-1 mr-md-2 mr-lg-2">
2389
- <path d="M8.75.75V2h.985c.304 0 .603.08.867.231l1.29.736c.038.022.08.033.124.033h2.234a.75.75 0 0 1 0 1.5h-.427l2.111 4.692a.75.75 0 0 1-.154.838l-.53-.53.529.531-.001.002-.002.002-.006.006-.006.005-.01.01-.045.04c-.21.176-.441.327-.686.45C14.556 10.78 13.88 11 13 11a4.498 4.498 0 0 1-2.023-.454 3.544 3.544 0 0 1-.686-.45l-.045-.04-.016-.015-.006-.006-.004-.004v-.001a.75.75 0 0 1-.154-.838L12.178 4.5h-.162c-.305 0-.604-.079-.868-.231l-1.29-.736a.245.245 0 0 0-.124-.033H8.75V13h2.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5h2.5V3.5h-.984a.245.245 0 0 0-.124.033l-1.289.737c-.265.15-.564.23-.869.23h-.162l2.112 4.692a.75.75 0 0 1-.154.838l-.53-.53.529.531-.001.002-.002.002-.006.006-.016.015-.045.04c-.21.176-.441.327-.686.45C4.556 10.78 3.88 11 3 11a4.498 4.498 0 0 1-2.023-.454 3.544 3.544 0 0 1-.686-.45l-.045-.04-.016-.015-.006-.006-.004-.004v-.001a.75.75 0 0 1-.154-.838L2.178 4.5H1.75a.75.75 0 0 1 0-1.5h2.234a.249.249 0 0 0 .125-.033l1.288-.737c.265-.15.564-.23.869-.23h.984V.75a.75.75 0 0 1 1.5 0Zm2.945 8.477c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L13 6.327Zm-10 0c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L3 6.327Z"></path>
2390
- </svg>
2391
- MIT license
2392
- </a>
2393
- </div>
2394
-
2395
-
2396
- <h3 class="sr-only">Code of conduct</h3>
2397
- <div class="mt-2">
2398
- <a href="#coc-ov-file" class="Link--muted" data-analytics-event="{&quot;category&quot;:&quot;Repository Overview&quot;,&quot;action&quot;:&quot;click&quot;,&quot;label&quot;:&quot;location:sidebar;file:code of conduct&quot;}">
2399
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-code-of-conduct mr-2">
2400
- <path d="M8.048 2.241c.964-.709 2.079-1.238 3.325-1.241a4.616 4.616 0 0 1 3.282 1.355c.41.408.757.86.996 1.428.238.568.348 1.206.347 1.968 0 2.193-1.505 4.254-3.081 5.862-1.496 1.526-3.213 2.796-4.249 3.563l-.22.163a.749.749 0 0 1-.895 0l-.221-.163c-1.036-.767-2.753-2.037-4.249-3.563C1.51 10.008.007 7.952.002 5.762a4.614 4.614 0 0 1 1.353-3.407C3.123.585 6.223.537 8.048 2.24Zm-1.153.983c-1.25-1.033-3.321-.967-4.48.191a3.115 3.115 0 0 0-.913 2.335c0 1.556 1.109 3.24 2.652 4.813C5.463 11.898 6.96 13.032 8 13.805c.353-.262.758-.565 1.191-.905l-1.326-1.223a.75.75 0 0 1 1.018-1.102l1.48 1.366c.328-.281.659-.577.984-.887L9.99 9.802a.75.75 0 1 1 1.019-1.103l1.384 1.28c.295-.329.566-.661.81-.995L12.92 8.7l-1.167-1.168c-.674-.671-1.78-.664-2.474.03-.268.269-.538.537-.802.797-.893.882-2.319.843-3.185-.032-.346-.35-.693-.697-1.043-1.047a.75.75 0 0 1-.04-1.016c.162-.191.336-.401.52-.623.62-.748 1.356-1.637 2.166-2.417Zm7.112 4.442c.313-.65.491-1.293.491-1.916v-.001c0-.614-.088-1.045-.23-1.385-.143-.339-.357-.633-.673-.949a3.111 3.111 0 0 0-2.218-.915c-1.092.003-2.165.627-3.226 1.602-.823.755-1.554 1.637-2.228 2.45l-.127.154.562.566a.755.755 0 0 0 1.066.02l.794-.79c1.258-1.258 3.312-1.31 4.594-.032.396.394.792.791 1.173 1.173Z"></path>
2401
- </svg>
2402
- Code of conduct
2403
- </a>
2404
- </div>
2405
-
2406
-
2407
- <h3 class="sr-only">Contributing</h3>
2408
- <div class="mt-2">
2409
- <a href="#contributing-ov-file" class="Link--muted" data-analytics-event="{&quot;category&quot;:&quot;Repository Overview&quot;,&quot;action&quot;:&quot;click&quot;,&quot;label&quot;:&quot;location:sidebar;file:contributing&quot;}">
2410
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-people mr-2">
2411
- <path d="M2 5.5a3.5 3.5 0 1 1 5.898 2.549 5.508 5.508 0 0 1 3.034 4.084.75.75 0 1 1-1.482.235 4 4 0 0 0-7.9 0 .75.75 0 0 1-1.482-.236A5.507 5.507 0 0 1 3.102 8.05 3.493 3.493 0 0 1 2 5.5ZM11 4a3.001 3.001 0 0 1 2.22 5.018 5.01 5.01 0 0 1 2.56 3.012.749.749 0 0 1-.885.954.752.752 0 0 1-.549-.514 3.507 3.507 0 0 0-2.522-2.372.75.75 0 0 1-.574-.73v-.352a.75.75 0 0 1 .416-.672A1.5 1.5 0 0 0 11 5.5.75.75 0 0 1 11 4Zm-5.5-.5a2 2 0 1 0-.001 3.999A2 2 0 0 0 5.5 3.5Z"></path>
2412
- </svg>
2413
- Contributing
2414
- </a>
2415
- </div>
2416
-
2417
- <h3 class="sr-only">Security policy</h3>
2418
- <div class="mt-2">
2419
- <a href="#security-ov-file" class="Link--muted" data-analytics-event="{&quot;category&quot;:&quot;Repository Overview&quot;,&quot;action&quot;:&quot;click&quot;,&quot;label&quot;:&quot;location:sidebar;file:security policy&quot;}">
2420
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-law mr-2">
2421
- <path d="M8.75.75V2h.985c.304 0 .603.08.867.231l1.29.736c.038.022.08.033.124.033h2.234a.75.75 0 0 1 0 1.5h-.427l2.111 4.692a.75.75 0 0 1-.154.838l-.53-.53.529.531-.001.002-.002.002-.006.006-.006.005-.01.01-.045.04c-.21.176-.441.327-.686.45C14.556 10.78 13.88 11 13 11a4.498 4.498 0 0 1-2.023-.454 3.544 3.544 0 0 1-.686-.45l-.045-.04-.016-.015-.006-.006-.004-.004v-.001a.75.75 0 0 1-.154-.838L12.178 4.5h-.162c-.305 0-.604-.079-.868-.231l-1.29-.736a.245.245 0 0 0-.124-.033H8.75V13h2.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5h2.5V3.5h-.984a.245.245 0 0 0-.124.033l-1.289.737c-.265.15-.564.23-.869.23h-.162l2.112 4.692a.75.75 0 0 1-.154.838l-.53-.53.529.531-.001.002-.002.002-.006.006-.016.015-.045.04c-.21.176-.441.327-.686.45C4.556 10.78 3.88 11 3 11a4.498 4.498 0 0 1-2.023-.454 3.544 3.544 0 0 1-.686-.45l-.045-.04-.016-.015-.006-.006-.004-.004v-.001a.75.75 0 0 1-.154-.838L2.178 4.5H1.75a.75.75 0 0 1 0-1.5h2.234a.249.249 0 0 0 .125-.033l1.288-.737c.265-.15.564-.23.869-.23h.984V.75a.75.75 0 0 1 1.5 0Zm2.945 8.477c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L13 6.327Zm-10 0c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L3 6.327Z"></path>
2422
- </svg>
2423
- Security policy
2424
- </a>
2425
- </div>
2426
-
2427
- <include-fragment src="/microsoft/vscode/hovercards/citation/sidebar_partial?tree_name=main" data-nonce="v2:03b0f735-7e9b-2994-f629-ec1f21c8f2bb" data-view-component="true" class="is-error">
2428
-
2429
-
2430
- <div data-show-on-forbidden-error="" hidden="">
2431
- <div class="Box">
2432
- <div class="blankslate-container">
2433
- <div data-view-component="true" class="blankslate blankslate-spacious color-bg-default rounded-2">
2434
-
2435
-
2436
- <h3 data-view-component="true" class="blankslate-heading"> Uh oh!
2437
- </h3>
2438
- <p data-view-component="true"> </p><p class="color-fg-muted my-2 mb-2 ws-normal">There was an error while loading. <a class="Link--inTextBlock" data-turbo="false" href="" aria-label="Please reload this page">Please reload this page</a>.</p>
2439
- <p></p>
2440
-
2441
- </div> </div>
2442
- </div> </div>
2443
- </include-fragment>
2444
- <div class="mt-2">
2445
- <a href="/microsoft/vscode/activity" data-view-component="true" class="Link Link--muted"><svg text="gray" aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-pulse mr-2">
2446
- <path d="M6 2c.306 0 .582.187.696.471L10 10.731l1.304-3.26A.751.751 0 0 1 12 7h3.25a.75.75 0 0 1 0 1.5h-2.742l-1.812 4.528a.751.751 0 0 1-1.392 0L6 4.77 4.696 8.03A.75.75 0 0 1 4 8.5H.75a.75.75 0 0 1 0-1.5h2.742l1.812-4.529A.751.751 0 0 1 6 2Z"></path>
2447
- </svg>
2448
- <span class="color-fg-muted">Activity</span></a> </div>
2449
-
2450
- <div class="mt-2">
2451
- <a href="/microsoft/vscode/custom-properties" data-view-component="true" class="Link Link--muted"><svg text="gray" aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-note mr-2">
2452
- <path d="M0 3.75C0 2.784.784 2 1.75 2h12.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25Zm1.75-.25a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25ZM3.5 6.25a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1-.75-.75Zm.75 2.25h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1 0-1.5Z"></path>
2453
- </svg>
2454
- <span class="color-fg-muted">Custom properties</span></a> </div>
2455
-
2456
- <h3 class="sr-only">Stars</h3>
2457
- <div class="mt-2">
2458
- <a href="/microsoft/vscode/stargazers" data-view-component="true" class="Link Link--muted"><svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-star mr-2">
2459
- <path d="M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25Zm0 2.445L6.615 5.5a.75.75 0 0 1-.564.41l-3.097.45 2.24 2.184a.75.75 0 0 1 .216.664l-.528 3.084 2.769-1.456a.75.75 0 0 1 .698 0l2.77 1.456-.53-3.084a.75.75 0 0 1 .216-.664l2.24-2.183-3.096-.45a.75.75 0 0 1-.564-.41L8 2.694Z"></path>
2460
- </svg>
2461
- <strong>181k</strong>
2462
- stars</a> </div>
2463
-
2464
- <h3 class="sr-only">Watchers</h3>
2465
- <div class="mt-2">
2466
- <a href="/microsoft/vscode/watchers" data-view-component="true" class="Link Link--muted"><svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-eye mr-2">
2467
- <path d="M8 2c1.981 0 3.671.992 4.933 2.078 1.27 1.091 2.187 2.345 2.637 3.023a1.62 1.62 0 0 1 0 1.798c-.45.678-1.367 1.932-2.637 3.023C11.67 13.008 9.981 14 8 14c-1.981 0-3.671-.992-4.933-2.078C1.797 10.83.88 9.576.43 8.898a1.62 1.62 0 0 1 0-1.798c.45-.677 1.367-1.931 2.637-3.022C4.33 2.992 6.019 2 8 2ZM1.679 7.932a.12.12 0 0 0 0 .136c.411.622 1.241 1.75 2.366 2.717C5.176 11.758 6.527 12.5 8 12.5c1.473 0 2.825-.742 3.955-1.715 1.124-.967 1.954-2.096 2.366-2.717a.12.12 0 0 0 0-.136c-.412-.621-1.242-1.75-2.366-2.717C10.824 4.242 9.473 3.5 8 3.5c-1.473 0-2.825.742-3.955 1.715-1.124.967-1.954 2.096-2.366 2.717ZM8 10a2 2 0 1 1-.001-3.999A2 2 0 0 1 8 10Z"></path>
2468
- </svg>
2469
- <strong>3.4k</strong>
2470
- watching</a> </div>
2471
-
2472
- <h3 class="sr-only">Forks</h3>
2473
- <div class="mt-2">
2474
- <a href="/microsoft/vscode/forks" data-view-component="true" class="Link Link--muted"><svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-repo-forked mr-2">
2475
- <path d="M5 5.372v.878c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75v-.878a2.25 2.25 0 1 1 1.5 0v.878a2.25 2.25 0 0 1-2.25 2.25h-1.5v2.128a2.251 2.251 0 1 1-1.5 0V8.5h-1.5A2.25 2.25 0 0 1 3.5 6.25v-.878a2.25 2.25 0 1 1 1.5 0ZM5 3.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm6.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-3 8.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z"></path>
2476
- </svg>
2477
- <strong>37.4k</strong>
2478
- forks</a> </div>
2479
-
2480
-
2481
- <div class="mt-2">
2482
- <a class="Link--muted" href="/contact/report-content?content_url=https%3A%2F%2Fgithub.com%2Fmicrosoft%2Fvscode&amp;report=microsoft+%28user%29">
2483
- Report repository
2484
- </a> </div>
2485
- </div>
2486
-
2487
- </div>
2488
- </div>
2489
-
2490
-
2491
- <div class="BorderGrid-row">
2492
- <div class="BorderGrid-cell">
2493
- <h2 class="h4 mb-3" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame">
2494
- <a href="/microsoft/vscode/releases" data-view-component="true" class="Link--primary no-underline Link" data-turbo-frame="repo-content-turbo-frame">Releases
2495
- <span title="191" data-view-component="true" class="Counter">191</span></a></h2>
2496
-
2497
- <a class="Link--primary d-flex no-underline" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" href="/microsoft/vscode/releases/tag/1.107.1">
2498
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-tag flex-shrink-0 mt-1 color-fg-success">
2499
- <path d="M1 7.775V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 0 1 0 2.474l-5.026 5.026a1.75 1.75 0 0 1-2.474 0l-6.25-6.25A1.752 1.752 0 0 1 1 7.775Zm1.5 0c0 .066.026.13.073.177l6.25 6.25a.25.25 0 0 0 .354 0l5.025-5.025a.25.25 0 0 0 0-.354l-6.25-6.25a.25.25 0 0 0-.177-.073H2.75a.25.25 0 0 0-.25.25ZM6 5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z"></path>
2500
- </svg>
2501
- <div class="ml-2 min-width-0">
2502
- <div class="d-flex">
2503
- <span class="css-truncate css-truncate-target text-bold mr-2" style="max-width: none;">November 2025 Recovery 1</span>
2504
- <span title="Label: Latest" data-view-component="true" class="Label Label--success flex-shrink-0">
2505
- Latest
2506
- </span> </div>
2507
- <div class="text-small color-fg-muted"><relative-time datetime="2025-12-17T22:27:10Z" class="no-wrap" title="Dec 18, 2025, 5:27 AM GMT+7">Dec 18, 2025</relative-time></div>
2508
- </div>
2509
- </a> <div data-view-component="true" class="mt-3">
2510
- <a text="small" data-pjax="#repo-content-pjax-container" data-turbo-frame="repo-content-turbo-frame" href="/microsoft/vscode/releases" data-view-component="true" class="Link">+ 190 releases</a></div>
2511
- </div>
2512
- </div>
2513
-
2514
-
2515
-
2516
-
2517
- <div class="BorderGrid-row" hidden="">
2518
- <div class="BorderGrid-cell">
2519
- <include-fragment src="/microsoft/vscode/used_by_list" accept="text/fragment+html" data-nonce="v2:03b0f735-7e9b-2994-f629-ec1f21c8f2bb" data-view-component="true" class="is-error">
2520
-
2521
-
2522
- <div data-show-on-forbidden-error="" hidden="">
2523
- <div class="Box">
2524
- <div class="blankslate-container">
2525
- <div data-view-component="true" class="blankslate blankslate-spacious color-bg-default rounded-2">
2526
-
2527
-
2528
- <h3 data-view-component="true" class="blankslate-heading"> Uh oh!
2529
- </h3>
2530
- <p data-view-component="true"> </p><p class="color-fg-muted my-2 mb-2 ws-normal">There was an error while loading. <a class="Link--inTextBlock" data-turbo="false" href="" aria-label="Please reload this page">Please reload this page</a>.</p>
2531
- <p></p>
2532
-
2533
- </div> </div>
2534
- </div> </div>
2535
- </include-fragment>
2536
- </div>
2537
- </div>
2538
-
2539
-
2540
- <div class="BorderGrid-row">
2541
- <div class="BorderGrid-cell">
2542
- <h2 class="h4 mb-3">
2543
- <a href="/microsoft/vscode/graphs/contributors" data-view-component="true" class="Link--primary no-underline Link d-flex flex-items-center">Contributors
2544
- <span title="2,337" data-view-component="true" class="Counter ml-1">2,337</span></a></h2>
2545
-
2546
-
2547
-
2548
- <ul class="list-style-none d-flex flex-wrap mb-n2">
2549
- <li class="mb-2 mr-2">
2550
- <a href="https://github.com/bpasero" class="" data-hovercard-type="user" data-hovercard-url="/users/bpasero/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" aria-keyshortcuts="Alt+ArrowUp">
2551
- <img src="https://avatars.githubusercontent.com/u/900690?s=64&amp;v=4" alt="@bpasero" size="32" height="32" width="32" data-view-component="true" class="avatar circle">
2552
- </a>
2553
- </li>
2554
- <li class="mb-2 mr-2">
2555
- <a href="https://github.com/Tyriar" class="" data-hovercard-type="user" data-hovercard-url="/users/Tyriar/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" aria-keyshortcuts="Alt+ArrowUp">
2556
- <img src="https://avatars.githubusercontent.com/u/2193314?s=64&amp;v=4" alt="@Tyriar" size="32" height="32" width="32" data-view-component="true" class="avatar circle">
2557
- </a>
2558
- </li>
2559
- <li class="mb-2 mr-2">
2560
- <a href="https://github.com/jrieken" class="" data-hovercard-type="user" data-hovercard-url="/users/jrieken/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" aria-keyshortcuts="Alt+ArrowUp">
2561
- <img src="https://avatars.githubusercontent.com/u/1794099?s=64&amp;v=4" alt="@jrieken" size="32" height="32" width="32" data-view-component="true" class="avatar circle">
2562
- </a>
2563
- </li>
2564
- <li class="mb-2 mr-2">
2565
- <a href="https://github.com/mjbvz" class="" data-hovercard-type="user" data-hovercard-url="/users/mjbvz/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" aria-keyshortcuts="Alt+ArrowUp">
2566
- <img src="https://avatars.githubusercontent.com/u/12821956?s=64&amp;v=4" alt="@mjbvz" size="32" height="32" width="32" data-view-component="true" class="avatar circle">
2567
- </a>
2568
- </li>
2569
- <li class="mb-2 mr-2">
2570
- <a href="https://github.com/joaomoreno" class="" data-hovercard-type="user" data-hovercard-url="/users/joaomoreno/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" aria-keyshortcuts="Alt+ArrowUp">
2571
- <img src="https://avatars.githubusercontent.com/u/22350?s=64&amp;v=4" alt="@joaomoreno" size="32" height="32" width="32" data-view-component="true" class="avatar circle">
2572
- </a>
2573
- </li>
2574
- <li class="mb-2 mr-2">
2575
- <a href="https://github.com/sandy081" class="" data-hovercard-type="user" data-hovercard-url="/users/sandy081/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" aria-keyshortcuts="Alt+ArrowUp">
2576
- <img src="https://avatars.githubusercontent.com/u/10746682?s=64&amp;v=4" alt="@sandy081" size="32" height="32" width="32" data-view-component="true" class="avatar circle">
2577
- </a>
2578
- </li>
2579
- <li class="mb-2 mr-2">
2580
- <a href="https://github.com/alexdima" class="" data-hovercard-type="user" data-hovercard-url="/users/alexdima/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" aria-keyshortcuts="Alt+ArrowUp">
2581
- <img src="https://avatars.githubusercontent.com/u/5047891?s=64&amp;v=4" alt="@alexdima" size="32" height="32" width="32" data-view-component="true" class="avatar circle">
2582
- </a>
2583
- </li>
2584
- <li class="mb-2 mr-2">
2585
- <a href="https://github.com/isidorn" class="" data-hovercard-type="user" data-hovercard-url="/users/isidorn/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" aria-keyshortcuts="Alt+ArrowUp">
2586
- <img src="https://avatars.githubusercontent.com/u/1926584?s=64&amp;v=4" alt="@isidorn" size="32" height="32" width="32" data-view-component="true" class="avatar circle">
2587
- </a>
2588
- </li>
2589
- <li class="mb-2 mr-2">
2590
- <a href="https://github.com/roblourens" class="" data-hovercard-type="user" data-hovercard-url="/users/roblourens/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" aria-keyshortcuts="Alt+ArrowUp">
2591
- <img src="https://avatars.githubusercontent.com/u/323878?s=64&amp;v=4" alt="@roblourens" size="32" height="32" width="32" data-view-component="true" class="avatar circle">
2592
- </a>
2593
- </li>
2594
- <li class="mb-2 mr-2">
2595
- <a href="https://github.com/aeschli" class="" data-hovercard-type="user" data-hovercard-url="/users/aeschli/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" aria-keyshortcuts="Alt+ArrowUp">
2596
- <img src="https://avatars.githubusercontent.com/u/6461412?s=64&amp;v=4" alt="@aeschli" size="32" height="32" width="32" data-view-component="true" class="avatar circle">
2597
- </a>
2598
- </li>
2599
- <li class="mb-2 mr-2">
2600
- <a href="https://github.com/rebornix" class="" data-hovercard-type="user" data-hovercard-url="/users/rebornix/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" aria-keyshortcuts="Alt+ArrowUp">
2601
- <img src="https://avatars.githubusercontent.com/u/876920?s=64&amp;v=4" alt="@rebornix" size="32" height="32" width="32" data-view-component="true" class="avatar circle">
2602
- </a>
2603
- </li>
2604
- <li class="mb-2 mr-2">
2605
- <a href="https://github.com/meganrogge" class="" data-hovercard-type="user" data-hovercard-url="/users/meganrogge/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" aria-keyshortcuts="Alt+ArrowUp">
2606
- <img src="https://avatars.githubusercontent.com/u/29464607?s=64&amp;v=4" alt="@meganrogge" size="32" height="32" width="32" data-view-component="true" class="avatar circle">
2607
- </a>
2608
- </li>
2609
- <li class="mb-2 mr-2">
2610
- <a href="https://github.com/alexr00" class="" data-hovercard-type="user" data-hovercard-url="/users/alexr00/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" aria-keyshortcuts="Alt+ArrowUp">
2611
- <img src="https://avatars.githubusercontent.com/u/38270282?s=64&amp;v=4" alt="@alexr00" size="32" height="32" width="32" data-view-component="true" class="avatar circle">
2612
- </a>
2613
- </li>
2614
- <li class="mb-2 mr-2">
2615
- <a href="https://github.com/connor4312" class="" data-hovercard-type="user" data-hovercard-url="/users/connor4312/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" aria-keyshortcuts="Alt+ArrowUp">
2616
- <img src="https://avatars.githubusercontent.com/u/2230985?s=64&amp;v=4" alt="@connor4312" size="32" height="32" width="32" data-view-component="true" class="avatar circle">
2617
- </a>
2618
- </li>
2619
- </ul>
2620
-
2621
-
2622
-
2623
-
2624
- <div data-view-component="true" class="mt-3">
2625
- <a text="small" href="/microsoft/vscode/graphs/contributors" data-view-component="true" class="Link--inTextBlock Link">+ 2,323 contributors</a></div>
2626
- </div>
2627
- </div>
2628
-
2629
-
2630
- <div class="BorderGrid-row">
2631
- <div class="BorderGrid-cell">
2632
- <h2 class="h4 mb-3">
2633
- <a href="/microsoft/vscode/deployments" data-view-component="true" class="Link--primary no-underline Link d-flex flex-items-center">Deployments
2634
- <span title="500+" data-view-component="true" class="Counter ml-1">500+</span></a></h2>
2635
-
2636
-
2637
- <ul class="list-style-none">
2638
- <li class="mt-2">
2639
- <svg id="main-successful" aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-check-circle-fill color-fg-success" aria-describedby="tooltip-646a87d8-a338-4e29-ba7d-7797f5bee337">
2640
- <path d="M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16Zm3.78-9.72a.751.751 0 0 0-.018-1.042.751.751 0 0 0-1.042-.018L6.75 9.19 5.28 7.72a.751.751 0 0 0-1.042.018.751.751 0 0 0-.018 1.042l2 2a.75.75 0 0 0 1.06 0Z"></path>
2641
- </svg>
2642
- <tool-tip id="tooltip-646a87d8-a338-4e29-ba7d-7797f5bee337" for="main-successful" popover="manual" data-direction="n" data-type="description" data-view-component="true" class="sr-only position-absolute" role="tooltip">Deployment successful</tool-tip>
2643
-
2644
-
2645
-
2646
- <a target="_blank" href="/microsoft/vscode/deployments/main" data-view-component="true" class="Link--primary Link text-bold mx-2">main
2647
- <relative-time tense="past" datetime="2024-07-25T05:55:00+07:00" data-view-component="true" class="color-fg-subtle text-light" title="Jul 25, 2024, 5:55 AM GMT+7">July 25, 2024 05:55</relative-time></a> </li>
2648
- </ul>
2649
-
2650
-
2651
- <div data-view-component="true" class="mt-3">
2652
- <a text="small" href="/microsoft/vscode/deployments" data-view-component="true" class="Link--inTextBlock Link">+ more deployments</a></div>
2653
- </div>
2654
- </div>
2655
-
2656
-
2657
- <div class="BorderGrid-row">
2658
- <div class="BorderGrid-cell">
2659
- <h2 class="h4 mb-3">Languages</h2>
2660
- <div class="mb-2">
2661
- <span data-view-component="true" class="Progress">
2662
- <span style="background-color:#3178c6 !important;;width: 95.4%;" itemprop="keywords" data-view-component="true" class="Progress-item color-bg-success-emphasis"></span>
2663
- <span style="background-color:#663399 !important;;width: 1.5%;" itemprop="keywords" data-view-component="true" class="Progress-item color-bg-success-emphasis"></span>
2664
- <span style="background-color:#f1e05a !important;;width: 1.0%;" itemprop="keywords" data-view-component="true" class="Progress-item color-bg-success-emphasis"></span>
2665
- <span style="background-color:#264b99 !important;;width: 0.7%;" itemprop="keywords" data-view-component="true" class="Progress-item color-bg-success-emphasis"></span>
2666
- <span style="background-color:#dea584 !important;;width: 0.6%;" itemprop="keywords" data-view-component="true" class="Progress-item color-bg-success-emphasis"></span>
2667
- <span style="background-color:#e34c26 !important;;width: 0.5%;" itemprop="keywords" data-view-component="true" class="Progress-item color-bg-success-emphasis"></span>
2668
- <span style="background-color:#ededed !important;;width: 0.3%;" itemprop="keywords" data-view-component="true" class="Progress-item color-bg-success-emphasis"></span>
2669
- </span></div>
2670
- <ul class="list-style-none">
2671
- <li class="d-inline">
2672
- <a class="d-inline-flex flex-items-center flex-nowrap Link--secondary no-underline text-small mr-3" href="/microsoft/vscode/search?l=typescript" data-ga-click="Repository, language stats search click, location:repo overview">
2673
- <svg style="color:#3178c6;" aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-dot-fill mr-2">
2674
- <path d="M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z"></path>
2675
- </svg>
2676
- <span class="color-fg-default text-bold mr-1">TypeScript</span>
2677
- <span>95.4%</span>
2678
- </a>
2679
- </li>
2680
- <li class="d-inline">
2681
- <a class="d-inline-flex flex-items-center flex-nowrap Link--secondary no-underline text-small mr-3" href="/microsoft/vscode/search?l=css" data-ga-click="Repository, language stats search click, location:repo overview">
2682
- <svg style="color:#663399;" aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-dot-fill mr-2">
2683
- <path d="M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z"></path>
2684
- </svg>
2685
- <span class="color-fg-default text-bold mr-1">CSS</span>
2686
- <span>1.5%</span>
2687
- </a>
2688
- </li>
2689
- <li class="d-inline">
2690
- <a class="d-inline-flex flex-items-center flex-nowrap Link--secondary no-underline text-small mr-3" href="/microsoft/vscode/search?l=javascript" data-ga-click="Repository, language stats search click, location:repo overview">
2691
- <svg style="color:#f1e05a;" aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-dot-fill mr-2">
2692
- <path d="M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z"></path>
2693
- </svg>
2694
- <span class="color-fg-default text-bold mr-1">JavaScript</span>
2695
- <span>1.0%</span>
2696
- </a>
2697
- </li>
2698
- <li class="d-inline">
2699
- <a class="d-inline-flex flex-items-center flex-nowrap Link--secondary no-underline text-small mr-3" href="/microsoft/vscode/search?l=inno-setup" data-ga-click="Repository, language stats search click, location:repo overview">
2700
- <svg style="color:#264b99;" aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-dot-fill mr-2">
2701
- <path d="M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z"></path>
2702
- </svg>
2703
- <span class="color-fg-default text-bold mr-1">Inno Setup</span>
2704
- <span>0.7%</span>
2705
- </a>
2706
- </li>
2707
- <li class="d-inline">
2708
- <a class="d-inline-flex flex-items-center flex-nowrap Link--secondary no-underline text-small mr-3" href="/microsoft/vscode/search?l=rust" data-ga-click="Repository, language stats search click, location:repo overview">
2709
- <svg style="color:#dea584;" aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-dot-fill mr-2">
2710
- <path d="M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z"></path>
2711
- </svg>
2712
- <span class="color-fg-default text-bold mr-1">Rust</span>
2713
- <span>0.6%</span>
2714
- </a>
2715
- </li>
2716
- <li class="d-inline">
2717
- <a class="d-inline-flex flex-items-center flex-nowrap Link--secondary no-underline text-small mr-3" href="/microsoft/vscode/search?l=html" data-ga-click="Repository, language stats search click, location:repo overview">
2718
- <svg style="color:#e34c26;" aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-dot-fill mr-2">
2719
- <path d="M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z"></path>
2720
- </svg>
2721
- <span class="color-fg-default text-bold mr-1">HTML</span>
2722
- <span>0.5%</span>
2723
- </a>
2724
- </li>
2725
- <li class="d-inline">
2726
- <span class="d-inline-flex flex-items-center flex-nowrap text-small mr-3">
2727
- <svg style="color:#ededed;" aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-dot-fill mr-2">
2728
- <path d="M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z"></path>
2729
- </svg>
2730
- <span class="color-fg-default text-bold mr-1">Other</span>
2731
- <span>0.3%</span>
2732
- </span>
2733
- </li>
2734
- </ul>
2735
-
2736
- </div>
2737
- </div>
2738
-
2739
- </div>
2740
-
2741
- </div>
2742
-
2743
- </div></div>
2744
-
2745
- </div>
2746
-
2747
-
2748
- </div>
2749
-
2750
- </turbo-frame>
2751
-
2752
-
2753
- </main>
2754
- </div>
2755
-
2756
- </div>
2757
-
2758
- <footer class="footer pt-7 pb-6 f6 color-fg-muted color-border-subtle p-responsive" role="contentinfo">
2759
- <h2 class="sr-only">Footer</h2>
2760
-
2761
-
2762
-
2763
-
2764
- <div class="d-flex flex-justify-center flex-items-center flex-column-reverse flex-lg-row flex-wrap flex-lg-nowrap">
2765
- <div class="d-flex flex-items-center flex-shrink-0 mx-2">
2766
- <a aria-label="GitHub Homepage" class="footer-octicon mr-2" href="https://github.com">
2767
- <svg aria-hidden="true" height="24" viewBox="0 0 24 24" version="1.1" width="24" data-view-component="true" class="octicon octicon-mark-github">
2768
- <path d="M12 1C5.923 1 1 5.923 1 12c0 4.867 3.149 8.979 7.521 10.436.55.096.756-.233.756-.522 0-.262-.013-1.128-.013-2.049-2.764.509-3.479-.674-3.699-1.292-.124-.317-.66-1.293-1.127-1.554-.385-.207-.936-.715-.014-.729.866-.014 1.485.797 1.691 1.128.99 1.663 2.571 1.196 3.204.907.096-.715.385-1.196.701-1.471-2.448-.275-5.005-1.224-5.005-5.432 0-1.196.426-2.186 1.128-2.956-.111-.275-.496-1.402.11-2.915 0 0 .921-.288 3.024 1.128a10.193 10.193 0 0 1 2.75-.371c.936 0 1.871.123 2.75.371 2.104-1.43 3.025-1.128 3.025-1.128.605 1.513.221 2.64.111 2.915.701.77 1.127 1.747 1.127 2.956 0 4.222-2.571 5.157-5.019 5.432.399.344.743 1.004.743 2.035 0 1.471-.014 2.654-.014 3.025 0 .289.206.632.756.522C19.851 20.979 23 16.854 23 12c0-6.077-4.922-11-11-11Z"></path>
2769
- </svg>
2770
- </a>
2771
- <span>
2772
- © 2026 GitHub,&nbsp;Inc.
2773
- </span>
2774
- </div>
2775
-
2776
- <nav aria-label="Footer">
2777
- <h3 class="sr-only" id="sr-footer-heading">Footer navigation</h3>
2778
-
2779
- <ul class="list-style-none d-flex flex-justify-center flex-wrap mb-2 mb-lg-0" aria-labelledby="sr-footer-heading">
2780
-
2781
- <li class="mx-2">
2782
- <a data-analytics-event="{&quot;category&quot;:&quot;Footer&quot;,&quot;action&quot;:&quot;go to Terms&quot;,&quot;label&quot;:&quot;text:terms&quot;}" href="https://docs.github.com/site-policy/github-terms/github-terms-of-service" data-view-component="true" class="Link--secondary Link">Terms</a>
2783
- </li>
2784
-
2785
- <li class="mx-2">
2786
- <a data-analytics-event="{&quot;category&quot;:&quot;Footer&quot;,&quot;action&quot;:&quot;go to privacy&quot;,&quot;label&quot;:&quot;text:privacy&quot;}" href="https://docs.github.com/site-policy/privacy-policies/github-privacy-statement" data-view-component="true" class="Link--secondary Link">Privacy</a>
2787
- </li>
2788
-
2789
- <li class="mx-2">
2790
- <a data-analytics-event="{&quot;category&quot;:&quot;Footer&quot;,&quot;action&quot;:&quot;go to security&quot;,&quot;label&quot;:&quot;text:security&quot;}" href="https://github.com/security" data-view-component="true" class="Link--secondary Link">Security</a>
2791
- </li>
2792
-
2793
- <li class="mx-2">
2794
- <a data-analytics-event="{&quot;category&quot;:&quot;Footer&quot;,&quot;action&quot;:&quot;go to status&quot;,&quot;label&quot;:&quot;text:status&quot;}" href="https://www.githubstatus.com/" data-view-component="true" class="Link--secondary Link">Status</a>
2795
- </li>
2796
-
2797
- <li class="mx-2">
2798
- <a data-analytics-event="{&quot;category&quot;:&quot;Footer&quot;,&quot;action&quot;:&quot;go to community&quot;,&quot;label&quot;:&quot;text:community&quot;}" href="https://github.community/" data-view-component="true" class="Link--secondary Link">Community</a>
2799
- </li>
2800
-
2801
- <li class="mx-2">
2802
- <a data-analytics-event="{&quot;category&quot;:&quot;Footer&quot;,&quot;action&quot;:&quot;go to docs&quot;,&quot;label&quot;:&quot;text:docs&quot;}" href="https://docs.github.com/" data-view-component="true" class="Link--secondary Link">Docs</a>
2803
- </li>
2804
-
2805
- <li class="mx-2">
2806
- <a data-analytics-event="{&quot;category&quot;:&quot;Footer&quot;,&quot;action&quot;:&quot;go to contact&quot;,&quot;label&quot;:&quot;text:contact&quot;}" href="https://support.github.com?tags=dotcom-footer" data-view-component="true" class="Link--secondary Link">Contact</a>
2807
- </li>
2808
-
2809
- <li class="mx-2">
2810
- <cookie-consent-link data-catalyst="">
2811
- <button type="button" class="Link--secondary underline-on-hover border-0 p-0 color-bg-transparent" data-action="click:cookie-consent-link#showConsentManagement" data-analytics-event="{&quot;location&quot;:&quot;footer&quot;,&quot;action&quot;:&quot;cookies&quot;,&quot;context&quot;:&quot;subfooter&quot;,&quot;tag&quot;:&quot;link&quot;,&quot;label&quot;:&quot;cookies_link_subfooter_footer&quot;}">
2812
- Manage cookies
2813
- </button>
2814
- </cookie-consent-link>
2815
- </li>
2816
-
2817
- <li class="mx-2">
2818
- <cookie-consent-link data-catalyst="">
2819
- <button type="button" class="Link--secondary underline-on-hover border-0 p-0 color-bg-transparent text-left" data-action="click:cookie-consent-link#showConsentManagement" data-analytics-event="{&quot;location&quot;:&quot;footer&quot;,&quot;action&quot;:&quot;dont_share_info&quot;,&quot;context&quot;:&quot;subfooter&quot;,&quot;tag&quot;:&quot;link&quot;,&quot;label&quot;:&quot;dont_share_info_link_subfooter_footer&quot;}">
2820
- Do not share my personal information
2821
- </button>
2822
- </cookie-consent-link>
2823
- </li>
2824
-
2825
- </ul>
2826
- </nav>
2827
- </div>
2828
- </footer>
2829
-
2830
-
2831
-
2832
- <ghcc-consent id="ghcc" class="position-fixed bottom-0 left-0" style="z-index: 999999" data-locale="en" data-initial-cookie-consent-allowed="" data-cookie-consent-required="false" data-catalyst=""></ghcc-consent>
2833
-
2834
-
2835
-
2836
-
2837
- <div id="ajax-error-message" class="ajax-error-message flash flash-error" hidden="">
2838
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-alert">
2839
- <path d="M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path>
2840
- </svg>
2841
- <button type="button" class="flash-close js-ajax-error-dismiss" aria-label="Dismiss error">
2842
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-x">
2843
- <path d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 8l3.22 3.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 9.06l-3.22 3.22a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06Z"></path>
2844
- </svg>
2845
- </button>
2846
- You can’t perform that action at this time.
2847
- </div>
2848
-
2849
- <template id="site-details-dialog">
2850
- <details class="details-reset details-overlay details-overlay-dark lh-default color-fg-default hx_rsm" open="">
2851
- <summary role="button" aria-label="Close dialog"></summary>
2852
- <details-dialog class="Box Box--overlay d-flex flex-column anim-fade-in fast hx_rsm-dialog hx_rsm-modal">
2853
- <button class="Box-btn-octicon m-0 btn-octicon position-absolute right-0 top-0" type="button" aria-label="Close dialog" data-close-dialog="">
2854
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-x">
2855
- <path d="M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 8l3.22 3.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 9.06l-3.22 3.22a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06Z"></path>
2856
- </svg>
2857
- </button>
2858
- <div class="octocat-spinner my-6 js-details-dialog-spinner"></div>
2859
- </details-dialog>
2860
- </details>
2861
- </template>
2862
-
2863
- <div class="Popover js-hovercard-content position-absolute" style="display: none; outline: none;">
2864
- <div class="Popover-message Popover-message--bottom-left Popover-message--large Box color-shadow-large" style="width:360px;"></div>
2865
- </div>
2866
-
2867
- <template id="snippet-clipboard-copy-button">
2868
- <div class="zeroclipboard-container position-absolute right-0 top-0">
2869
- <clipboard-copy aria-label="Copy" class="ClipboardButton btn js-clipboard-copy m-2 p-0" data-copy-feedback="Copied!" data-tooltip-direction="w">
2870
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-copy js-clipboard-copy-icon m-2">
2871
- <path d="M0 6.75C0 5.784.784 5 1.75 5h1.5a.75.75 0 0 1 0 1.5h-1.5a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-1.5a.75.75 0 0 1 1.5 0v1.5A1.75 1.75 0 0 1 9.25 16h-7.5A1.75 1.75 0 0 1 0 14.25Z"></path><path d="M5 1.75C5 .784 5.784 0 6.75 0h7.5C15.216 0 16 .784 16 1.75v7.5A1.75 1.75 0 0 1 14.25 11h-7.5A1.75 1.75 0 0 1 5 9.25Zm1.75-.25a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25Z"></path>
2872
- </svg>
2873
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-check js-clipboard-check-icon color-fg-success d-none m-2">
2874
- <path d="M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z"></path>
2875
- </svg>
2876
- </clipboard-copy>
2877
- </div>
2878
- </template>
2879
- <template id="snippet-clipboard-copy-button-unpositioned">
2880
- <div class="zeroclipboard-container">
2881
- <clipboard-copy aria-label="Copy" class="ClipboardButton btn btn-invisible js-clipboard-copy m-2 p-0 d-flex flex-justify-center flex-items-center" data-copy-feedback="Copied!" data-tooltip-direction="w">
2882
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-copy js-clipboard-copy-icon">
2883
- <path d="M0 6.75C0 5.784.784 5 1.75 5h1.5a.75.75 0 0 1 0 1.5h-1.5a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-1.5a.75.75 0 0 1 1.5 0v1.5A1.75 1.75 0 0 1 9.25 16h-7.5A1.75 1.75 0 0 1 0 14.25Z"></path><path d="M5 1.75C5 .784 5.784 0 6.75 0h7.5C15.216 0 16 .784 16 1.75v7.5A1.75 1.75 0 0 1 14.25 11h-7.5A1.75 1.75 0 0 1 5 9.25Zm1.75-.25a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25Z"></path>
2884
- </svg>
2885
- <svg aria-hidden="true" height="16" viewBox="0 0 16 16" version="1.1" width="16" data-view-component="true" class="octicon octicon-check js-clipboard-check-icon color-fg-success d-none">
2886
- <path d="M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z"></path>
2887
- </svg>
2888
- </clipboard-copy>
2889
- </div>
2890
- </template>
2891
-
2892
-
2893
- <style>
2894
- .user-mention[href$="/minhlucvan"] {
2895
- color: var(--color-user-mention-fg);
2896
- background-color: var(--bgColor-attention-muted, var(--color-attention-subtle));
2897
- border-radius: 2px;
2898
- margin-left: -2px;
2899
- margin-right: -2px;
2900
- }
2901
- .user-mention[href$="/minhlucvan"]:before,
2902
- .user-mention[href$="/minhlucvan"]:after {
2903
- content: '';
2904
- display: inline-block;
2905
- width: 2px;
2906
- }
2907
- </style>
2908
-
2909
-
2910
- </div>
2911
- <div id="js-global-screen-reader-notice" class="sr-only mt-n1" aria-live="polite" aria-atomic="true"></div>
2912
- <div id="js-global-screen-reader-notice-assertive" class="sr-only mt-n1" aria-live="assertive" aria-atomic="true"></div>
2913
-
2914
-
2915
-
2916
- </body></html>