btcp-browser-agent 0.1.0

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 (117) hide show
  1. package/CLAUDE.md +230 -0
  2. package/LICENSE +21 -0
  3. package/README.md +309 -0
  4. package/SKILL.md +143 -0
  5. package/SNAPSHOT_IMPROVEMENTS.md +302 -0
  6. package/USAGE.md +146 -0
  7. package/dist/index.d.ts +34 -0
  8. package/dist/index.d.ts.map +1 -0
  9. package/dist/index.js +35 -0
  10. package/dist/index.js.map +1 -0
  11. package/docs/browser-cli-design.md +500 -0
  12. package/examples/chrome-extension/CHANGELOG.md +210 -0
  13. package/examples/chrome-extension/DEBUG.md +231 -0
  14. package/examples/chrome-extension/ERROR_FIXED.md +147 -0
  15. package/examples/chrome-extension/QUICK_TEST.md +189 -0
  16. package/examples/chrome-extension/README.md +149 -0
  17. package/examples/chrome-extension/SESSION_ONLY_MODE.md +305 -0
  18. package/examples/chrome-extension/TEST_WITH_YOUR_TABS.md +97 -0
  19. package/examples/chrome-extension/build.js +43 -0
  20. package/examples/chrome-extension/manifest.json +37 -0
  21. package/examples/chrome-extension/package-lock.json +1063 -0
  22. package/examples/chrome-extension/package.json +21 -0
  23. package/examples/chrome-extension/popup.html +195 -0
  24. package/examples/chrome-extension/src/background.ts +12 -0
  25. package/examples/chrome-extension/src/content.ts +7 -0
  26. package/examples/chrome-extension/src/popup.ts +303 -0
  27. package/examples/chrome-extension/src/scenario-google-github.ts +389 -0
  28. package/examples/chrome-extension/test-page.html +127 -0
  29. package/examples/chrome-extension/tests/README.md +206 -0
  30. package/examples/chrome-extension/tests/scenario-google-to-github-star.ts +380 -0
  31. package/examples/chrome-extension/tsconfig.json +14 -0
  32. package/examples/snapshots/README.md +207 -0
  33. package/examples/snapshots/amazon-com-detail.html +9528 -0
  34. package/examples/snapshots/amazon-com-detail.snapshot.txt +997 -0
  35. package/examples/snapshots/convert-snapshots.ts +97 -0
  36. package/examples/snapshots/edition-cnn-com.html +13292 -0
  37. package/examples/snapshots/edition-cnn-com.snapshot.txt +562 -0
  38. package/examples/snapshots/github-com-microsoft-vscode.html +2916 -0
  39. package/examples/snapshots/github-com-microsoft-vscode.snapshot.txt +455 -0
  40. package/examples/snapshots/google-search.html +20012 -0
  41. package/examples/snapshots/google-search.snapshot.txt +195 -0
  42. package/examples/snapshots/metadata.json +86 -0
  43. package/examples/snapshots/npr-org-templates.html +2031 -0
  44. package/examples/snapshots/npr-org-templates.snapshot.txt +224 -0
  45. package/examples/snapshots/stackoverflow-com.html +5216 -0
  46. package/examples/snapshots/stackoverflow-com.snapshot.txt +2404 -0
  47. package/examples/snapshots/test-all-mode.html +46 -0
  48. package/examples/snapshots/test-all-mode.snapshot.txt +5 -0
  49. package/examples/snapshots/validate.test.ts +296 -0
  50. package/package.json +65 -0
  51. package/packages/cli/package.json +42 -0
  52. package/packages/cli/src/__tests__/cli.test.ts +434 -0
  53. package/packages/cli/src/__tests__/errors.test.ts +226 -0
  54. package/packages/cli/src/__tests__/executor.test.ts +275 -0
  55. package/packages/cli/src/__tests__/formatter.test.ts +260 -0
  56. package/packages/cli/src/__tests__/parser.test.ts +288 -0
  57. package/packages/cli/src/__tests__/suggestions.test.ts +255 -0
  58. package/packages/cli/src/commands/back.ts +22 -0
  59. package/packages/cli/src/commands/check.ts +33 -0
  60. package/packages/cli/src/commands/clear.ts +33 -0
  61. package/packages/cli/src/commands/click.ts +32 -0
  62. package/packages/cli/src/commands/closetab.ts +31 -0
  63. package/packages/cli/src/commands/eval.ts +41 -0
  64. package/packages/cli/src/commands/fill.ts +30 -0
  65. package/packages/cli/src/commands/focus.ts +33 -0
  66. package/packages/cli/src/commands/forward.ts +22 -0
  67. package/packages/cli/src/commands/goto.ts +34 -0
  68. package/packages/cli/src/commands/help.ts +162 -0
  69. package/packages/cli/src/commands/hover.ts +34 -0
  70. package/packages/cli/src/commands/index.ts +129 -0
  71. package/packages/cli/src/commands/newtab.ts +35 -0
  72. package/packages/cli/src/commands/press.ts +40 -0
  73. package/packages/cli/src/commands/reload.ts +25 -0
  74. package/packages/cli/src/commands/screenshot.ts +27 -0
  75. package/packages/cli/src/commands/scroll.ts +64 -0
  76. package/packages/cli/src/commands/select.ts +35 -0
  77. package/packages/cli/src/commands/snapshot.ts +21 -0
  78. package/packages/cli/src/commands/tab.ts +32 -0
  79. package/packages/cli/src/commands/tabs.ts +26 -0
  80. package/packages/cli/src/commands/text.ts +27 -0
  81. package/packages/cli/src/commands/title.ts +17 -0
  82. package/packages/cli/src/commands/type.ts +38 -0
  83. package/packages/cli/src/commands/uncheck.ts +33 -0
  84. package/packages/cli/src/commands/url.ts +17 -0
  85. package/packages/cli/src/commands/wait.ts +54 -0
  86. package/packages/cli/src/errors.ts +164 -0
  87. package/packages/cli/src/executor.ts +68 -0
  88. package/packages/cli/src/formatter.ts +215 -0
  89. package/packages/cli/src/index.ts +257 -0
  90. package/packages/cli/src/parser.ts +195 -0
  91. package/packages/cli/src/suggestions.ts +207 -0
  92. package/packages/cli/src/terminal/Terminal.ts +365 -0
  93. package/packages/cli/src/terminal/index.ts +5 -0
  94. package/packages/cli/src/types.ts +155 -0
  95. package/packages/cli/tsconfig.json +20 -0
  96. package/packages/core/package.json +35 -0
  97. package/packages/core/src/actions.ts +1210 -0
  98. package/packages/core/src/errors.ts +296 -0
  99. package/packages/core/src/index.test.ts +638 -0
  100. package/packages/core/src/index.ts +220 -0
  101. package/packages/core/src/ref-map.ts +107 -0
  102. package/packages/core/src/snapshot.ts +873 -0
  103. package/packages/core/src/types.ts +536 -0
  104. package/packages/core/tsconfig.json +23 -0
  105. package/packages/extension/README.md +129 -0
  106. package/packages/extension/package.json +43 -0
  107. package/packages/extension/src/background.ts +888 -0
  108. package/packages/extension/src/content.ts +172 -0
  109. package/packages/extension/src/index.ts +579 -0
  110. package/packages/extension/src/session-manager.ts +385 -0
  111. package/packages/extension/src/session-types.ts +144 -0
  112. package/packages/extension/src/types.ts +162 -0
  113. package/packages/extension/tsconfig.json +28 -0
  114. package/src/index.ts +64 -0
  115. package/tsconfig.build.json +12 -0
  116. package/tsconfig.json +26 -0
  117. package/vitest.config.ts +13 -0
@@ -0,0 +1,455 @@
1
+ PAGE: http://localhost/ | microsoft/vscode: Visual Studio Code | viewport=1024x768
2
+ SNAPSHOT: elements=2532 refs=452
3
+
4
+ LINK "Skip to content" @ref:0 /div.header-wrapper[2]/a
5
+ BUTTON "Open global navigation menu" @ref:1 /div.header-wrapper[2]/header/button.Button--secondary
6
+ LINK "Home" @ref:2 /div.header-wrapper[2]/header/li[1]/a#_r_p_
7
+ LINK "Issues" @ref:3 /div.header-wrapper[2]/header/li[2]/a#_r_q_
8
+ LINK "Pull requests" @ref:4 /div.header-wrapper[2]/header/li[3]/a#_r_r_
9
+ LINK "Homepage" @ref:5 /div.header-wrapper[2]/header/a
10
+ LINK "microsoft" @ref:6 /div.header-wrapper[2]/header/nav/a
11
+ BUTTON "Show more breadcrumb items" @ref:7 /div.header-wrapper[2]/header/nav/li/button.Button
12
+ MENUITEM "microsoft" @ref:8 /nav/li/anchored-position/ul/li[1]/a
13
+ MENUITEM "vscode" @ref:9 /nav/li/anchored-position/ul/li[2]/a
14
+ LINK "vscode" @ref:10 /div.header-wrapper[2]/header/nav/a
15
+ BUTTON "Search or jump to…" @ref:11 /div.header-wrapper[2]/header/qbsearch-input.search-input/div.search-input-container[1]/button
16
+ BUTTON "Type / to search" @ref:12 /div.header-wrapper[2]/header/qbsearch-input.search-input/div.search-input-container[1]/button.form-control
17
+ TEXTBOX @ref:13 [type=hidden] /div.header-wrapper[2]/header/qbsearch-input.search-input/div.search-input-container[1]/input
18
+ COMBOBOX "Search" @ref:14 /modal-dialog#search-suggestions-dialog/div.search-suggestions/form#query-builder-test-form/query-builder.search-query-builder/div.FormControl[1]/input#query-builder-test
19
+ BUTTON "Clear Search" @ref:15 /modal-dialog#search-suggestions-dialog/div.search-suggestions/form#query-builder-test-form/query-builder.search-query-builder/div.FormControl[1]/button.Button
20
+ LISTBOX "Suggestions" @ref:16 /modal-dialog#search-suggestions-dialog/div.search-suggestions/form#query-builder-test-form/query-builder.search-query-builder/div.FormControl[1]/ul#query-builder-test-results
21
+ LINK "Search syntax tips" @ref:17 /qbsearch-input.search-input/div.search-input-container[1]/modal-dialog#search-suggestions-dialog/div.search-suggestions/div.search-feedback-prompt/a.Link
22
+ BUTTON "Give feedback" @ref:18 /qbsearch-input.search-input/div.search-input-container[1]/modal-dialog#search-suggestions-dialog/div.search-suggestions/div.search-feedback-prompt/button.Button--link
23
+ BUTTON "Close" @ref:19 /div.header-wrapper[2]/header/qbsearch-input.search-input/dialog#feedback-dialog/button
24
+ TEXTBOX @ref:20 [type=hidden] /div.header-wrapper[2]/header/qbsearch-input.search-input/dialog#feedback-dialog/form#code-search-feedback-form/input[1]
25
+ TEXTBOX @ref:21 /div.header-wrapper[2]/header/qbsearch-input.search-input/dialog#feedback-dialog/form#code-search-feedback-form/textarea#feedback
26
+ CHECKBOX "Include my email address so I can be contacted" @ref:22 [type=checkbox] /div.header-wrapper[2]/header/qbsearch-input.search-input/dialog#feedback-dialog/form#code-search-feedback-form/input#include_email[2]
27
+ BUTTON "Cancel" @ref:23 /div.header-wrapper[2]/header/qbsearch-input.search-input/dialog#feedback-dialog/button.btn[1]
28
+ BUTTON "Submit feedback" @ref:24 /div.header-wrapper[2]/header/qbsearch-input.search-input/dialog#feedback-dialog/button.btn-primary[2]
29
+ BUTTON "Close" @ref:25 /div.header-wrapper[2]/header/qbsearch-input.search-input/dialog#custom-scopes-dialog/button
30
+ TEXTBOX @ref:26 [type=hidden] /div.header-wrapper[2]/header/qbsearch-input.search-input/dialog#custom-scopes-dialog/form#custom-scopes-dialog-form/input[1]
31
+ TEXTBOX @ref:27 [type=hidden] /div.header-wrapper[2]/header/qbsearch-input.search-input/dialog#custom-scopes-dialog/form#custom-scopes-dialog-form/input#custom_scope_id[2]
32
+ TEXTBOX "Name" @ref:28 [required maxlength=50] /header/qbsearch-input.search-input/dialog#custom-scopes-dialog/form#custom-scopes-dialog-form/div.form-group[2]/input#custom_scope_name[1]
33
+ TEXTBOX @ref:29 [type=hidden] /header/qbsearch-input.search-input/dialog#custom-scopes-dialog/form#custom-scopes-dialog-form/div.form-group[2]/input[2]
34
+ TEXTBOX "Query" @ref:30 [required maxlength=500] /header/qbsearch-input.search-input/dialog#custom-scopes-dialog/form#custom-scopes-dialog-form/div.form-group[3]/input#custom_scope_query
35
+ LINK "documentation" @ref:31 /div.header-wrapper[2]/header/qbsearch-input.search-input/dialog#custom-scopes-dialog/form#custom-scopes-dialog-form/a.Link--inTextBlock
36
+ BUTTON "Cancel" @ref:32 /div.header-wrapper[2]/header/qbsearch-input.search-input/dialog#custom-scopes-dialog/button.btn[1]
37
+ BUTTON "Create saved search" @ref:33 /div.header-wrapper[2]/header/qbsearch-input.search-input/dialog#custom-scopes-dialog/button.btn-primary[2]
38
+ TEXTBOX @ref:34 [type=hidden] /div.header-wrapper[2]/header/input
39
+ LINK "Chat with Copilot" @ref:35 /div.header-wrapper[2]/header/a#copilot-chat-header-button
40
+ BUTTON "Open Copilot…" @ref:36 /div.header-wrapper[2]/header/button#global-copilot-menu-button
41
+ BUTTON "Create something new" @ref:37 /div.header-wrapper[2]/header/button#global-create-menu-anchor
42
+ LINK "Your issues" @ref:38 /div.header-wrapper[2]/header/a.Button[1]
43
+ LINK "Your pull requests" @ref:39 /div.header-wrapper[2]/header/a.Button[2]
44
+ LINK "Repositories" @ref:40 /div.header-wrapper[2]/header/a.Button[3]
45
+ LINK "You have unread notifications" @ref:41 /div.header-wrapper[2]/header/a.Button
46
+ BUTTON "Open user navigation menu" @ref:42 /div.header-wrapper[2]/header/button.Button--invisible
47
+ LINK "Please reload this page" @ref:43 /div.header-wrapper[2]/header/a.Link--inTextBlock
48
+ LINK "Code" @ref:44 /div.header-wrapper[2]/header/nav/ul.list-style-none/li[1]/a#code-tab
49
+ LINK "Issues 5k+" @ref:45 /div.header-wrapper[2]/header/nav/ul.list-style-none/li[2]/a#issues-tab
50
+ LINK "Pull requests 975" @ref:46 /div.header-wrapper[2]/header/nav/ul.list-style-none/li[3]/a#pull-requests-tab
51
+ LINK "Actions" @ref:47 /div.header-wrapper[2]/header/nav/ul.list-style-none/li[4]/a#actions-tab
52
+ LINK "Projects 1" @ref:48 /div.header-wrapper[2]/header/nav/ul.list-style-none/li[5]/a#projects-tab
53
+ LINK "Models" @ref:49 /div.header-wrapper[2]/header/nav/ul.list-style-none/li[6]/a#models-tab
54
+ LINK "Wiki" @ref:50 /div.header-wrapper[2]/header/nav/ul.list-style-none/li[7]/a#wiki-tab
55
+ LINK "Security 19" @ref:51 /div.header-wrapper[2]/header/nav/ul.list-style-none/li[8]/a#security-tab
56
+ LINK "security" @ref:52 /div.header-wrapper[2]/header/nav/ul.list-style-none/li[8]/a#security-tab
57
+ LINK "security" @ref:53 /div.header-wrapper[2]/header/nav/ul.list-style-none/li[8]/a#security-tab
58
+ LINK "security" @ref:54 /div.header-wrapper[2]/header/nav/ul.list-style-none/li[8]/a#security-tab
59
+ LINK "Uh oh!" @ref:55 /div.header-wrapper[2]/header/nav/ul.list-style-none/li[8]/a#security-tab
60
+ LINK "There was an error while loading." @ref:56 /div.header-wrapper[2]/header/nav/ul.list-style-none/li[8]/a#security-tab[1]
61
+ LINK "Please reload this page" @ref:57 /div.header-wrapper[2]/header/nav/ul.list-style-none/li[8]/a.Link--inTextBlock[2]
62
+ LINK "Insights" @ref:58 /div.header-wrapper[2]/header/nav/ul.list-style-none/li[9]/a#insights-tab
63
+ BUTTON "Additional navigation options" @ref:59 /div.header-wrapper[2]/header/nav/button.Button
64
+ MENUITEM "Code" @ref:60 /header/nav/anchored-position/ul/li[1]/a
65
+ MENUITEM "Issues" @ref:61 /header/nav/anchored-position/ul/li[2]/a
66
+ MENUITEM "Pull requests" @ref:62 /header/nav/anchored-position/ul/li[3]/a
67
+ MENUITEM "Actions" @ref:63 /header/nav/anchored-position/ul/li[4]/a
68
+ MENUITEM "Projects" @ref:64 /header/nav/anchored-position/ul/li[5]/a
69
+ MENUITEM "Models" @ref:65 /header/nav/anchored-position/ul/li[6]/a
70
+ MENUITEM "Wiki" @ref:66 /header/nav/anchored-position/ul/li[7]/a
71
+ MENUITEM "Security" @ref:67 /header/nav/anchored-position/ul/li[8]/a
72
+ MENUITEM "Insights" @ref:68 /header/nav/anchored-position/ul/li[9]/a
73
+ LINK "Reload" @ref:69 /div.header-wrapper[2]/a.Link--inTextBlock
74
+ LINK "Reload" @ref:70 /div.header-wrapper[2]/a.Link--inTextBlock
75
+ LINK "Reload" @ref:71 /div.header-wrapper[2]/a.Link--inTextBlock
76
+ BUTTON "Dismiss alert" @ref:72 /div.header-wrapper[2]/button.Button
77
+ LINK "vscode" @ref:73 /main#js-repo-pjax-container/div#repository-container-header/div#repo-title-component[1]/a
78
+ BUTTON "Watch: Participating in microsoft/vscode" @ref:74 /main#js-repo-pjax-container/div#repository-container-header/div#repository-details-container[2]/ul/li[1]/button#_r_e_
79
+ BUTTON "Watch: Participating in microsoft/vscode" @ref:75 /main#js-repo-pjax-container/div#repository-container-header/div#repository-details-container[2]/ul/li[1]/button#_r_h_
80
+ LINK "Fork 37.4k Fork your own copy of microsoft/vscode" @ref:76 /div#repository-container-header/div#repository-details-container[2]/ul/li[2]/div.BtnGroup/a#fork-button
81
+ BUTTON "See your forks of this repository" @ref:77 /div#repository-details-container[2]/ul/li[2]/div.BtnGroup/details#my-forks-menu-41881900/summary.btn-sm
82
+ BUTTON "Close menu" @ref:78 /div#repository-details-container[2]/ul/li[2]/div.BtnGroup/details#my-forks-menu-41881900/button
83
+ MENUITEM @ref:79 /div#repository-details-container[2]/ul/li[2]/div.BtnGroup/details#my-forks-menu-41881900/div#filter-menu-45fe21
84
+ LINK "Please reload this page" @ref:80 /ul/li[2]/div.BtnGroup/details#my-forks-menu-41881900/div#filter-menu-45fe21/a.Link--inTextBlock
85
+ TEXTBOX @ref:81 [type=hidden] /div#repository-details-container[2]/ul/li[3]/div.BtnGroup[1]/form.BtnGroup-parent/input[1]
86
+ TEXTBOX @ref:82 [type=hidden] /div#repository-details-container[2]/ul/li[3]/div.BtnGroup[1]/form.BtnGroup-parent/input[2]
87
+ TEXTBOX @ref:83 [type=hidden] /div#repository-details-container[2]/ul/li[3]/div.BtnGroup[1]/form.BtnGroup-parent/input[3]
88
+ BUTTON "Starred, click to unstar this repository (180737)" @ref:84 /div#repository-details-container[2]/ul/li[3]/div.BtnGroup[1]/form.BtnGroup-parent/button.btn-with-aria-count
89
+ BUTTON "Add this repository to a list" @ref:85 /div#repository-details-container[2]/ul/li[3]/div.BtnGroup[1]/details.BtnGroup-parent/summary.btn-sm
90
+ BUTTON "Close menu" @ref:86 /ul/li[3]/div.BtnGroup[1]/details.BtnGroup-parent/header/button
91
+ MENUITEM @ref:87 /div#repository-details-container[2]/ul/li[3]/div.BtnGroup[1]/details.BtnGroup-parent/div#filter-menu-5408e1
92
+ LINK "Please reload this page" @ref:88 /ul/li[3]/div.BtnGroup[1]/details.BtnGroup-parent/div#filter-menu-5408e1/a.Link--inTextBlock
93
+ TEXTBOX @ref:89 [type=hidden] /div#repository-details-container[2]/ul/li[3]/div.BtnGroup[2]/form.BtnGroup-parent/input[1]
94
+ TEXTBOX @ref:90 [type=hidden] /div#repository-details-container[2]/ul/li[3]/div.BtnGroup[2]/form.BtnGroup-parent/input[2]
95
+ BUTTON "Star this repository (180737)" @ref:91 /div#repository-details-container[2]/ul/li[3]/div.BtnGroup[2]/form.BtnGroup-parent/button.btn-with-aria-count
96
+ BUTTON "Add this repository to a list" @ref:92 /div#repository-details-container[2]/ul/li[3]/div.BtnGroup[2]/details.BtnGroup-parent/summary.btn-sm
97
+ BUTTON "Close menu" @ref:93 /ul/li[3]/div.BtnGroup[2]/details.BtnGroup-parent/header/button
98
+ MENUITEM @ref:94 /div#repository-details-container[2]/ul/li[3]/div.BtnGroup[2]/details.BtnGroup-parent/div#filter-menu-81fde2
99
+ LINK "Please reload this page" @ref:95 /ul/li[3]/div.BtnGroup[2]/details.BtnGroup-parent/div#filter-menu-81fde2/a.Link--inTextBlock
100
+ BUTTON "Watch: Participating in microsoft/vscode" @ref:96 /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/button#_r_3_
101
+ BUTTON "Watch: Participating in microsoft/vscode" @ref:97 /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/button#_r_6_
102
+ LINK "Fork your own copy of microsoft/vscode" @ref:98 /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/div.BtnGroup[1]/a#fork-icon-button
103
+ TEXTBOX @ref:99 [type=hidden] /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/div.BtnGroup[1]/form.BtnGroup-parent/input[1]
104
+ TEXTBOX @ref:100 [type=hidden] /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/div.BtnGroup[1]/form.BtnGroup-parent/input[2]
105
+ BUTTON "Unstar this repository" @ref:101 /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/div.BtnGroup[1]/form.BtnGroup-parent/button.Button
106
+ BUTTON "Add this repository to a list" @ref:102 /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/div.BtnGroup[1]/details#details-user-list-41881900/summary.btn-sm
107
+ BUTTON "Close menu" @ref:103 /div#repository-container-header/div#responsive-meta-container[1]/div.BtnGroup[1]/details#details-user-list-41881900/header/button
108
+ MENUITEM @ref:104 /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/div.BtnGroup[1]/details#details-user-list-41881900/div#filter-menu-7a926c
109
+ LINK "Please reload this page" @ref:105 /div#repository-container-header/div#responsive-meta-container[1]/div.BtnGroup[1]/details#details-user-list-41881900/div#filter-menu-7a926c/a.Link--inTextBlock
110
+ TEXTBOX @ref:106 [type=hidden] /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/div.BtnGroup[2]/form.BtnGroup-parent/input[1]
111
+ TEXTBOX @ref:107 [type=hidden] /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/div.BtnGroup[2]/form.BtnGroup-parent/input[2]
112
+ BUTTON "Star this repository" @ref:108 /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/div.BtnGroup[2]/form.BtnGroup-parent/button.Button
113
+ BUTTON "Add this repository to a list" @ref:109 /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/div.BtnGroup[2]/details#details-user-list-41881900/summary.btn-sm
114
+ BUTTON "Close menu" @ref:110 /div#repository-container-header/div#responsive-meta-container[1]/div.BtnGroup[2]/details#details-user-list-41881900/header/button
115
+ MENUITEM @ref:111 /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/div.BtnGroup[2]/details#details-user-list-41881900/div#filter-menu-9a8929
116
+ LINK "Please reload this page" @ref:112 /div#repository-container-header/div#responsive-meta-container[1]/div.BtnGroup[2]/details#details-user-list-41881900/div#filter-menu-9a8929/a.Link--inTextBlock
117
+ LINK "code.visualstudio.com" @ref:113 /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/div.Link--secondary[2]/a
118
+ LINK "MIT license" @ref:114 /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/a.Link--muted
119
+ LINK "Code of conduct" @ref:115 /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/a.Link--muted
120
+ LINK "Contributing" @ref:116 /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/a.Link--muted
121
+ LINK "Security policy" @ref:117 /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/a.Link--muted
122
+ LINK "Please reload this page" @ref:118 /main#js-repo-pjax-container/div#repository-container-header/div#responsive-meta-container[1]/ul/a.Link--inTextBlock
123
+ LINK "Open in github.dev" @ref:119 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a[1]
124
+ LINK "Open in a new github.dev tab" @ref:120 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a[2]
125
+ LINK "Open in codespace" @ref:121 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a[3]
126
+ BUTTON "main branch" @ref:122 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/button[1]
127
+ BUTTON @ref:123 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/button[2]
128
+ LINK "2618 Branches" @ref:124 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a[1]
129
+ LINK "342 Tags" @ref:125 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a[2]
130
+ LINK "Go to Branches page" @ref:126 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a[1]
131
+ LINK "Go to Tags page" @ref:127 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a[2]
132
+ BUTTON @ref:128 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/button
133
+ COMBOBOX "Go to file" @ref:129 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/input
134
+ BUTTON "Go to file" @ref:130 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/button
135
+ BUTTON "Add file" @ref:131 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/button#_R_a35ab_
136
+ BUTTON "Code" @ref:132 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/button#_R_75ab_
137
+ BUTTON "Open more actions menu" @ref:133 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/button#_R_95ab_
138
+ BUTTON @ref:134 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/button[1]
139
+ BUTTON @ref:135 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/button[2]
140
+ LINK "ulugbekna" @ref:136 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/a[1]
141
+ LINK "commits by ulugbekna" @ref:137 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/a[2]
142
+ LINK "inline completions: fix passing changeHint cont..." @ref:138 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/a.Link--secondary[1]
143
+ LINK "#288428" @ref:139 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/a[2]
144
+ LINK ")" @ref:140 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/a.Link--secondary[3]
145
+ BUTTON "pending" @ref:141 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/button
146
+ LINK "Commit ea6ce12" @ref:142 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/a.Link--secondary
147
+ LINK "143,778 Commits" @ref:143 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/a
148
+ BUTTON "Open commit details" @ref:144 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/button
149
+ LINK "View commit history for this file." @ref:145 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/span#history-icon-button-tooltip/a
150
+ LINK ".config, (Directory)" @ref:146 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-0[2]/a.Link--primary
151
+ LINK ".config, (Directory)" @ref:147 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-0[2]/a.Link--primary
152
+ LINK "chore: suppress node warnings (" @ref:148 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-0[2]/a.Link--secondary[1]
153
+ LINK "#274905" @ref:149 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-0[2]/a[2]
154
+ LINK ")" @ref:150 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-0[2]/a.Link--secondary[3]
155
+ LINK ".devcontainer, (Directory)" @ref:151 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-1[3]/a.Link--primary
156
+ LINK ".devcontainer, (Directory)" @ref:152 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-1[3]/a.Link--primary
157
+ LINK "fix: changed the node js version from 20 to 22 ..." @ref:153 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-1[3]/a.Link--secondary[1]
158
+ LINK "#257193" @ref:154 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-1[3]/a[2]
159
+ LINK "(" @ref:155 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-1[3]/a.Link--secondary[3]
160
+ LINK "#257400" @ref:156 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-1[3]/a[4]
161
+ LINK ")" @ref:157 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-1[3]/a.Link--secondary[5]
162
+ LINK ".eslint-plugin-local, (Directory)" @ref:158 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-2[4]/a.Link--primary
163
+ LINK ".eslint-plugin-local, (Directory)" @ref:159 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-2[4]/a.Link--primary
164
+ LINK "Remove Map/Set eslint rule" @ref:160 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-2[4]/a.Link--secondary
165
+ LINK ".github, (Directory)" @ref:161 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-3[5]/a.Link--primary
166
+ LINK ".github, (Directory)" @ref:162 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-3[5]/a.Link--primary
167
+ LINK "updates learnings (" @ref:163 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-3[5]/a.Link--secondary[1]
168
+ LINK "#287749" @ref:164 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-3[5]/a[2]
169
+ LINK ")" @ref:165 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-3[5]/a.Link--secondary[3]
170
+ LINK ".vscode, (Directory)" @ref:166 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-4[6]/a.Link--primary
171
+ LINK ".vscode, (Directory)" @ref:167 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-4[6]/a.Link--primary
172
+ LINK "eng - opt the team into using sessions (" @ref:168 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-4[6]/a.Link--secondary[1]
173
+ LINK "#288384" @ref:169 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-4[6]/a[2]
174
+ LINK ")" @ref:170 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-4[6]/a.Link--secondary[3]
175
+ LINK "build, (Directory)" @ref:171 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-5[7]/a.Link--primary
176
+ LINK "build, (Directory)" @ref:172 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-5[7]/a.Link--primary
177
+ LINK "feat: enable win11 context menu for stable (" @ref:173 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-5[7]/a.Link--secondary[1]
178
+ LINK "#287832" @ref:174 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-5[7]/a[2]
179
+ LINK ")" @ref:175 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-5[7]/a.Link--secondary[3]
180
+ LINK "cli, (Directory)" @ref:176 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-6[8]/a.Link--primary
181
+ LINK "cli, (Directory)" @ref:177 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-6[8]/a.Link--primary
182
+ LINK "3rd party notices (" @ref:178 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-6[8]/a.Link--secondary[1]
183
+ LINK "#286063" @ref:179 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-6[8]/a[2]
184
+ LINK ")" @ref:180 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-6[8]/a.Link--secondary[3]
185
+ LINK "extensions, (Directory)" @ref:181 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-7[9]/a.Link--primary
186
+ LINK "extensions, (Directory)" @ref:182 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-7[9]/a.Link--primary
187
+ LINK "Merge pull request" @ref:183 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-7[9]/a.Link--secondary[1]
188
+ LINK "#288417" @ref:184 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-7[9]/a[2]
189
+ LINK "from microsoft/mrleemurray/probable-quail-…" @ref:185 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-7[9]/a.Link--secondary[3]
190
+ LINK "remote, (Directory)" @ref:186 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-8[10]/a.Link--primary
191
+ LINK "remote, (Directory)" @ref:187 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-8[10]/a.Link--primary
192
+ LINK "Merge pull request" @ref:188 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-8[10]/a.Link--secondary[1]
193
+ LINK "#287561" @ref:189 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-8[10]/a[2]
194
+ LINK "from microsoft/tyriar/xterm_260113" @ref:190 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-8[10]/a.Link--secondary[3]
195
+ LINK "resources, (Directory)" @ref:191 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-9[11]/a.Link--primary
196
+ LINK "resources, (Directory)" @ref:192 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-9[11]/a.Link--primary
197
+ LINK "fix: ci for snap builds (" @ref:193 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-9[11]/a.Link--secondary[1]
198
+ LINK "#280871" @ref:194 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-9[11]/a[2]
199
+ LINK ")" @ref:195 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-9[11]/a.Link--secondary[3]
200
+ LINK "scripts, (Directory)" @ref:196 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-10[12]/a.Link--primary
201
+ LINK "scripts, (Directory)" @ref:197 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-10[12]/a.Link--primary
202
+ LINK "Deletes unused playground-server. (" @ref:198 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-10[12]/a.Link--secondary[1]
203
+ LINK "#286718" @ref:199 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-10[12]/a[2]
204
+ LINK ")" @ref:200 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-10[12]/a.Link--secondary[3]
205
+ LINK "src, (Directory)" @ref:201 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-11[13]/a.Link--primary
206
+ LINK "src, (Directory)" @ref:202 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-11[13]/a.Link--primary
207
+ LINK "inline completions: fix passing changeHint cont..." @ref:203 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-11[13]/a.Link--secondary[1]
208
+ LINK "#288428" @ref:204 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-11[13]/a[2]
209
+ LINK ")" @ref:205 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-11[13]/a.Link--secondary[3]
210
+ LINK "test, (Directory)" @ref:206 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-12[14]/a.Link--primary
211
+ LINK "test, (Directory)" @ref:207 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-12[14]/a.Link--primary
212
+ LINK "deps - check in a package.lock (" @ref:208 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-12[14]/a.Link--secondary[1]
213
+ LINK "#288233" @ref:209 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-12[14]/a[2]
214
+ LINK ")" @ref:210 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-12[14]/a.Link--secondary[3]
215
+ LINK ".editorconfig, (File)" @ref:211 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-13[15]/a.Link--primary
216
+ LINK ".editorconfig, (File)" @ref:212 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-13[15]/a.Link--primary
217
+ LINK "No forcing tabsize on users" @ref:213 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-13[15]/a.Link--secondary
218
+ LINK ".eslint-ignore, (File)" @ref:214 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-14[16]/a.Link--primary
219
+ LINK ".eslint-ignore, (File)" @ref:215 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-14[16]/a.Link--primary
220
+ LINK "Remove" @ref:216 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-14[16]/a.Link--secondary[1]
221
+ LINK "src/vs/loader.js" @ref:217 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-14[16]/a.Link--secondary
222
+ LINK "(" @ref:218 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-14[16]/a.Link--secondary[2]
223
+ LINK "fix" @ref:219 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-14[16]/a.Link--secondary
224
+ LINK "#285255" @ref:220 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-14[16]/a[3]
225
+ LINK ") (" @ref:221 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-14[16]/a.Link--secondary[4]
226
+ LINK "#286727" @ref:222 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-14[16]/a[5]
227
+ LINK ")" @ref:223 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-14[16]/a.Link--secondary[6]
228
+ LINK ".git-blame-ignore-revs, (File)" @ref:224 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-15[17]/a.Link--primary
229
+ LINK ".git-blame-ignore-revs, (File)" @ref:225 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-15[17]/a.Link--primary
230
+ LINK "eng - add ESM migration commit to" @ref:226 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-15[17]/a.Link--secondary[1]
231
+ LINK ".git-blame-ignore-revs" @ref:227 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-15[17]/a.Link--secondary
232
+ LINK "(" @ref:228 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-15[17]/a.Link--secondary[2]
233
+ LINK "#227190" @ref:229 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-15[17]/a[3]
234
+ LINK ")" @ref:230 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-15[17]/a.Link--secondary[4]
235
+ LINK ".gitattributes, (File)" @ref:231 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-16[18]/a.Link--primary
236
+ LINK ".gitattributes, (File)" @ref:232 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-16[18]/a.Link--primary
237
+ LINK "Whitelist comments in all JSON files. For" @ref:233 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-16[18]/a.Link--secondary[1]
238
+ LINK "#129206" @ref:234 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-16[18]/a[2]
239
+ LINK ".gitignore, (File)" @ref:235 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-17[19]/a.Link--primary
240
+ LINK ".gitignore, (File)" @ref:236 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-17[19]/a.Link--primary
241
+ LINK "Add data prompt (" @ref:237 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-17[19]/a.Link--secondary[1]
242
+ LINK "#267543" @ref:238 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-17[19]/a[2]
243
+ LINK ")" @ref:239 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-17[19]/a.Link--secondary[3]
244
+ LINK ".lsifrc.json, (File)" @ref:240 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-18[20]/a.Link--primary
245
+ LINK ".lsifrc.json, (File)" @ref:241 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-18[20]/a.Link--primary
246
+ LINK "Add lsifrc file" @ref:242 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-18[20]/a.Link--secondary
247
+ LINK ".mailmap, (File)" @ref:243 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-19[21]/a.Link--primary
248
+ LINK ".mailmap, (File)" @ref:244 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-19[21]/a.Link--primary
249
+ LINK "update .mailmap (" @ref:245 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-19[21]/a.Link--secondary[1]
250
+ LINK "#159565" @ref:246 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-19[21]/a[2]
251
+ LINK ")" @ref:247 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-19[21]/a.Link--secondary[3]
252
+ LINK ".mention-bot, (File)" @ref:248 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-20[22]/a.Link--primary
253
+ LINK ".mention-bot, (File)" @ref:249 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-20[22]/a.Link--primary
254
+ LINK "update mention bot configuration" @ref:250 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-20[22]/a.Link--secondary
255
+ LINK ".npmrc, (File)" @ref:251 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-21[23]/a.Link--primary
256
+ LINK ".npmrc, (File)" @ref:252 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-21[23]/a.Link--primary
257
+ LINK "fix: capture diagnostics and add workaround for..." @ref:253 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-21[23]/a.Link--secondary
258
+ LINK ".nvmrc, (File)" @ref:254 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-22[24]/a.Link--primary
259
+ LINK ".nvmrc, (File)" @ref:255 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-22[24]/a.Link--primary
260
+ LINK "chore: bump .nvmrc (" @ref:256 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-22[24]/a.Link--secondary[1]
261
+ LINK "#282925" @ref:257 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-22[24]/a[2]
262
+ LINK ")" @ref:258 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-22[24]/a.Link--secondary[3]
263
+ LINK ".vscode-test.js, (File)" @ref:259 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-23[25]/a.Link--primary
264
+ LINK ".vscode-test.js, (File)" @ref:260 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-23[25]/a.Link--primary
265
+ LINK "Support folding in git COMMIT_MSG files (" @ref:261 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-23[25]/a.Link--secondary[1]
266
+ LINK "#272356" @ref:262 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-23[25]/a[2]
267
+ LINK ")" @ref:263 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-23[25]/a.Link--secondary[3]
268
+ LINK "AGENTS.md, (File)" @ref:264 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-24[26]/a.Link--primary
269
+ LINK "AGENTS.md, (File)" @ref:265 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-24[26]/a.Link--primary
270
+ LINK "docs - add instructions for AI coding agents (" @ref:266 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-24[26]/a.Link--secondary[1]
271
+ LINK "#280321" @ref:267 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-24[26]/a[2]
272
+ LINK ")" @ref:268 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-24[26]/a.Link--secondary[3]
273
+ LINK "CONTRIBUTING.md, (File)" @ref:269 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-25[27]/a.Link--primary
274
+ LINK "CONTRIBUTING.md, (File)" @ref:270 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-25[27]/a.Link--primary
275
+ LINK "Merge branch 'main' into patch-1" @ref:271 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-25[27]/a.Link--secondary
276
+ LINK "CodeQL.yml, (File)" @ref:272 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-26[28]/a.Link--primary
277
+ LINK "CodeQL.yml, (File)" @ref:273 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-26[28]/a.Link--primary
278
+ LINK "eng: mark the patch application file as being g..." @ref:274 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-26[28]/a.Link--secondary[1]
279
+ LINK "#194047" @ref:275 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-26[28]/a[2]
280
+ LINK ")" @ref:276 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-26[28]/a.Link--secondary[3]
281
+ LINK "LICENSE.txt, (File)" @ref:277 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-27[29]/a.Link--primary
282
+ LINK "LICENSE.txt, (File)" @ref:278 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-27[29]/a.Link--primary
283
+ LINK "remove blank line (my best checkin ever)" @ref:279 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-27[29]/a.Link--secondary
284
+ LINK "README.md, (File)" @ref:280 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-28[30]/a.Link--primary
285
+ LINK "README.md, (File)" @ref:281 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-28[30]/a.Link--primary
286
+ LINK "docs: update Twitter branding to X in README (" @ref:282 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-28[30]/a.Link--secondary[1]
287
+ LINK "#280235" @ref:283 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-28[30]/a[2]
288
+ LINK ")" @ref:284 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-28[30]/a.Link--secondary[3]
289
+ LINK "SECURITY.md, (File)" @ref:285 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-29[31]/a.Link--primary
290
+ LINK "SECURITY.md, (File)" @ref:286 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-29[31]/a.Link--primary
291
+ LINK "update security.md (" @ref:287 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-29[31]/a.Link--secondary[1]
292
+ LINK "#252288" @ref:288 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-29[31]/a[2]
293
+ LINK ")" @ref:289 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-29[31]/a.Link--secondary[3]
294
+ LINK "ThirdPartyNotices.txt, (File)" @ref:290 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-30[32]/a.Link--primary
295
+ LINK "ThirdPartyNotices.txt, (File)" @ref:291 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-30[32]/a.Link--primary
296
+ LINK "oss tool (" @ref:292 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-30[32]/a.Link--secondary[1]
297
+ LINK "#280470" @ref:293 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-30[32]/a[2]
298
+ LINK ")" @ref:294 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-30[32]/a.Link--secondary[3]
299
+ LINK "cglicenses.json, (File)" @ref:295 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-31[33]/a.Link--primary
300
+ LINK "cglicenses.json, (File)" @ref:296 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-31[33]/a.Link--primary
301
+ LINK "adopt new version of tas-client, no longer use ..." @ref:297 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-31[33]/a.Link--secondary[1]
302
+ LINK "#263340" @ref:298 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-31[33]/a[2]
303
+ LINK ")" @ref:299 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-31[33]/a.Link--secondary[3]
304
+ LINK "cgmanifest.json, (File)" @ref:300 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-32[34]/a.Link--primary
305
+ LINK "cgmanifest.json, (File)" @ref:301 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-32[34]/a.Link--primary
306
+ LINK "chore: bump electron@39.2.7 (" @ref:302 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-32[34]/a.Link--secondary[1]
307
+ LINK "#283786" @ref:303 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-32[34]/a[2]
308
+ LINK ")" @ref:304 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-32[34]/a.Link--secondary[3]
309
+ LINK "eslint.config.js, (File)" @ref:305 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-33[35]/a.Link--primary
310
+ LINK "eslint.config.js, (File)" @ref:306 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-33[35]/a.Link--primary
311
+ LINK "chore: bump native-watchdog (" @ref:307 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-33[35]/a.Link--secondary[1]
312
+ LINK "#287848" @ref:308 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-33[35]/a[2]
313
+ LINK ")" @ref:309 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-33[35]/a.Link--secondary[3]
314
+ LINK "gulpfile.mjs, (File)" @ref:310 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-34[36]/a.Link--primary
315
+ LINK "gulpfile.mjs, (File)" @ref:311 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-34[36]/a.Link--primary
316
+ LINK "Run our build scripts directly as typescript (" @ref:312 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-34[36]/a.Link--secondary[1]
317
+ LINK "#277567" @ref:313 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-34[36]/a[2]
318
+ LINK ")" @ref:314 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-34[36]/a.Link--secondary[3]
319
+ LINK "package-lock.json, (File)" @ref:315 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-35[37]/a.Link--primary
320
+ LINK "package-lock.json, (File)" @ref:316 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-35[37]/a.Link--primary
321
+ LINK "Merge pull request" @ref:317 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-35[37]/a.Link--secondary[1]
322
+ LINK "#287561" @ref:318 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-35[37]/a[2]
323
+ LINK "from microsoft/tyriar/xterm_260113" @ref:319 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-35[37]/a.Link--secondary[3]
324
+ LINK "package.json, (File)" @ref:320 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-36[38]/a.Link--primary
325
+ LINK "package.json, (File)" @ref:321 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-36[38]/a.Link--primary
326
+ LINK "updating distro hash (" @ref:322 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-36[38]/a.Link--secondary[1]
327
+ LINK "#288309" @ref:323 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-36[38]/a[2]
328
+ LINK ")" @ref:324 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-36[38]/a.Link--secondary[3]
329
+ LINK "product.json, (File)" @ref:325 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-37[39]/a.Link--primary
330
+ LINK "product.json, (File)" @ref:326 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-37[39]/a.Link--primary
331
+ LINK "make it a command for the setup tool" @ref:327 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-37[39]/a.Link--secondary
332
+ LINK "tsfmt.json, (File)" @ref:328 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-38[40]/a.Link--primary
333
+ LINK "tsfmt.json, (File)" @ref:329 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-38[40]/a.Link--primary
334
+ LINK "Add insertSpaceAfterOpeningAndBeforeClosingEmpt..." @ref:330 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/tr#folder-row-38[40]/a.Link--secondary
335
+ BUTTON "View all files" @ref:331 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/table.Table-module__Box--KyMHK/button
336
+ LINK "README" @ref:332 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/nav/ul/li[1]/a
337
+ LINK "Code of conduct" @ref:333 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/nav/ul/li[2]/a
338
+ LINK "Contributing" @ref:334 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/nav/ul/li[3]/a
339
+ BUTTON "More Repository files items" @ref:335 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/nav/ul/li[4]/button
340
+ BUTTON "Edit file" @ref:336 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/button[1]
341
+ BUTTON "Outline" @ref:337 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/button#_R_r9ab_[2]
342
+ LINK "Permalink: Visual Studio Code - Open Source ("C..." @ref:338 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a
343
+ LINK "issues" @ref:339 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[1]
344
+ LINK "issues" @ref:340 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[2]
345
+ LINK "vscode" @ref:341 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[3]
346
+ LINK "Permalink: The Repository" @ref:342 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a#user-content-the-repository
347
+ LINK "Visual Studio Code" @ref:343 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[1]
348
+ LINK "roadmap" @ref:344 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[2]
349
+ LINK "monthly iteration plans" @ref:345 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[3]
350
+ LINK "endgame plans" @ref:346 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[4]
351
+ LINK "MIT license" @ref:347 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[5]
352
+ LINK "Permalink: Visual Studio Code" @ref:348 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a
353
+ LINK "118224532 3842c400 b438 11eb 923d a5f66fa6785a" @ref:349 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a
354
+ LINK "Visual Studio Code" @ref:350 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[1]
355
+ LINK "Microsoft product license" @ref:351 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[2]
356
+ LINK "Visual Studio Code" @ref:352 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a
357
+ LINK "Visual Studio Code's website" @ref:353 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[1]
358
+ LINK "Insiders build" @ref:354 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[2]
359
+ LINK "Permalink: Contributing" @ref:355 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a#user-content-contributing
360
+ LINK "Submit bugs and feature requests" @ref:356 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[1]/li[1]/a
361
+ LINK "source code changes" @ref:357 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[1]/li[2]/a
362
+ LINK "documentation" @ref:358 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[1]/li[3]/a
363
+ LINK "How to Contribute" @ref:359 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a
364
+ LINK "How to build and run from source" @ref:360 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[2]/li[1]/a
365
+ LINK "The development workflow, including debugging a..." @ref:361 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[2]/li[2]/a
366
+ LINK "Coding guidelines" @ref:362 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[2]/li[3]/a
367
+ LINK "Submitting pull requests" @ref:363 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[2]/li[4]/a
368
+ LINK "Finding an issue to work on" @ref:364 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[2]/li[5]/a
369
+ LINK "Contributing to translations" @ref:365 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[2]/li[6]/a
370
+ LINK "Permalink: Feedback" @ref:366 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a#user-content-feedback
371
+ LINK "Stack Overflow" @ref:367 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[3]/li[1]/a
372
+ LINK "Request a new feature" @ref:368 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[3]/li[2]/a
373
+ LINK "popular feature requests" @ref:369 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[3]/li[3]/a
374
+ LINK "File an issue" @ref:370 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[3]/li[4]/a
375
+ LINK "GitHub Discussions" @ref:371 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[3]/li[5]/a[1]
376
+ LINK "Slack" @ref:372 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[3]/li[5]/a[2]
377
+ LINK "@code" @ref:373 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[3]/li[6]/a
378
+ LINK "wiki" @ref:374 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a
379
+ LINK "Permalink: Related Projects" @ref:375 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a#user-content-related-projects
380
+ LINK "node debug adapter" @ref:376 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[1]
381
+ LINK "mono debug adapter" @ref:377 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[2]
382
+ LINK "Related Projects" @ref:378 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[3]
383
+ LINK "wiki" @ref:379 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[4]
384
+ LINK "Permalink: Bundled Extensions" @ref:380 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a
385
+ LINK "extensions" @ref:381 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a
386
+ LINK "Permalink: Development Container" @ref:382 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a
387
+ LINK "Dev Containers" @ref:383 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[4]/li[1]/a
388
+ LINK "here" @ref:384 /article/ul[4]/li[1]/ul/li/a
389
+ LINK "GitHub Codespaces" @ref:385 /turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/ul[4]/li[2]/a
390
+ LINK "development container README" @ref:386 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a
391
+ LINK "Permalink: Code of Conduct" @ref:387 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a#user-content-code-of-conduct
392
+ LINK "Microsoft Open Source Code of Conduct" @ref:388 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[1]
393
+ LINK "Code of Conduct FAQ" @ref:389 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[2]
394
+ LINK "opencode@microsoft.com" @ref:390 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a[3]
395
+ LINK "Permalink: License" @ref:391 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a#user-content-license
396
+ LINK "MIT" @ref:392 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/article/a
397
+ TEXTBOX @ref:393 [type=hidden] /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/input#react-codespace-csrf
398
+ LINK "code.visualstudio.com" @ref:394 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a
399
+ LINK "electron" @ref:395 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a[1]
400
+ LINK "microsoft" @ref:396 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a[2]
401
+ LINK "editor" @ref:397 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a[3]
402
+ LINK "typescript" @ref:398 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a[4]
403
+ LINK "visual-studio-code" @ref:399 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a[5]
404
+ LINK "Readme" @ref:400 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link--muted
405
+ LINK "MIT license" @ref:401 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link--muted
406
+ LINK "Code of conduct" @ref:402 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link--muted
407
+ LINK "Contributing" @ref:403 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link--muted
408
+ LINK "Security policy" @ref:404 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link--muted
409
+ LINK "Please reload this page" @ref:405 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link--inTextBlock
410
+ LINK "Activity" @ref:406 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link
411
+ LINK "Custom properties" @ref:407 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link
412
+ LINK "181k stars" @ref:408 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link
413
+ LINK "3.4k watching" @ref:409 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link
414
+ LINK "37.4k forks" @ref:410 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link
415
+ LINK "Report repository" @ref:411 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link--muted
416
+ LINK "Releases 191" @ref:412 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/h2/a.Link--primary
417
+ LINK "November 2025 Recovery 1 Latest Dec 18, 2025" @ref:413 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link--primary
418
+ LINK "+ 190 releases" @ref:414 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link
419
+ LINK "Please reload this page" @ref:415 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link--inTextBlock
420
+ LINK "Contributors 2,337" @ref:416 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/h2/a.Link--primary
421
+ LINK "bpasero" @ref:417 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[1]/a
422
+ LINK "Tyriar" @ref:418 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[2]/a
423
+ LINK "jrieken" @ref:419 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[3]/a
424
+ LINK "mjbvz" @ref:420 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[4]/a
425
+ LINK "joaomoreno" @ref:421 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[5]/a
426
+ LINK "sandy081" @ref:422 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[6]/a
427
+ LINK "alexdima" @ref:423 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[7]/a
428
+ LINK "isidorn" @ref:424 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[8]/a
429
+ LINK "roblourens" @ref:425 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[9]/a
430
+ LINK "aeschli" @ref:426 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[10]/a
431
+ LINK "rebornix" @ref:427 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[11]/a
432
+ LINK "meganrogge" @ref:428 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[12]/a
433
+ LINK "alexr00" @ref:429 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[13]/a
434
+ LINK "connor4312" @ref:430 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[14]/a
435
+ LINK "+ 2,323 contributors" @ref:431 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link--inTextBlock
436
+ LINK "Deployments 500+" @ref:432 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/h2/a.Link--primary
437
+ LINK "main July 25, 2024 05:55" @ref:433 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li/a.Link--primary
438
+ LINK "+ more deployments" @ref:434 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/a.Link--inTextBlock
439
+ LINK "TypeScript 95.4%" @ref:435 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[1]/a.Link--secondary
440
+ LINK "CSS 1.5%" @ref:436 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[2]/a.Link--secondary
441
+ LINK "JavaScript 1.0%" @ref:437 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[3]/a.Link--secondary
442
+ LINK "Inno Setup 0.7%" @ref:438 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[4]/a.Link--secondary
443
+ LINK "Rust 0.6%" @ref:439 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[5]/a.Link--secondary
444
+ LINK "HTML 0.5%" @ref:440 /main#js-repo-pjax-container/turbo-frame#repo-content-turbo-frame/div#repo-content-pjax-container/ul.list-style-none/li[6]/a.Link--secondary
445
+ LINK "GitHub Homepage" @ref:441 /footer.footer/a.footer-octicon
446
+ LINK "Terms" @ref:442 /footer.footer/nav/ul.list-style-none/li[1]/a.Link--secondary
447
+ LINK "Privacy" @ref:443 /footer.footer/nav/ul.list-style-none/li[2]/a.Link--secondary
448
+ LINK "Security" @ref:444 /footer.footer/nav/ul.list-style-none/li[3]/a.Link--secondary
449
+ LINK "Status" @ref:445 /footer.footer/nav/ul.list-style-none/li[4]/a.Link--secondary
450
+ LINK "Community" @ref:446 /footer.footer/nav/ul.list-style-none/li[5]/a.Link--secondary
451
+ LINK "Docs" @ref:447 /footer.footer/nav/ul.list-style-none/li[6]/a.Link--secondary
452
+ LINK "Contact" @ref:448 /footer.footer/nav/ul.list-style-none/li[7]/a.Link--secondary
453
+ BUTTON "Manage cookies" @ref:449 /footer.footer/nav/ul.list-style-none/li[8]/button.Link--secondary
454
+ BUTTON "Do not share my personal information" @ref:450 /footer.footer/nav/ul.list-style-none/li[9]/button.Link--secondary
455
+ BUTTON "Dismiss error" @ref:451 /div#ajax-error-message[7]/button