Issue id
stringlengths
1
6
Summary
stringlengths
1
277
Created
stringdate
2015-11-13 16:34:23
2024-07-25 14:34:59
Resolved
stringlengths
0
25
Description
stringlengths
1
3.82k
Resolution
stringclasses
4 values
Description_all
stringlengths
3
3.9k
token_count
int16
6
1k
199222
Thin lines between code lines in multi file diff editor
2023-11-27 20:44:15+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
Thin lines between code lines in multi file diff editor <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Sug...
505
199216
Use pointer for multi-diff editor folding
2023-11-27 20:16:37+00:00
2023-11-29 09:40:05+00:00
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> Testing #199155 When hovering folding contro...
completed
Use pointer for multi-diff editor folding <!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> Testin...
151
199200
Terminal sticky scroll is partially visible
2023-11-27 18:15:34+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
Terminal sticky scroll is partially visible <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --...
382
199195
"File at target already exists and thus will not be moved/copied to unless overwrite is specified"
2023-11-27 17:58:30+00:00
2023-12-12 13:59:01+00:00
In vscode-copilot - Create `src/platform/variables/common/variablesService.ts` - Create the folder `src/platform/variables/vscode` - Copy/paste the file into the vscode folder in the Explorer - Get this error, but it copied with no problem and I don't know what it's referring to. Was able to repro when deleting a...
completed
"File at target already exists and thus will not be moved/copied to unless overwrite is specified" In vscode-copilot - Create `src/platform/variables/common/variablesService.ts` - Create the folder `src/platform/variables/vscode` - Copy/paste the file into the vscode folder in the Explorer - Get this error, but i...
404
199185
Merge Editor: Current is not always HEAD for every merge conflict
2023-11-27 16:44:28+00:00
https://github.com/microsoft/vscode/blob/e6b2fd82c18b264236d706abdacc842ab6d2babb/extensions/git/src/commands.ts#L527-L546 The content should be compared against the :1:/:2:/:3: I think this happens when rebasing multiple (conflicting) commits.
Merge Editor: Current is not always HEAD for every merge conflict https://github.com/microsoft/vscode/blob/e6b2fd82c18b264236d706abdacc842ab6d2babb/extensions/git/src/commands.ts#L527-L546 The content should be compared against the :1:/:2:/:3: I think this happens when rebasing multiple (conflicting) commits.
113
199143
Missing "Open File" action in notebook diff editor
2023-11-27 09:57:46+00:00
When the notebook diff editor is open, there's no `Open File` action, but instead the `Open Changes` is shown (which does nothing): ![Image](https://github.com/microsoft/vscode/assets/22350/c744fa38-db6e-4861-8200-7bbb945f8424) Compare it to the regular diff editor: ![Image](https://github.com/microsoft/vscode...
Missing "Open File" action in notebook diff editor When the notebook diff editor is open, there's no `Open File` action, but instead the `Open Changes` is shown (which does nothing): ![Image](https://github.com/microsoft/vscode/assets/22350/c744fa38-db6e-4861-8200-7bbb945f8424) Compare it to the regular diff edit...
142
199098
Make "submit to secondary agent" more discoverable
2023-11-25 19:35:26+00:00
2023-11-26 11:50:35+00:00
You can now send a chat query directly to `@workspace` with `cmd+enter`, but this is hard to discover. Add it to the Submit button tooltip.
completed
Make "submit to secondary agent" more discoverable You can now send a chat query directly to `@workspace` with `cmd+enter`, but this is hard to discover. Add it to the Submit button tooltip.
54
199068
Not all onCancellationRequested listeners are called for a CancelablePromise
2023-11-25 00:34:21+00:00
2024-01-03 18:02:54+00:00
The CancelablePromise disposes its CancellationTokenSource inside a onCancellationRequested listener. That means that any other onCancellationRequested listeners that were added after that one won't be called, because the EventEmitter has been disposed. In practice that means that any listener that was added after an a...
completed
Not all onCancellationRequested listeners are called for a CancelablePromise The CancelablePromise disposes its CancellationTokenSource inside a onCancellationRequested listener. That means that any other onCancellationRequested listeners that were added after that one won't be called, because the EventEmitter has been...
702
199009
Using vscode.dev viatunnel, markdown internal link can not be opened
2023-11-24 10:04:51+00:00
When using vscode.dev via a tunnel in the browser and editing markdown, internal links do not work. Simple example: ``` # cat test.md [test](test.md) ``` Opening the preview and clicking the link opens a new browser tab with `https://vscode-remote+tunnel-002b<TUNNEL_NAME>.vscode-resource.vscode-cdn.net/<LOKAL_...
Using vscode.dev viatunnel, markdown internal link can not be opened When using vscode.dev via a tunnel in the browser and editing markdown, internal links do not work. Simple example: ``` # cat test.md [test](test.md) ``` Opening the preview and clicking the link opens a new browser tab with `https://vscode-r...
347
199006
Signature verification failed for repomd.xml
2023-11-24 09:47:25+00:00
2023-11-27 22:55:51+00:00
Seems like yum repository messed up again. Take a look... - **Operating System:** openSUSE Tumbleweed Steps to Reproduce: `sudo zypper ref` Output : ``` Warning: File 'repomd.xml' from repository 'Visual Studio Code' is signed with an unknown key ''. Note: Signing data enables the recipient to verif...
not_planned
Signature verification failed for repomd.xml Seems like yum repository messed up again. Take a look... - **Operating System:** openSUSE Tumbleweed Steps to Reproduce: `sudo zypper ref` Output : ``` Warning: File 'repomd.xml' from repository 'Visual Studio Code' is signed with an unknown key ''. Note...
352
198975
Commit message(s) disappear after undoing the last commit
2023-11-23 21:53:15+00:00
2024-01-08 13:48:20+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
completed
Commit message(s) disappear after undoing the last commit <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-S...
654
198956
Title bar actions from editor cramped in zoom
2023-11-23 16:47:23+00:00
2023-11-24 08:38:50+00:00
See how layout controls are nice and large when zoomed in once: ![image](https://github.com/microsoft/vscode/assets/900690/c66e0993-2da4-4df3-bceb-d29050d34eb3) Now compare with editor actions. ![image](https://github.com/microsoft/vscode/assets/900690/d3e034ad-5fc9-456d-92fb-e6f51a768b19) I think the issue...
completed
Title bar actions from editor cramped in zoom See how layout controls are nice and large when zoomed in once: ![image](https://github.com/microsoft/vscode/assets/900690/c66e0993-2da4-4df3-bceb-d29050d34eb3) Now compare with editor actions. ![image](https://github.com/microsoft/vscode/assets/900690/d3e034ad-5fc...
229
198933
Test Coverage UX: Clear All Results leaves Test Coverage view populated
2023-11-23 11:59:04+00:00
2023-11-28 16:28:55+00:00
Type: <b>Bug</b> 1. Clone vscode-extension-samples 2. Open test-provider-sample, build it and run it. 3. Select Testing on Activity Bar. 4. Use "Run Tests" button on Test Explorer view's title bar. 5. Go to right-hand part of Test Results tab on Panel, and click "View Test Coverage" Test Coverage view appea...
completed
Test Coverage UX: Clear All Results leaves Test Coverage view populated Type: <b>Bug</b> 1. Clone vscode-extension-samples 2. Open test-provider-sample, build it and run it. 3. Select Testing on Activity Bar. 4. Use "Run Tests" button on Test Explorer view's title bar. 5. Go to right-hand part of Test Results ...
234
198926
Scrollbar slides under Terminal Sticky Scroll
2023-11-23 11:04:10+00:00
2023-11-27 23:02:09+00:00
Scrollbar slides under Terminal Sticky Scroll In my case I had 2 terminals open side-by-side and had resized them. ![image_720](https://github.com/microsoft/vscode/assets/44439583/9ff6ac99-aaf8-477b-b207-43a6c682b93c)
completed
Scrollbar slides under Terminal Sticky Scroll Scrollbar slides under Terminal Sticky Scroll In my case I had 2 terminals open side-by-side and had resized them. ![image_720](https://github.com/microsoft/vscode/assets/44439583/9ff6ac99-aaf8-477b-b207-43a6c682b93c)
91
198925
Vscode don't display git branches in Chinese mode
2023-11-23 11:03:54+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
Vscode don't display git branches in Chinese mode <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestio...
464
198914
terminal.integrated.cwd failed to function on remote workspace: Starting directory (cwd) does not exist.
2023-11-23 07:25:00+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
terminal.integrated.cwd failed to function on remote workspace: Starting directory (cwd) does not exist. <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github....
786
198904
When actions.find has a "User" source, workbench.action.terminal.focusFind stops working
2023-11-23 02:35:52+00:00
Type: <b>Bug</b> 1. Go to the keyboard shortcuts GUI 1. Turn on record keys 1. Press ctrl + F on your keyboard 1. Modify `actions.find`'s "When" expression to `editorFocus || editorIsOpen || terminal.active` 1. Press enter to save your edit 1. Modify `actions.find`'s back to the way it was: `editorFocus || edit...
When actions.find has a "User" source, workbench.action.terminal.focusFind stops working Type: <b>Bug</b> 1. Go to the keyboard shortcuts GUI 1. Turn on record keys 1. Press ctrl + F on your keyboard 1. Modify `actions.find`'s "When" expression to `editorFocus || editorIsOpen || terminal.active` 1. Press enter t...
978
198903
Changing actions.find's "when" to "editorFocus || !!editorIsOpen" creates a duplicate user shortcut that can't be removed
2023-11-23 02:24:27+00:00
Type: <b>Bug</b> 1. Go to the keyboard shortcuts GUI 1. Turn on record keys 1. Press ctrl + F on your keyboard 1. Modify `actions.find`'s when expression to `editorFocus || !!editorIsOpen` 1. Press enter 1. A duplicate `actions.find` will be created with a "User" source and a `-` for its "When" 1. Try to delet...
Changing actions.find's "when" to "editorFocus || !!editorIsOpen" creates a duplicate user shortcut that can't be removed Type: <b>Bug</b> 1. Go to the keyboard shortcuts GUI 1. Turn on record keys 1. Press ctrl + F on your keyboard 1. Modify `actions.find`'s when expression to `editorFocus || !!editorIsOpen` 1....
554
198881
Refactor menu's css seems missing
2023-11-22 18:41:37+00:00
2023-12-13 09:13:01+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
completed
Refactor menu's css seems missing <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 ...
511
198866
matching syntax highlight in split window wont clear
2023-11-22 15:46:10+00:00
2024-01-30 22:05:45+00:00
There is a strange issue in vs code when i split the window, and click on any code or syntax , it will highlight similar code/syntax but the highlig ht is persistent, it wont go away, it works fine in the first window but when it gets split to the right it doesnt work if i click anywhere else in the window, in th...
completed
matching syntax highlight in split window wont clear There is a strange issue in vs code when i split the window, and click on any code or syntax , it will highlight similar code/syntax but the highlig ht is persistent, it wont go away, it works fine in the first window but when it gets split to the right it does...
285
198841
Diff editor loses view state and jumps around when I clear changes
2023-11-22 10:44:25+00:00
ERROR: type should be string, got "\r\n\r\nhttps://github.com/microsoft/vscode/assets/22350/4114b658-1649-4b6f-b2bf-91f09cec1428\r\n\r\n"
Diff editor loses view state and jumps around when I clear changes https://github.com/microsoft/vscode/assets/22350/4114b658-1649-4b6f-b2bf-91f09cec1428
55
198832
Multi diff editor failed to open
2023-11-22 07:54:02+00:00
2023-11-24 14:55:53+00:00
Type: <b>Bug</b> When reviewing outgoing changes for my tracking fork of microsoft/vscode after merging upstream/main into my local copy today. ![image](https://github.com/microsoft/vscode/assets/6726799/65461b1e-6cbe-4427-8509-ed42018e2979) Also, based on #198768 I was surprised to see the magnifying glass ic...
completed
Multi diff editor failed to open Type: <b>Bug</b> When reviewing outgoing changes for my tracking fork of microsoft/vscode after merging upstream/main into my local copy today. ![image](https://github.com/microsoft/vscode/assets/6726799/65461b1e-6cbe-4427-8509-ed42018e2979) Also, based on #198768 I was surpris...
196
198824
vscode.cdn.azure.cn cannot fetch latest insider build.
2023-11-22 02:29:55+00:00
2023-11-23 14:58:07+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
completed
vscode.cdn.azure.cn cannot fetch latest insider build. <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Sugg...
889
198814
Reverting in the inline diff view sometimes breaks the file
2023-11-21 22:59:28+00:00
2023-11-22 11:13:51+00:00
On the latest Insiders on Windows, I noticed that reverting in the inline diff view consistently broke the file. I open the context menu by right-clicking on the black lightbulb. I'm unsure what the best way to present the data is, so I have included a screencap along with some attachments. ![screencap demonstrat...
completed
Reverting in the inline diff view sometimes breaks the file On the latest Insiders on Windows, I noticed that reverting in the inline diff view consistently broke the file. I open the context menu by right-clicking on the black lightbulb. I'm unsure what the best way to present the data is, so I have included a scre...
224
198776
Command Decoration stays when 'cls' and 'clear' commands are used.
2023-11-21 14:41:09+00:00
Type: <b>Feature Request</b> I want VS code to identify that the user has typed those commands, and remove the decoration. But now i need to click the 'Clear Terminal' button in order to do that. VS Code version: Code - Insiders 1.85.0-insider (444e73750b99b11c3597a5f5d210d2b52257e377, 2023-11-16T05:36:13.931Z) ...
Command Decoration stays when 'cls' and 'clear' commands are used. Type: <b>Feature Request</b> I want VS code to identify that the user has typed those commands, and remove the decoration. But now i need to click the 'Clear Terminal' button in order to do that. VS Code version: Code - Insiders 1.85.0-insider (4...
153
198761
GitLens hover is at top left corner
2023-11-21 11:39:59+00:00
2023-11-22 04:56:22+00:00
![image](https://github.com/microsoft/vscode/assets/900690/77578c54-67e4-404a-85b5-a3f2424115ae)
completed
GitLens hover is at top left corner ![image](https://github.com/microsoft/vscode/assets/900690/77578c54-67e4-404a-85b5-a3f2424115ae)
61
198728
SCM: dirty diff decorator sometimes shows lines as added when they are not actually added
2023-11-21 04:15:54+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
SCM: dirty diff decorator sometimes shows lines as added when they are not actually added <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/v...
460
198716
Clicking revert icon for deletion does nothing
2023-11-21 00:20:27+00:00
2023-11-21 14:24:13+00:00
Note that this is without any code folding or hidden regions
completed
Clicking revert icon for deletion does nothing Note that this is without any code folding or hidden regions
25
198700
Terminal hover overlay isn't in correct position
2023-11-20 18:55:23+00:00
2023-11-27 22:29:49+00:00
When hovering commands the bar on the left can be off. For this example it should be shifted up 1 line such that it starts on the line with the red A and ends 1 line above the red D: ![image](https://github.com/microsoft/vscode/assets/2193314/4ecc7e5c-c297-45cc-8841-04278be50575)
completed
Terminal hover overlay isn't in correct position When hovering commands the bar on the left can be off. For this example it should be shifted up 1 line such that it starts on the line with the red A and ends 1 line above the red D: ![image](https://github.com/microsoft/vscode/assets/2193314/4ecc7e5c-c297-45cc-8841-0...
105
198674
Glyph Widgets Operate On View Positions, Not Model Positions
2023-11-20 11:42:43+00:00
2023-11-21 06:25:00+00:00
[Monaco Editor Repro](https://microsoft.github.io/monaco-editor/playground.html?source=v0.45.0-dev-20231117#XQAAAAIDBgAAAAAAAABBqQkHQ5NjdMjwa-jY7SIQ9S7DNlzs5W-mwj0fe1ZCDRFc9ws9XQE0SJE1jc2VKxhaLFIw9vEWSxW3yscw9vveOAmRHEYw2pVmocjg2JTLAYRSDUpZuOkFaezs6BukOHFHluuzVCMzkZPlBGNrDEdrZWFK_vwi_52sicvusS-Tv1CK5wcEYboEZoVdvCdN9JFS...
completed
Glyph Widgets Operate On View Positions, Not Model Positions [Monaco Editor Repro](https://microsoft.github.io/monaco-editor/playground.html?source=v0.45.0-dev-20231117#XQAAAAIDBgAAAAAAAABBqQkHQ5NjdMjwa-jY7SIQ9S7DNlzs5W-mwj0fe1ZCDRFc9ws9XQE0SJE1jc2VKxhaLFIw9vEWSxW3yscw9vveOAmRHEYw2pVmocjg2JTLAYRSDUpZuOkFaezs6BukOHFHluu...
787
198669
Multi Diff Editor Revealing lines doesn't auto reveal after a threshold
2023-11-20 11:11:21+00:00
When pulling the bottom border of the top divider of a code block up, hidden lines appear which is nice. However, the amount of lines that can appear is limited to how high up the code block is in the editor. To reveal more lines I have to pull it up again and again... I think it should start auto revealing when pullin...
Multi Diff Editor Revealing lines doesn't auto reveal after a threshold When pulling the bottom border of the top divider of a code block up, hidden lines appear which is nice. However, the amount of lines that can appear is limited to how high up the code block is in the editor. To reveal more lines I have to pull it ...
157
198636
Prevent view shift when right clicking on the minimap
2023-11-19 22:16:54+00:00
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> Hi, When I try to disable the minimap by righ...
Prevent view shift when right clicking on the minimap <!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like....
239
198632
Some markdown files line changes are not shown in the editor
2023-11-19 19:15:25+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
Some markdown files line changes are not shown in the editor <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-an...
710
198612
Code cannot be read and edited using a screen reader in Android web version of VS code.
2023-11-19 07:30:50+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
Code cannot be read and edited using a screen reader in Android web version of VS code. <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vsc...
458
198608
"add to rec" removes comments from extensions-recommendations array in the `.json` file
2023-11-19 01:54:36+00:00
2023-11-30 14:52:06+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
completed
"add to rec" removes comments from extensions-recommendations array in the `.json` file <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vsc...
968
198582
cannot run the same task in different directories same time
2023-11-18 08:03:45+00:00
2024-02-29 21:54:17+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
completed
cannot run the same task in different directories same time <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and...
967
198581
[themes] Auto detect color scheme not working automatically
2023-11-18 07:37:09+00:00
Does this issue occur when all extensions are disabled?: Yes - VS Code Version: 1.84.2 (Universal) - OS Version: Darwin arm64 23.1.0 Steps to Reproduce: 1. In `settings.json` add `"window.autoDetectColorScheme": true` 2. Close VSC, change the theme and re-open VSC Notes: - It works when theme is changed ...
[themes] Auto detect color scheme not working automatically Does this issue occur when all extensions are disabled?: Yes - VS Code Version: 1.84.2 (Universal) - OS Version: Darwin arm64 23.1.0 Steps to Reproduce: 1. In `settings.json` add `"window.autoDetectColorScheme": true` 2. Close VSC, change the theme ...
133
198570
PWA interferes with rendering the WCO on Windows 11
2023-11-17 22:52:30+00:00
SteVen found the following issue on Windows 11 with VS Code Insiders: 1. Run VS Code as an Edge PWA. You can do this by navigating to https://vscode.dev and clicking on the extension button on the right side of the browser's top search bar. 2. Near the top-right corner of the VS Code PWA, in the top bar, there is a...
PWA interferes with rendering the WCO on Windows 11 SteVen found the following issue on Windows 11 with VS Code Insiders: 1. Run VS Code as an Edge PWA. You can do this by navigating to https://vscode.dev and clicking on the extension button on the right side of the browser's top search bar. 2. Near the top-right c...
149
198544
In Multi diff view action menu get's hide behind the file name
2023-11-17 17:23:16+00:00
Right click in the Multi diff view and see the action get's hide behind the file name line as well as the sidebar //cc @hediet ![image](https://github.com/microsoft/vscode/assets/50770619/0b379a35-8e96-497d-b836-8caa9d870e9f)
reopened
In Multi diff view action menu get's hide behind the file name Right click in the Multi diff view and see the action get's hide behind the file name line as well as the sidebar //cc @hediet ![image](https://github.com/microsoft/vscode/assets/50770619/0b379a35-8e96-497d-b836-8caa9d870e9f)
97
198541
Terminal sticky scroll should pass mouse wheel events through
2023-11-17 17:13:39+00:00
2024-02-28 22:26:45+00:00
Repro: 1. Enable terminal sticky scroll 2. Run some commands 3. Hover sticky scroll and use the mouse wheel, 🐛 no scrolling occurs
completed
Terminal sticky scroll should pass mouse wheel events through Repro: 1. Enable terminal sticky scroll 2. Run some commands 3. Hover sticky scroll and use the mouse wheel, 🐛 no scrolling occurs
46
198530
When all tests are hidden, the "Run All Tests" button is still enabled.
2023-11-17 15:18:57+00:00
2023-12-05 20:44:16+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
completed
When all tests are hidden, the "Run All Tests" button is still enabled. <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitt...
547
198520
Inline Chat Icon appears at the same time as debug session active line icon
2023-11-17 12:54:06+00:00
2023-11-20 20:22:52+00:00
Initially noticed by @sandy081 : <img width="780" alt="Screenshot 2023-11-17 at 13 53 45" src="https://github.com/microsoft/vscode/assets/61460952/2872145a-cb07-4a6e-9336-4bc156bf1747"> @aeschli
completed
Inline Chat Icon appears at the same time as debug session active line icon Initially noticed by @sandy081 : <img width="780" alt="Screenshot 2023-11-17 at 13 53 45" src="https://github.com/microsoft/vscode/assets/61460952/2872145a-cb07-4a6e-9336-4bc156bf1747"> @aeschli
100
198514
Linux integration test crash
2023-11-17 11:22:29+00:00
https://dev.azure.com/vscode/VSCode/_build/results?buildId=108752&view=results [crash-dump-linux-x64-integration-1.zip](https://github.com/microsoft/vscode/files/13390989/crash-dump-linux-x64-integration-1.zip)
Linux integration test crash https://dev.azure.com/vscode/VSCode/_build/results?buildId=108752&view=results [crash-dump-linux-x64-integration-1.zip](https://github.com/microsoft/vscode/files/13390989/crash-dump-linux-x64-integration-1.zip)
98
198460
Cloud Changes causes data loss. Should notify before applying changes.
2023-11-16 17:40:04+00:00
sorry not a real bug report, as I don't know how to repro, but a FYI. ## the problem: cloud changes caused dataloss because it restored stale data ## the setup: - I have a single dev machine, have cloud-changes turned on in VSCode. - I do not open my repository on any other computer (but do use VSCode o...
Cloud Changes causes data loss. Should notify before applying changes. sorry not a real bug report, as I don't know how to repro, but a FYI. ## the problem: cloud changes caused dataloss because it restored stale data ## the setup: - I have a single dev machine, have cloud-changes turned on in VSCode. -...
421
198451
Editor tab tooltips for TextDocumentContentProvider schemes have backslashes on Windows and don't show the scheme
2023-11-16 16:14:36+00:00
If I create a `TextDocumentContentProvider` for a custom scheme like this: ```ts context.subscriptions.push(vscode.workspace.registerTextDocumentContentProvider("my-super-scheme", { provideTextDocumentContent(uri, token): string { return `// Yay`; }, })); vscode.workspace.openTextDocument(vscode.Uri.parse(...
Editor tab tooltips for TextDocumentContentProvider schemes have backslashes on Windows and don't show the scheme If I create a `TextDocumentContentProvider` for a custom scheme like this: ```ts context.subscriptions.push(vscode.workspace.registerTextDocumentContentProvider("my-super-scheme", { provideTextDocumen...
284
198446
Terminal sticky scroll flickers
2023-11-16 15:30:45+00:00
Sorry, no real steps except for using the terminal and its sticky scroll at lot. There seems to be some condition that makes sticky scroll jump around. This doesn't reproduce reliable but often enough to be a pain. Please let me know what debug settings and logs there are to make this a good bug https://github.com/m...
reopened
Terminal sticky scroll flickers Sorry, no real steps except for using the terminal and its sticky scroll at lot. There seems to be some condition that makes sticky scroll jump around. This doesn't reproduce reliable but often enough to be a pain. Please let me know what debug settings and logs there are to make this a ...
115
198440
Terminal sticky scroll is showing for a single line empty prompt
2023-11-16 14:41:57+00:00
2023-11-16 21:31:20+00:00
Repro: 1. Open terminal 2. Ensure a single line pwsh prompt is used 3. Press enter to fill viewport, 🐛 the top line should not show sticky scroll as it just obscures the line underneath ![image](https://github.com/microsoft/vscode/assets/2193314/19e38abc-18b8-439d-9b15-7ce33de8bac3)
completed
Terminal sticky scroll is showing for a single line empty prompt Repro: 1. Open terminal 2. Ensure a single line pwsh prompt is used 3. Press enter to fill viewport, 🐛 the top line should not show sticky scroll as it just obscures the line underneath ![image](https://github.com/microsoft/vscode/assets/2193314/...
104
198437
Command nav highlights show an overview ruler decoration for every line
2023-11-16 14:36:07+00:00
2023-11-16 18:44:03+00:00
Repro: 1. Run a command with either a multi-line prompt, or a multi-line command 2. Press ctrl/cmd+up, 🐛 there are 2+ "cursor" lines in the overview ruler on the right ![image](https://github.com/microsoft/vscode/assets/2193314/35b0fa30-0559-4194-9ca0-8ea688002cc8)
completed
Command nav highlights show an overview ruler decoration for every line Repro: 1. Run a command with either a multi-line prompt, or a multi-line command 2. Press ctrl/cmd+up, 🐛 there are 2+ "cursor" lines in the overview ruler on the right ![image](https://github.com/microsoft/vscode/assets/2193314/35b0fa30-055...
112
198423
`provideRenameEdits` not called if `prepareRename` return `null` even if the provider is the only registered one.
2023-11-16 13:21:03+00:00
2023-11-16 15:26:05+00:00
Steps to Reproduce: 1. clone https://github.com/dbaeumer/renameBug.git 2. open in VS Code, build and run as an extension 3. In the debugged VS Code version open a text file 4. type some text 5. Execute Rename from the context menu Observe: the rename dialog opens, however the `provideRenameEdits` method on ...
completed
`provideRenameEdits` not called if `prepareRename` return `null` even if the provider is the only registered one. Steps to Reproduce: 1. clone https://github.com/dbaeumer/renameBug.git 2. open in VS Code, build and run as an extension 3. In the debugged VS Code version open a text file 4. type some text 5. Exe...
165
198420
Settings UI is completely blank
2023-11-16 12:51:21+00:00
2023-11-21 20:04:47+00:00
Type: <b>Bug</b> 1. Open VS Code (with or without extensions disabled, makes no difference) 2. Open File -> Preferences -> Settings 3. Observe blank UI with no actual settings in it. ![image](https://github.com/microsoft/vscode/assets/132438847/1dda7c03-ac17-4318-9ed3-41357ef0eb6b) If you leave the settings ...
completed
Settings UI is completely blank Type: <b>Bug</b> 1. Open VS Code (with or without extensions disabled, makes no difference) 2. Open File -> Preferences -> Settings 3. Observe blank UI with no actual settings in it. ![image](https://github.com/microsoft/vscode/assets/132438847/1dda7c03-ac17-4318-9ed3-41357ef0eb6...
684
198411
Seeing "Actual command not found, wanted to execute <command name>"
2023-11-16 11:24:23+00:00
2023-11-16 17:59:12+00:00
# Description I started seeing this error since yesterday, then remembered that I added this setting ``` "extensions.experimental.affinity": { "vscodevim.vim": 1 }, ``` trying to commit from scm view: ![Image](https://github.com/microsoft/vscode/assets/16353531/d8aa99b7-28aa-4f41-bbca-c3acf7110b...
completed
Seeing "Actual command not found, wanted to execute <command name>" # Description I started seeing this error since yesterday, then remembered that I added this setting ``` "extensions.experimental.affinity": { "vscodevim.vim": 1 }, ``` trying to commit from scm view: ![Image](https://github.com...
297
198407
Git Clone Repositiory can't use right click to paste.
2023-11-16 11:06:54+00:00
2023-12-13 16:59:56+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
not_planned
Git Clone Repositiory can't use right click to paste. <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Sugge...
498
198402
after upgrade interface language settings reset and can't change ui language
2023-11-16 10:30:52+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
after upgrade interface language settings reset and can't change ui language <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Su...
785
198397
Aux window - drag/drop puts new window on wrong display
2023-11-16 09:16:24+00:00
2023-11-16 11:36:09+00:00
Type: <b>Bug</b> My Windows 11 machine has 3 displays. The rightmost one is set as my main display (1). I put VS Code Insiders on the centre one (2). When I drag an editor tab and drop it onto display 2 or display 3 the aux window gets created at the leftmost edge of display 1. ![image](https://github.com/microso...
completed
Aux window - drag/drop puts new window on wrong display Type: <b>Bug</b> My Windows 11 machine has 3 displays. The rightmost one is set as my main display (1). I put VS Code Insiders on the centre one (2). When I drag an editor tab and drop it onto display 2 or display 3 the aux window gets created at the leftmost e...
243
198389
code lens for TypeScript should not show references for anonymous functions
2023-11-16 07:42:31+00:00
2023-11-20 22:08:01+00:00
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> For Anonymous functions code lens is displayed...
completed
code lens for TypeScript should not show references for anonymous functions <!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe t...
178
198373
can't set a breakpoint on the line due to inline chat decoration
2023-11-15 23:19:20+00:00
I want a breakpoint on this exact line and cannot click the gutter to add one ![Screenshot 2023-11-15 at 3 18 38 PM](https://github.com/microsoft/vscode/assets/29464607/c0dd24ae-e4c9-46ae-81a7-24d04cc769ea)
can't set a breakpoint on the line due to inline chat decoration I want a breakpoint on this exact line and cannot click the gutter to add one ![Screenshot 2023-11-15 at 3 18 38 PM](https://github.com/microsoft/vscode/assets/29464607/c0dd24ae-e4c9-46ae-81a7-24d04cc769ea)
100
198370
content of accessible terminal view udpated on dynamic data for inactive terminal
2023-11-15 23:08:43+00:00
2023-11-16 22:03:20+00:00
1. run a command which generates dynamic output in a terminal 2. split the terminal 3. with screen reader mode on, `alt+f2` 4. 🐛 the content of the terminal with dynamic output has taken over the accessible view
completed
content of accessible terminal view udpated on dynamic data for inactive terminal 1. run a command which generates dynamic output in a terminal 2. split the terminal 3. with screen reader mode on, `alt+f2` 4. 🐛 the content of the terminal with dynamic output has taken over the accessible view
63
198363
JSON Sort Document crashes in certain cases
2023-11-15 21:25:35+00:00
2023-12-04 14:30:43+00:00
Type: <b>Bug</b> 1. Open a new view and paste ```jsonc { "foo": {"a": "b",} } ``` 2. Trigger `JSON: Sort Document` from the Command Pallette Triggers an error dialog with `Request json/sort failed with message: Range#create called with invalid arguments[[object Object], [object Object], undefined, undef...
completed
JSON Sort Document crashes in certain cases Type: <b>Bug</b> 1. Open a new view and paste ```jsonc { "foo": {"a": "b",} } ``` 2. Trigger `JSON: Sort Document` from the Command Pallette Triggers an error dialog with `Request json/sort failed with message: Range#create called with invalid arguments[[objec...
223
198358
Terminal sticky scroll is has the wrong background color when dragged to editor
2023-11-15 20:55:53+00:00
2023-11-17 16:41:12+00:00
Repro: 1. Enable sticky scroll in terminal 2. Open a terminal 3. Drag the tab to the editor ![image](https://github.com/microsoft/vscode/assets/2193314/0c52dcce-e237-49c4-8515-bdde03a9ecd8)
completed
Terminal sticky scroll is has the wrong background color when dragged to editor Repro: 1. Enable sticky scroll in terminal 2. Open a terminal 3. Drag the tab to the editor ![image](https://github.com/microsoft/vscode/assets/2193314/0c52dcce-e237-49c4-8515-bdde03a9ecd8)
85
198352
Terminal sticky scroll is 1px too low
2023-11-15 20:22:50+00:00
2023-11-15 22:21:40+00:00
See the blue background coming through on top: ![image](https://github.com/microsoft/vscode/assets/2193314/a6088360-80d6-41e6-a0b5-e8adc3877aab)
completed
Terminal sticky scroll is 1px too low See the blue background coming through on top: ![image](https://github.com/microsoft/vscode/assets/2193314/a6088360-80d6-41e6-a0b5-e8adc3877aab)
67
198340
Right click copy paste in explorer pane is no longer working
2023-11-15 17:20:52+00:00
2023-11-15 19:11:52+00:00
- VS Code Version: ``` Version: 1.85.0-insider Commit: 54821ee1f14beca4866abd7de86175b4794b030d Date: 2023-11-14T12:46:44.247Z Electron: 25.9.4 ElectronBuildId: 25127168 Chromium: 114.0.5735.289 Node.js: 18.15.0 V8: 11.4.183.29-electron.0 OS: Linux x64 6.5.11-300.fc39.x86_64 snap ``` - OS Version: Wind...
completed
Right click copy paste in explorer pane is no longer working - VS Code Version: ``` Version: 1.85.0-insider Commit: 54821ee1f14beca4866abd7de86175b4794b030d Date: 2023-11-14T12:46:44.247Z Electron: 25.9.4 ElectronBuildId: 25127168 Chromium: 114.0.5735.289 Node.js: 18.15.0 V8: 11.4.183.29-electron.0 OS: Lin...
204
198336
“An external application wants to open [file] in Code” dialog does not remember “Allow opening local paths without asking” decision
2023-11-15 16:51:41+00:00
2023-11-22 19:57:45+00:00
Type: <b>Bug</b> Every time I try and open a file from say, a command line program, I get a prompt in Code saying: > An external application wants to open [file] in Code. Do you want to open this file or folder? Each time, I check the "Allow opening local paths without asking" and then click the "Yes" button...
completed
“An external application wants to open [file] in Code” dialog does not remember “Allow opening local paths without asking” decision Type: <b>Bug</b> Every time I try and open a file from say, a command line program, I get a prompt in Code saying: > An external application wants to open [file] in Code. Do you wa...
734
198325
Multi diff editor fails when having a deletion
2023-11-15 15:24:06+00:00
2023-11-23 12:07:50+00:00
* edit a couple of files * delete a file * open multi diff editor * 🐛 the editor fails to open, shows the error below on the console ``` ERR TypeError: Cannot read properties of null (reading 'scheme') at FileService.hasProvider (fileService.js:107:47) at UriIdentityService.asCanonicalUri (uriIdentity...
completed
Multi diff editor fails when having a deletion * edit a couple of files * delete a file * open multi diff editor * 🐛 the editor fails to open, shows the error below on the console ``` ERR TypeError: Cannot read properties of null (reading 'scheme') at FileService.hasProvider (fileService.js:107:47) at...
378
198322
Sparkle shows unconditionally
2023-11-15 15:05:00+00:00
2023-11-17 10:39:11+00:00
The editor sparkle shows unconditionally, e.g * in any editor, like the extensions editor * when a session is already active in the editor <img width="738" alt="Screenshot 2023-11-15 at 16 04 10" src="https://github.com/microsoft/vscode/assets/1794099/ad25ca90-9ba7-43c3-9d7c-eee900e19d28">
completed
Sparkle shows unconditionally The editor sparkle shows unconditionally, e.g * in any editor, like the extensions editor * when a session is already active in the editor <img width="738" alt="Screenshot 2023-11-15 at 16 04 10" src="https://github.com/microsoft/vscode/assets/1794099/ad25ca90-9ba7-43c3-9d7c-eee900...
107
198319
Sparkle Icon in Tab Bar
2023-11-15 14:56:50+00:00
2023-11-28 10:36:16+00:00
First of all, the sparkle currently shows in the tab bar for every file/view even if the action does not trigger the inline chat to open in some cases. For example, it shows in the settings editor and when it is pressed, nothing happens. Secondly, in my personal opinion, I find it somewhat excessive that the new def...
completed
Sparkle Icon in Tab Bar First of all, the sparkle currently shows in the tab bar for every file/view even if the action does not trigger the inline chat to open in some cases. For example, it shows in the settings editor and when it is pressed, nothing happens. Secondly, in my personal opinion, I find it somewhat ex...
173
198314
Terminal sticky scroll current command should not obscure output
2023-11-15 14:21:05+00:00
2023-11-15 15:48:47+00:00
Repro: 1. Enable terminal sticky scroll 2. Open a git repo 3. Run git log, 🐛 the commit line is obscured by sticky scroll which should not be showing at this point. ![image](https://github.com/microsoft/vscode/assets/2193314/482da542-30cc-4d9c-8bc8-949704cd82f4)
completed
Terminal sticky scroll current command should not obscure output Repro: 1. Enable terminal sticky scroll 2. Open a git repo 3. Run git log, 🐛 the commit line is obscured by sticky scroll which should not be showing at this point. ![image](https://github.com/microsoft/vscode/assets/2193314/482da542-30cc-4d9c-8b...
98
198313
Terminal sticky scroll should re-focus the terminal after being clicked
2023-11-15 14:19:04+00:00
2023-11-15 14:49:09+00:00
Repro: 1. Enable terminal sticky scroll 2. Run a command 3. Click sticky scroll 4. Start typing a new command, 🐛 nothing happens
completed
Terminal sticky scroll should re-focus the terminal after being clicked Repro: 1. Enable terminal sticky scroll 2. Run a command 3. Click sticky scroll 4. Start typing a new command, 🐛 nothing happens
48
198304
Quick chat should not listen to main container changes only
2023-11-15 13:36:03+00:00
Code: https://github.com/microsoft/vscode/blob/43b0558cc1eec2528a9a1b9ee1c7a559823bda31/src/vs/workbench/contrib/chat/browser/chatQuick.ts#L249 https://github.com/microsoft/vscode/blob/e6bd28f57f446006a60c98e794eca7e0d0c102c2/src/vs/workbench/contrib/chat/browser/chatQuick.ts#L245 Quick chat can be in any floa...
Quick chat should not listen to main container changes only Code: https://github.com/microsoft/vscode/blob/43b0558cc1eec2528a9a1b9ee1c7a559823bda31/src/vs/workbench/contrib/chat/browser/chatQuick.ts#L249 https://github.com/microsoft/vscode/blob/e6bd28f57f446006a60c98e794eca7e0d0c102c2/src/vs/workbench/contrib/cha...
248
198302
Extension View: Theming Issue
2023-11-15 13:33:08+00:00
Theme: Light+. Happens when a disabled extension is selecte.d ![Image](https://github.com/microsoft/vscode/assets/2931520/ac588845-457f-4ec2-920a-abf3914fe9cb)
Extension View: Theming Issue Theme: Light+. Happens when a disabled extension is selecte.d ![Image](https://github.com/microsoft/vscode/assets/2931520/ac588845-457f-4ec2-920a-abf3914fe9cb)
72
198301
Test explorer input uses wrong background color
2023-11-15 13:30:17+00:00
2023-12-13 01:29:26+00:00
* open test explorer * notice that the input has the wrong background color, e.g it has two background colors <img width="455" alt="Screenshot 2023-11-15 at 14 29 05" src="https://github.com/microsoft/vscode/assets/1794099/7549a3be-fdec-43a6-ba17-ea94efe9e716">
completed
Test explorer input uses wrong background color * open test explorer * notice that the input has the wrong background color, e.g it has two background colors <img width="455" alt="Screenshot 2023-11-15 at 14 29 05" src="https://github.com/microsoft/vscode/assets/1794099/7549a3be-fdec-43a6-ba17-ea94efe9e716">
106
198293
focusedView == 'workbench.panel.chat.view.copilot' is true even when panel chat is not visible
2023-11-15 12:07:23+00:00
I have panel chat in my secondary sidebar, which I can toggle using `workbench.action.toggleAuxiliaryBar` (cmd+option+b). Toggling away the sidebar leaves the `focusedView = 'workbench.panel.chat.view.copilot'`. That's a bug, right? https://github.com/microsoft/vscode/assets/16353531/52e9e6f4-b9ec-4e43-a8ae-becc0c7...
focusedView == 'workbench.panel.chat.view.copilot' is true even when panel chat is not visible I have panel chat in my secondary sidebar, which I can toggle using `workbench.action.toggleAuxiliaryBar` (cmd+option+b). Toggling away the sidebar leaves the `focusedView = 'workbench.panel.chat.view.copilot'`. That's a bug,...
155
198278
Terminal's sticky scroll/shell integration doesn't handle cls well
2023-11-15 08:02:58+00:00
2024-02-28 23:42:02+00:00
- VS Code Version: 1.85.0-insider - OS Version: Windows11 enable sticky scroll in terminal using "terminal.integrated.stickyScroll.enabled": true there are couple of issues I observed sometimes the output of prev. command get's stick along with the new command as shown in below image(cmd: git status) ![image](ht...
completed
Terminal's sticky scroll/shell integration doesn't handle cls well - VS Code Version: 1.85.0-insider - OS Version: Windows11 enable sticky scroll in terminal using "terminal.integrated.stickyScroll.enabled": true there are couple of issues I observed sometimes the output of prev. command get's stick along with th...
205
198267
Screen wiggling when adding breakpoint
2023-11-15 04:14:48+00:00
2024-01-22 15:18:31+00:00
- Select some code so the sparkle button shows up - Press F9 to add a breakpoint - The screen shifts as the breakpoint appears then replaces the sparkle icon a moment later ![Recording 2023-11-14 at 22 13 05](https://github.com/microsoft/vscode/assets/323878/652add2f-439d-420d-b25a-40ee93a090bc)
completed
Screen wiggling when adding breakpoint - Select some code so the sparkle button shows up - Press F9 to add a breakpoint - The screen shifts as the breakpoint appears then replaces the sparkle icon a moment later ![Recording 2023-11-14 at 22 13 05](https://github.com/microsoft/vscode/assets/323878/652add2f-439d-420...
104
198359
fail to display the total counts of search results in jupyter
2023-11-15 03:56:26+00:00
## Environment data - VS Code version: 1.85.0-insider - Jupyter Extension version (available under the Extensions sidebar): v2023.11.1003202024 - Python Extension version (available under the Extensions sidebar): v2023.21.13181010 - OS (Windows | Mac | Linux distro) and version: Linux - Python and/...
fail to display the total counts of search results in jupyter ## Environment data - VS Code version: 1.85.0-insider - Jupyter Extension version (available under the Extensions sidebar): v2023.11.1003202024 - Python Extension version (available under the Extensions sidebar): v2023.21.13181010 - OS (Wind...
342
198251
Settings UI enum dropdown can show itself in the top left of the window
2023-11-14 20:58:07+00:00
2023-11-15 18:17:27+00:00
1. Click the dropdown caret 2. Hover over an enum value 3. :bug: dropdown appears in top left <img width="574" alt="image" src="https://github.com/microsoft/vscode/assets/30305945/3eb97c23-27ac-4c41-a2a4-f6404421ec88">
completed
Settings UI enum dropdown can show itself in the top left of the window 1. Click the dropdown caret 2. Hover over an enum value 3. :bug: dropdown appears in top left <img width="574" alt="image" src="https://github.com/microsoft/vscode/assets/30305945/3eb97c23-27ac-4c41-a2a4-f6404421ec88">
100
198246
Terminal sticky scroll cause brick the terminal
2023-11-14 20:41:01+00:00
2023-11-14 20:58:59+00:00
When I run several git commands in quick succession I see this: ![image](https://github.com/microsoft/vscode/assets/2193314/d72a7a50-4b6a-4bed-aac0-01e714a3f70d) Code: https://github.com/microsoft/vscode/blob/c9a90f9b4ef23f12c775142b8a807a18a8f310fe/src/vs/workbench/contrib/terminalContrib/stickyScroll/browser...
completed
Terminal sticky scroll cause brick the terminal When I run several git commands in quick succession I see this: ![image](https://github.com/microsoft/vscode/assets/2193314/d72a7a50-4b6a-4bed-aac0-01e714a3f70d) Code: https://github.com/microsoft/vscode/blob/c9a90f9b4ef23f12c775142b8a807a18a8f310fe/src/vs/workbe...
181
198245
Terminal command navigation sticky scroll should scroll to partial commands if the executed marker exists
2023-11-14 20:33:58+00:00
2023-11-15 14:43:35+00:00
Repro: 1. Enable terminal sticky scroll 2. Run git diff, notice git diff shows in sticky scroll 3. ctrl/cmd+up, 🐛 git diff is skipped and it goes to the command before that
completed
Terminal command navigation sticky scroll should scroll to partial commands if the executed marker exists Repro: 1. Enable terminal sticky scroll 2. Run git diff, notice git diff shows in sticky scroll 3. ctrl/cmd+up, 🐛 git diff is skipped and it goes to the command before that
70
198233
`Views and more actions` button uses aria role of `presentation` but shouldn't
2023-11-14 19:18:43+00:00
2023-11-14 19:45:18+00:00
Elements marked as presentational should not have global ARIA or tabindex to ensure all screen readers ignore them (presentation-role-conflict - https://dequeuniversity.com/rules/axe/4.7/presentation-role-conflict?application=msftAI) In this case, we want screen readers to be aware of them, so we need to change the ...
completed
`Views and more actions` button uses aria role of `presentation` but shouldn't Elements marked as presentational should not have global ARIA or tabindex to ensure all screen readers ignore them (presentation-role-conflict - https://dequeuniversity.com/rules/axe/4.7/presentation-role-conflict?application=msftAI) In t...
116
198228
button contains empty `aria-checked`
2023-11-14 18:05:49+00:00
2023-11-14 18:30:16+00:00
whether or not a button is checkable, it currently has `aria-checked`, which is an accessibility issue and violates accessibility standards.
completed
button contains empty `aria-checked` whether or not a button is checkable, it currently has `aria-checked`, which is an accessibility issue and violates accessibility standards.
47
198210
Git - error while synching changes
2023-11-14 13:00:27+00:00
Steps to Reproduce: 1. Launch VS Code, and open a folder/workspace that contains a git repository 2. Ensure that auto fetch is disabled, and `git.rebaseWhenSync` is disabled 3. Make a change locally and commit the change 4. Make a change in the remote, but do not fetch/pull it 5. Switch to VS Code and click the...
Git - error while synching changes Steps to Reproduce: 1. Launch VS Code, and open a folder/workspace that contains a git repository 2. Ensure that auto fetch is disabled, and `git.rebaseWhenSync` is disabled 3. Make a change locally and commit the change 4. Make a change in the remote, but do not fetch/pull it ...
341
198206
staged changes are always collapsed
2023-11-14 12:36:31+00:00
2023-12-01 15:39:42+00:00
Type: <b>Bug</b> ` "git.alwaysShowStagedChangesResourceGroup": true` anytime i stage changes, the staged changes block of the SCM is collapsed and requires me to manually expand it. previously it would be expanded. VS Code version: Code - Insiders 1.85.0-insider (94959e85502687ec77e23eb0d4d4b1a827b919af, 2...
completed
staged changes are always collapsed Type: <b>Bug</b> ` "git.alwaysShowStagedChangesResourceGroup": true` anytime i stage changes, the staged changes block of the SCM is collapsed and requires me to manually expand it. previously it would be expanded. VS Code version: Code - Insiders 1.85.0-insider (94959e...
664
198204
Add tab title display type configuration
2023-11-14 12:20:51+00:00
2023-11-16 14:59:05+00:00
<!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> When set `workbench.editor.tabSizing` to fixed...
completed
Add tab title display type configuration <!-- ⚠️⚠️ Do Not Delete This! feature_request_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- Please search existing issues to avoid creating duplicates. --> <!-- Describe the feature you'd like. --> When ...
192
198186
Multi diff editor doesn't support horizontal scrolling
2023-11-14 08:49:04+00:00
2023-11-16 17:33:09+00:00
* open multi diff editor * try to scroll horizontally * not possible
completed
Multi diff editor doesn't support horizontal scrolling * open multi diff editor * try to scroll horizontally * not possible
26
198185
Toggling hidden ranges nukes scroll position
2023-11-14 08:48:21+00:00
* open diff editor * scroll to some changes * enable "hide unchanged regions" * the scroll position is lost
Toggling hidden ranges nukes scroll position * open diff editor * scroll to some changes * enable "hide unchanged regions" * the scroll position is lost
39
198183
Code block contains unexpected leading and trailing lines
2023-11-14 06:54:16+00:00
2023-11-15 20:03:06+00:00
Type: <b>Bug</b> Install the latest version of VSCode Insiders, create a markdown file with code blocks and preview it. There are some weird elements appearing in the first and last rows and I don't know how to remove them. ![image](https://github.com/microsoft/vscode/assets/37477603/3074d8f7-e39f-41f7-9953-15d3...
completed
Code block contains unexpected leading and trailing lines Type: <b>Bug</b> Install the latest version of VSCode Insiders, create a markdown file with code blocks and preview it. There are some weird elements appearing in the first and last rows and I don't know how to remove them. ![image](https://github.com/mic...
982
198176
Progress bar is not below editor title anymore
2023-11-14 04:44:03+00:00
2023-11-15 09:08:14+00:00
See: ![Recording 2023-11-14 at 05 43 21](https://github.com/microsoft/vscode/assets/900690/85f059d3-02a6-42f3-86c6-0d490351e397)
completed
Progress bar is not below editor title anymore See: ![Recording 2023-11-14 at 05 43 21](https://github.com/microsoft/vscode/assets/900690/85f059d3-02a6-42f3-86c6-0d490351e397)
67
198174
Search input box validation message positioned in correctly
2023-11-14 04:13:38+00:00
2023-11-17 10:53:35+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
not_planned
Search input box validation message positioned in correctly <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and...
370
198173
Input box cannot be focused using TalkBack screen reader in web version of vscode in Android operating system
2023-11-14 04:10:56+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
Input box cannot be focused using TalkBack screen reader in web version of vscode in Android operating system <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://gi...
411
198159
Broken full-page search result navigation for multiple folder directories of the same name in a workspace
2023-11-13 22:34:05+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
Broken full-page search result navigation for multiple folder directories of the same name in a workspace <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github...
689
198115
`explorer.fileNesting.expand` ignored for items with `capture` and wildcard usage
2023-11-13 14:06:04+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
`explorer.fileNesting.expand` ignored for items with `capture` and wildcard usage <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wi...
609
198093
Cycling Through Suggestions Does Not Always Work
2023-11-13 10:34:41+00:00
2023-11-13 10:59:16+00:00
type `es` on 336 of https://github.com/microsoft/vscode/blob/025d763b7c1a525ce5cd24c62ca9f9a0291a6951/build/azure-pipelines/common/prss.ts#L335 https://github.com/microsoft/vscode/assets/2931520/484a08ad-4f25-411d-ba3b-0df0ca38a0cf Inline Completions: ![Image](https://github.com/microsoft/vscode/assets/29315...
completed
Cycling Through Suggestions Does Not Always Work type `es` on 336 of https://github.com/microsoft/vscode/blob/025d763b7c1a525ce5cd24c62ca9f9a0291a6951/build/azure-pipelines/common/prss.ts#L335 https://github.com/microsoft/vscode/assets/2931520/484a08ad-4f25-411d-ba3b-0df0ca38a0cf Inline Completions: ![Image]...
233
198056
workbench.editor.showTabs incorrect resource scope error
2023-11-12 19:22:20+00:00
2023-11-30 08:50:49+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
completed
workbench.editor.showTabs incorrect resource scope error <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Su...
672
198051
memory leak in menubar
2023-11-12 18:48:29+00:00
2023-12-21 00:15:36+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
completed
memory leak in menubar <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search exis...
606
198045
Bad escaping of path for `command.revealFileInOS`
2023-11-12 15:10:30+00:00
2024-01-11 14:04:57+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
completed
Bad escaping of path for `command.revealFileInOS` <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestio...
659
198044
Extension Development: console.debug always logs twice (console.log does not)
2023-11-12 14:14:38+00:00
2023-12-06 20:51:38+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
completed
Extension Development: console.debug always logs twice (console.log does not) <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/S...
430
198021
In inline diff view of files with >= 1000 lines, the last digits of the left line numbers are sometimes truncated
2023-11-11 22:53:33+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
In inline diff view of files with >= 1000 lines, the last digits of the left line numbers are sometimes truncated <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https...
636
198017
VS code fails to revert back from full-screen mode properly on Ubuntu 22.04.3 LTS using xmonad as default wm
2023-11-11 20:03:07+00:00
<!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://github.com/microsoft/vscode/wiki/Submitting-Bugs-and-Suggestions --> <!-- 🔎 Search existing issues to avoid cr...
VS code fails to revert back from full-screen mode properly on Ubuntu 22.04.3 LTS using xmonad as default wm <!-- ⚠️⚠️ Do Not Delete This! bug_report_template ⚠️⚠️ --> <!-- Please read our Rules of Conduct: https://opensource.microsoft.com/codeofconduct/ --> <!-- 🕮 Read our guide about submitting issues: https://git...
337
198012
Sometimes loading into a terminal doesn't show the right sticky scroll result
2023-11-11 17:38:52+00:00
Before: ![image](https://github.com/microsoft/vscode/assets/2193314/a06b3afc-1316-401f-8bc8-9b4ac2271092) After: ![image](https://github.com/microsoft/vscode/assets/2193314/6e7981dc-af23-440f-b08b-dadfb2de1134) After scrolling once it's the same as before
reopened
Sometimes loading into a terminal doesn't show the right sticky scroll result Before: ![image](https://github.com/microsoft/vscode/assets/2193314/a06b3afc-1316-401f-8bc8-9b4ac2271092) After: ![image](https://github.com/microsoft/vscode/assets/2193314/6e7981dc-af23-440f-b08b-dadfb2de1134) After scrolling onc...
125
198010
Keep sticky scroll around for commands that have been trimmed from scrollbar
2023-11-11 17:26:24+00:00
Currently when a long command is run such that scrollback is filled and the origlnal command scrolled off the terminal, sticky scroll will hide completely. It would be nice if we kept the sticky scroll around even though the original lines no longer exist. Repro: 1. Set `terminal.integrated.scrollback` to 100 2....
Keep sticky scroll around for commands that have been trimmed from scrollbar Currently when a long command is run such that scrollback is filled and the origlnal command scrolled off the terminal, sticky scroll will hide completely. It would be nice if we kept the sticky scroll around even though the original lines no ...
163
198008
Multi-line prompts and commands at the very top don't play nicely with sticky scroll
2023-11-11 17:19:33+00:00
2023-11-13 19:14:10+00:00
Sticky scroll for the command above should not show here because the top line is on the next command (`git st`) ![image](https://github.com/microsoft/vscode/assets/2193314/77abf4ec-0b25-4c0c-a6ad-96cba917686b)
completed
Multi-line prompts and commands at the very top don't play nicely with sticky scroll Sticky scroll for the command above should not show here because the top line is on the next command (`git st`) ![image](https://github.com/microsoft/vscode/assets/2193314/77abf4ec-0b25-4c0c-a6ad-96cba917686b)
99