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
|
---|---|---|---|---|---|---|---|
213618
|
accessibility.signalOptions.delays not user friendly
|
2024-05-28 07:24:24+00:00
|
2024-06-03 18:22:32+00:00
|
Testing #213344
Right now the structure of accessibility.signalOptions.delays settings is sort of leaking your implementation. It has a complex structure, and because of that is not shown in the settings editor, but only in the settings.json.
Can we simplify the structure of this setting so the settings UI editor supports showing it?
|
completed
|
accessibility.signalOptions.delays not user friendly Testing #213344
Right now the structure of accessibility.signalOptions.delays settings is sort of leaking your implementation. It has a complex structure, and because of that is not shown in the settings editor, but only in the settings.json.
Can we simplify the structure of this setting so the settings UI editor supports showing it?
| 95 |
213615
|
Closing accessibility help view should always properly return focus
|
2024-05-28 07:07:53+00:00
|
Testing #213342
Closing accessibility help view should always properly return focus. Here's an example when that is not the case:
1. Have a focus in the comments
2. Alt + F2 to move focus to accessible view
3. `esc` to close
4. focus is not returned to the comment where my focus was when I triggered the accessible view ๐
|
Closing accessibility help view should always properly return focus Testing #213342
Closing accessibility help view should always properly return focus. Here's an example when that is not the case:
1. Have a focus in the comments
2. Alt + F2 to move focus to accessible view
3. `esc` to close
4. focus is not returned to the comment where my focus was when I triggered the accessible view ๐
| 90 |
||
213614
|
Inline chat broken rendering when using accessibility mode
|
2024-05-28 06:59:56+00:00
|
2024-05-29 10:27:45+00:00
|
1. Enable accessibility mode
1. New empty file
2. `Cmd + i` to open inline chat
3. "Write sorting function"
4. Inline chat has broken rendering
I can repro 100%.
Looks like the scroll is off.

|
completed
|
Inline chat broken rendering when using accessibility mode 1. Enable accessibility mode
1. New empty file
2. `Cmd + i` to open inline chat
3. "Write sorting function"
4. Inline chat has broken rendering
I can repro 100%.
Looks like the scroll is off.

| 112 |
213598
|
Move Line Up and Move Line Down breaks indentation in Javascript/Typescript files
|
2024-05-27 22:52:23+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.1 (latest)
- OS Version: Windows 10 (64-bit)
Steps to Reproduce:
1. Install VSCode
2. Open a new **Javascript** or **TypeScript** file
3. Paste the following code into the editor:
```js
let foo = Math.floor(Math.random() * 10);
console.log("MOVING LINE");
switch(foo) {
case 0:
case 1:
case 2:
console.log("hello");
break;
case 3:
case 4:
case 5:
console.log("hi");
break;
case 6:
case 7:
case 8:
case 9:
console.log("hey");
break;
}
```
4) Move the cursor to line 2 (i.e. `console.log("MOVING LINE")`)
5) Hold down the `Alt` key (and keep it held) and press `DownArrow` many times to move line 2 down through the whole file.
6) Observe that the indentation has become a mess:
```js
let foo = Math.floor(Math.random() * 10);
switch(foo) {
case 0:
case 1:
case 2:
console.log("hello");
break;
case 3:
case 4:
case 5:
console.log("hi");
break;
case 6:
case 7:
case 8:
case 9:
console.log("hey");
break;
}
console.log("MOVING LINE");
```
What was expected is for the indentation to match the initial code snippet's indentation. Only the line that is being moved should have its indentation changed, not the rest of the file. Instead the existing indentation is messed up as seen above.
https://github.com/microsoft/vscode/assets/22565232/00bb368e-9579-4ef6-9472-a6d4f6f23b7f
This happens in a fresh installation of VSCode, and is not fixed in the Insiders release.
|
reopened
|
Move Line Up and Move Line Down breaks indentation in Javascript/Typescript files <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.1 (latest)
- OS Version: Windows 10 (64-bit)
Steps to Reproduce:
1. Install VSCode
2. Open a new **Javascript** or **TypeScript** file
3. Paste the following code into the editor:
```js
let foo = Math.floor(Math.random() * 10);
console.log("MOVING LINE");
switch(foo) {
case 0:
case 1:
case 2:
console.log("hello");
break;
case 3:
case 4:
case 5:
console.log("hi");
break;
case 6:
case 7:
case 8:
case 9:
console.log("hey");
break;
}
```
4) Move the cursor to line 2 (i.e. `console.log("MOVING LINE")`)
5) Hold down the `Alt` key (and keep it held) and press `DownArrow` many times to move line 2 down through the whole file.
6) Observe that the indentation has become a mess:
```js
let foo = Math.floor(Math.random() * 10);
switch(foo) {
case 0:
case 1:
case 2:
console.log("hello");
break;
case 3:
case 4:
case 5:
console.log("hi");
break;
case 6:
case 7:
case 8:
case 9:
console.log("hey");
break;
}
console.log("MOVING LINE");
```
What was expected is for the indentation to match the initial code snippet's indentation. Only the line that is being moved should have its indentation changed, not the rest of the file. Instead the existing indentation is messed up as seen above.
https://github.com/microsoft/vscode/assets/22565232/00bb368e-9579-4ef6-9472-a6d4f6f23b7f
This happens in a fresh installation of VSCode, and is not fixed in the Insiders release.
| 756 |
|
213576
|
Enabling Auto update on an extension is not persisted
|
2024-05-27 15:20:18+00:00
|
2024-05-27 15:38:09+00:00
|
Steps to Reproduce:
1. Disable Extension Auto Updates (Set to None)
2. Install an extension
3. Enable **Auto Update All (From Publisher)** of that extension.
4. From the CLI: Install an older version of that extension `code-insider install-extension <pub.name@old-version>`
5. Open the extension in the editor and see Auto Update checkbox is disabled
6. Enable the Auto Update, close and reopen the editor
๐ checkbox is disabled.
|
completed
|
Enabling Auto update on an extension is not persisted Steps to Reproduce:
1. Disable Extension Auto Updates (Set to None)
2. Install an extension
3. Enable **Auto Update All (From Publisher)** of that extension.
4. From the CLI: Install an older version of that extension `code-insider install-extension <pub.name@old-version>`
5. Open the extension in the editor and see Auto Update checkbox is disabled
6. Enable the Auto Update, close and reopen the editor
๐ checkbox is disabled.
| 122 |
213563
|
Re-run request doesn't undo current changes
|
2024-05-27 14:13:44+00:00
|
2024-05-27 14:32:46+00:00
|
* make an inline chat request that changes code
* select the re-generate action
* :bug: the previous changes aren't undone
|
completed
|
Re-run request doesn't undo current changes * make an inline chat request that changes code
* select the re-generate action
* :bug: the previous changes aren't undone
| 43 |
214313
|
Copying links does not seem to work
|
2024-05-27 12:33:56+00:00
|

...after clicking on "Copy", the clipboard remains unchanged.
|
Copying links does not seem to work 
...after clicking on "Copy", the clipboard remains unchanged.
| 99 |
||
213548
|
Unable to open `settings.json` file when editor group is inactive
|
2024-05-27 12:07:59+00:00
|
We added a setting `Always Show Editor Actions` (https://github.com/microsoft/vscode/issues/209962) which allows showing editor actions of inactive groups. When the settings editor is in an inactive editor group and a user presses the `Open Settings (JSON)` button, nothing happens. The command probably just checks if the active editor is a Settings Editor and does not use the commands arguments to find the proper editor.

|
Unable to open `settings.json` file when editor group is inactive We added a setting `Always Show Editor Actions` (https://github.com/microsoft/vscode/issues/209962) which allows showing editor actions of inactive groups. When the settings editor is in an inactive editor group and a user presses the `Open Settings (JSON)` button, nothing happens. The command probably just checks if the active editor is a Settings Editor and does not use the commands arguments to find the proper editor.

| 169 |
||
213526
|
Performance editor is broken
|
2024-05-27 06:57:07+00:00
|
2024-05-27 07:51:11+00:00
|
* F1 > Startup Performance
* ๐ it just shows loading, console shows error
```
ERR LoaderEventType is not defined: ReferenceError: LoaderEventType is not defined
at LoaderStats.get (vscode-file://vscode-app/Users/jrieken/Code/vscode/out/vs/base/common/amd.js:49:26)
at vscode-file://vscode-app/Users/jrieken/Code/vscode/out/vs/workbench/contrib/performance/browser/perfviewEditor.js:100:53
```
|
completed
|
Performance editor is broken * F1 > Startup Performance
* ๐ it just shows loading, console shows error
```
ERR LoaderEventType is not defined: ReferenceError: LoaderEventType is not defined
at LoaderStats.get (vscode-file://vscode-app/Users/jrieken/Code/vscode/out/vs/base/common/amd.js:49:26)
at vscode-file://vscode-app/Users/jrieken/Code/vscode/out/vs/workbench/contrib/performance/browser/perfviewEditor.js:100:53
```
| 149 |
213452
|
Timeline fed by multiple providers can fail to page correctly
|
2024-05-25 09:32:17+00:00
|
2024-06-17 20:48:29+00:00
|
Type: <b>Bug</b>
I found this when testing the paging of two TimelineProviders I'm adding to an extension.
For testing I set `"timeline.pageSize": 4`. Each provider has 5 `TimelineItem`s to return, and the `timestamp`s from each provider do not interleave with the other's.
At first the timeline populates correctly with 4 items (all from the same provider), followed by "Load more".
Clicking "Load more" correctly appends the 5th item from the first provider followed by 3 from the second, then "Load more".
But clicking "Load more" now removes the 3 items from the second provider.
I will submit a PR and also try to create a simple repro extension.
VS Code version: Code - Insiders 1.90.0-insider (b9fa819edd893c590b28f3a09b75a81513e12fb9, 2024-05-24T17:21:19.268Z)
OS version: Windows_NT x64 10.0.22631
Modes:
<!-- generated by issue reporter -->
|
completed
|
Timeline fed by multiple providers can fail to page correctly
Type: <b>Bug</b>
I found this when testing the paging of two TimelineProviders I'm adding to an extension.
For testing I set `"timeline.pageSize": 4`. Each provider has 5 `TimelineItem`s to return, and the `timestamp`s from each provider do not interleave with the other's.
At first the timeline populates correctly with 4 items (all from the same provider), followed by "Load more".
Clicking "Load more" correctly appends the 5th item from the first provider followed by 3 from the second, then "Load more".
But clicking "Load more" now removes the 3 items from the second provider.
I will submit a PR and also try to create a simple repro extension.
VS Code version: Code - Insiders 1.90.0-insider (b9fa819edd893c590b28f3a09b75a81513e12fb9, 2024-05-24T17:21:19.268Z)
OS version: Windows_NT x64 10.0.22631
Modes:
<!-- generated by issue reporter -->
| 273 |
213424
|
Color theme preview not working with `"window.systemColorTheme": "auto"`
|
2024-05-24 20:35:20+00:00
|
2024-05-27 11:36: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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.90.0-insider (e82e806f172f30aecb0e6bb04c01f37780c16f22)
- OS Version: macOS Sonoma 14.5
Steps to Reproduce:
1. Set the `window.systemColorTheme` setting to `auto`.
2. Open "Preferences: Color Theme" in the command palette.
3. If a dark theme is enabled, previews for light themes aren't working and vice versa. The preview for the selected theme is shown for a fraction of a second and immediately changed back to the enabled theme (see the video below).
https://github.com/microsoft/vscode/assets/1312807/311900ea-899f-41fd-83a4-e385a38c887d
|
completed
|
Color theme preview not working with `"window.systemColorTheme": "auto"` <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.90.0-insider (e82e806f172f30aecb0e6bb04c01f37780c16f22)
- OS Version: macOS Sonoma 14.5
Steps to Reproduce:
1. Set the `window.systemColorTheme` setting to `auto`.
2. Open "Preferences: Color Theme" in the command palette.
3. If a dark theme is enabled, previews for light themes aren't working and vice versa. The preview for the selected theme is shown for a fraction of a second and immediately changed back to the enabled theme (see the video below).
https://github.com/microsoft/vscode/assets/1312807/311900ea-899f-41fd-83a4-e385a38c887d
| 500 |
213420
|
order of accessibility help configure keybinding hint is confusing
|
2024-05-24 19:56:53+00:00
|
2024-05-24 20:04:38+00:00
|
@jooyoungseo pointed out that the order of the keybinding hint in the accessibility help dialog is confusing. For example, "Focus Sticky Scroll, configure a keybinding (Option+K) to focus the currently nested scopes." We should place the hint at the end instead
<img width="531" alt="Screenshot 2024-05-24 at 12 55 20โฏPM" src="https://github.com/microsoft/vscode/assets/29464607/5f4a02a9-90e3-4ec0-895c-039495a5a248">
template โ ๏ธโ ๏ธ -->
|
completed
|
order of accessibility help configure keybinding hint is confusing @jooyoungseo pointed out that the order of the keybinding hint in the accessibility help dialog is confusing. For example, "Focus Sticky Scroll, configure a keybinding (Option+K) to focus the currently nested scopes." We should place the hint at the end instead
<img width="531" alt="Screenshot 2024-05-24 at 12 55 20โฏPM" src="https://github.com/microsoft/vscode/assets/29464607/5f4a02a9-90e3-4ec0-895c-039495a5a248">
template โ ๏ธโ ๏ธ -->
| 161 |
213411
|
`signalOptions` properties are not auto-populated in settings editor
|
2024-05-24 19:33:23+00:00
|
2024-05-24 20:47:49+00:00
|
1. type `accessibility.signalOptions` into your `settings.json` file
2. the default values aren't filled in
|
completed
|
`signalOptions` properties are not auto-populated in settings editor 1. type `accessibility.signalOptions` into your `settings.json` file
2. the default values aren't filled in
| 49 |
213382
|
Code blocks not rendered
|
2024-05-24 10:52:20+00:00
|
2024-05-24 16:30:58+00:00
|
* todays insiders `e82e806f172f30aecb0e6bb04c01f37780c16f22`
* ask chat so that it responds with code
* the code blocks aren't rendered but appears as html-syntax
<img width="779" alt="Screenshot 2024-05-24 at 12 50 54" src="https://github.com/microsoft/vscode/assets/1794099/2dfec7f5-f6c2-49b1-9bb5-7fec542f1fe5">
|
completed
|
Code blocks not rendered * todays insiders `e82e806f172f30aecb0e6bb04c01f37780c16f22`
* ask chat so that it responds with code
* the code blocks aren't rendered but appears as html-syntax
<img width="779" alt="Screenshot 2024-05-24 at 12 50 54" src="https://github.com/microsoft/vscode/assets/1794099/2dfec7f5-f6c2-49b1-9bb5-7fec542f1fe5">
| 138 |
213367
|
Uncaught TypeError: Cannot read properties of null (reading 'getFullModelRange')
|
2024-05-24 07:50:21+00:00
|
2024-07-09 10:05:47+00:00
|
```javascript
TypeError: Cannot read properties of null (reading 'getFullModelRange')
at c.l in src/vs/editor/contrib/find/browser/findModel.ts:175:16
at <anonymous> in src/vs/editor/contrib/find/browser/findModel.ts:499:32
at Array.map (<anonymous>)
at c.y in src/vs/editor/contrib/find/browser/findModel.ts:498:53
at c.n in src/vs/editor/contrib/find/browser/findModel.ts:206:28
at x.a in src/vs/editor/contrib/find/browser/findModel.ts:100:70
at x.h in out/vs/workbench/workbench.desktop.main.js:152:20100
at x.g in src/vs/base/common/async.ts:1017:9
```
[Go to Errors Site](https://errors.code.visualstudio.com/card?ch=dc96b837cf6bb4af9cd736aa3af08cf8279f7685&bH=58209499-5f2e-a8b8-581b-f428afeae3e0)
|
completed
|
Uncaught TypeError: Cannot read properties of null (reading 'getFullModelRange') ```javascript
TypeError: Cannot read properties of null (reading 'getFullModelRange')
at c.l in src/vs/editor/contrib/find/browser/findModel.ts:175:16
at <anonymous> in src/vs/editor/contrib/find/browser/findModel.ts:499:32
at Array.map (<anonymous>)
at c.y in src/vs/editor/contrib/find/browser/findModel.ts:498:53
at c.n in src/vs/editor/contrib/find/browser/findModel.ts:206:28
at x.a in src/vs/editor/contrib/find/browser/findModel.ts:100:70
at x.h in out/vs/workbench/workbench.desktop.main.js:152:20100
at x.g in src/vs/base/common/async.ts:1017:9
```
[Go to Errors Site](https://errors.code.visualstudio.com/card?ch=dc96b837cf6bb4af9cd736aa3af08cf8279f7685&bH=58209499-5f2e-a8b8-581b-f428afeae3e0)
| 333 |
213364
|
Cannot read properties of null (reading 'modelInfo')
|
2024-05-24 07:49:44+00:00
|
```javascript
TypeError: Cannot read properties of null (reading 'modelInfo')
at M.E in src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.ts:706:31
at M.restore in src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.ts:364:8
at N.restoreViewState in src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.ts:843:26
at d.value in src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.ts:302:63
at s.y in src/vs/base/common/event.ts:1156:13
at s.z in src/vs/base/common/event.ts:1167:9
at s.fire in src/vs/base/common/event.ts:1191:9
at Q.setValue in src/vs/editor/browser/widget/codeEditor/codeEditorWidget.ts:1979:28
at d.value in src/vs/editor/browser/widget/codeEditor/codeEditorWidget.ts:289:28
at s.y in src/vs/base/common/event.ts:1156:13
at s.fire in src/vs/base/common/event.ts:1187:9
at J.m in src/vs/editor/browser/widget/codeEditor/codeEditorWidget.ts:2276:19
at d.value in src/vs/editor/browser/widget/codeEditor/codeEditorWidget.ts:2252:9
at s.y in src/vs/base/common/event.ts:1156:13
at s.fire in src/vs/base/common/event.ts:1187:9
at HTMLDivElement.dt in src/vs/base/browser/dom.ts:1308:22
```
[Go to Errors Site](https://errors.code.visualstudio.com/card?ch=dc96b837cf6bb4af9cd736aa3af08cf8279f7685&bH=4a955b59-488b-f587-95ff-96049879ac9d)
|
Cannot read properties of null (reading 'modelInfo') ```javascript
TypeError: Cannot read properties of null (reading 'modelInfo')
at M.E in src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.ts:706:31
at M.restore in src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.ts:364:8
at N.restoreViewState in src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.ts:843:26
at d.value in src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.ts:302:63
at s.y in src/vs/base/common/event.ts:1156:13
at s.z in src/vs/base/common/event.ts:1167:9
at s.fire in src/vs/base/common/event.ts:1191:9
at Q.setValue in src/vs/editor/browser/widget/codeEditor/codeEditorWidget.ts:1979:28
at d.value in src/vs/editor/browser/widget/codeEditor/codeEditorWidget.ts:289:28
at s.y in src/vs/base/common/event.ts:1156:13
at s.fire in src/vs/base/common/event.ts:1187:9
at J.m in src/vs/editor/browser/widget/codeEditor/codeEditorWidget.ts:2276:19
at d.value in src/vs/editor/browser/widget/codeEditor/codeEditorWidget.ts:2252:9
at s.y in src/vs/base/common/event.ts:1156:13
at s.fire in src/vs/base/common/event.ts:1187:9
at HTMLDivElement.dt in src/vs/base/browser/dom.ts:1308:22
```
[Go to Errors Site](https://errors.code.visualstudio.com/card?ch=dc96b837cf6bb4af9cd736aa3af08cf8279f7685&bH=4a955b59-488b-f587-95ff-96049879ac9d)
| 565 |
||
213363
|
Cannot use 'in' operator to search for 'command' in undefined
|
2024-05-24 07:49:31+00:00
|
2024-06-03 13:39:14+00:00
|
```javascript
TypeError: Cannot use 'in' operator to search for 'command' in undefined
at d.value in out/vs/workbench/workbench.desktop.main.js:1876:13267
at s.y in src/vs/base/common/event.ts:1156:13
at s.fire in src/vs/base/common/event.ts:1187:9
at d.value in src/vs/platform/quickinput/browser/quickInput.ts:930:35
at s.y in src/vs/base/common/event.ts:1156:13
at s.z in src/vs/base/common/event.ts:1167:9
at s.fire in src/vs/base/common/event.ts:1191:9
at <anonymous> in src/vs/base/common/event.ts:127:84
at d.value in src/vs/base/common/event.ts:178:85
at s.y in src/vs/base/common/event.ts:1156:13
at s.z in src/vs/base/common/event.ts:1167:9
at s.fire in src/vs/base/common/event.ts:1191:9
at j.filter in src/vs/platform/quickinput/browser/quickInputTree.ts:1522:41
at r.Mb in src/vs/platform/quickinput/browser/quickInput.ts:562:36
at d.value in src/vs/platform/quickinput/browser/quickInput.ts:828:11
at s.y in src/vs/base/common/event.ts:1156:13
at s.fire in src/vs/base/common/event.ts:1187:9
at f.Z in src/vs/base/browser/ui/inputbox/inputBox.ts:537:21
at HTMLInputElement.<anonymous> in src/vs/base/browser/ui/inputbox/inputBox.ts:199:39
```
[Go to Errors Site](https://errors.code.visualstudio.com/card?ch=dc96b837cf6bb4af9cd736aa3af08cf8279f7685&bH=143e7881-6564-68d1-f5f9-6626b876f6ee)
|
completed
|
Cannot use 'in' operator to search for 'command' in undefined ```javascript
TypeError: Cannot use 'in' operator to search for 'command' in undefined
at d.value in out/vs/workbench/workbench.desktop.main.js:1876:13267
at s.y in src/vs/base/common/event.ts:1156:13
at s.fire in src/vs/base/common/event.ts:1187:9
at d.value in src/vs/platform/quickinput/browser/quickInput.ts:930:35
at s.y in src/vs/base/common/event.ts:1156:13
at s.z in src/vs/base/common/event.ts:1167:9
at s.fire in src/vs/base/common/event.ts:1191:9
at <anonymous> in src/vs/base/common/event.ts:127:84
at d.value in src/vs/base/common/event.ts:178:85
at s.y in src/vs/base/common/event.ts:1156:13
at s.z in src/vs/base/common/event.ts:1167:9
at s.fire in src/vs/base/common/event.ts:1191:9
at j.filter in src/vs/platform/quickinput/browser/quickInputTree.ts:1522:41
at r.Mb in src/vs/platform/quickinput/browser/quickInput.ts:562:36
at d.value in src/vs/platform/quickinput/browser/quickInput.ts:828:11
at s.y in src/vs/base/common/event.ts:1156:13
at s.fire in src/vs/base/common/event.ts:1187:9
at f.Z in src/vs/base/browser/ui/inputbox/inputBox.ts:537:21
at HTMLInputElement.<anonymous> in src/vs/base/browser/ui/inputbox/inputBox.ts:199:39
```
[Go to Errors Site](https://errors.code.visualstudio.com/card?ch=dc96b837cf6bb4af9cd736aa3af08cf8279f7685&bH=143e7881-6564-68d1-f5f9-6626b876f6ee)
| 596 |
213356
|
Operation would exceed heap memory limits
|
2024-05-24 07:48:04+00:00
|
```javascript
Error: Operation would exceed heap memory limits
at V.getLinesContent in src/vs/editor/common/model/textModel.ts:826:10
at new $ in src/vs/workbench/services/textMate/browser/backgroundTokenization/textMateWorkerTokenizerController.ts:78:23
at <anonymous> in src/vs/workbench/services/textMate/browser/backgroundTokenization/threadedBackgroundTokenizerFactory.ts:68:24
at factory in src/vs/workbench/services/textMate/browser/backgroundTokenization/threadedBackgroundTokenizerFactory.ts:207:17
at checkAttached in src/vs/workbench/services/textMate/browser/backgroundTokenization/threadedBackgroundTokenizerFactory.ts:215:3
at s.y in src/vs/base/common/event.ts:1156:13
at s.z in src/vs/base/common/event.ts:1167:9
at s.fire in src/vs/base/common/event.ts:1191:9
at V.onBeforeAttached in src/vs/editor/common/model/textModel.ts:565:30
at V.Wb in src/vs/editor/browser/widget/codeEditor/codeEditorWidget.ts:1614:30
at V.setModel in src/vs/editor/browser/widget/codeEditor/codeEditorWidget.ts:479:8
at R.setInput in src/vs/workbench/contrib/files/browser/editors/textFileEditor.ts:129:12
at async n.S in src/vs/workbench/browser/parts/editor/editorPanes.ts:434:4
at async n.L in src/vs/workbench/browser/parts/editor/editorPanes.ts:254:34
at async n.openEditor in src/vs/workbench/browser/parts/editor/editorPanes.ts:131:11
at async in src/vs/workbench/browser/parts/editor/editorGroupView.ts:1188:49
```
[Go to Errors Site](https://errors.code.visualstudio.com/card?ch=dc96b837cf6bb4af9cd736aa3af08cf8279f7685&bH=3f0617da-f8d1-558f-9ba7-39adf649e671)
|
Operation would exceed heap memory limits ```javascript
Error: Operation would exceed heap memory limits
at V.getLinesContent in src/vs/editor/common/model/textModel.ts:826:10
at new $ in src/vs/workbench/services/textMate/browser/backgroundTokenization/textMateWorkerTokenizerController.ts:78:23
at <anonymous> in src/vs/workbench/services/textMate/browser/backgroundTokenization/threadedBackgroundTokenizerFactory.ts:68:24
at factory in src/vs/workbench/services/textMate/browser/backgroundTokenization/threadedBackgroundTokenizerFactory.ts:207:17
at checkAttached in src/vs/workbench/services/textMate/browser/backgroundTokenization/threadedBackgroundTokenizerFactory.ts:215:3
at s.y in src/vs/base/common/event.ts:1156:13
at s.z in src/vs/base/common/event.ts:1167:9
at s.fire in src/vs/base/common/event.ts:1191:9
at V.onBeforeAttached in src/vs/editor/common/model/textModel.ts:565:30
at V.Wb in src/vs/editor/browser/widget/codeEditor/codeEditorWidget.ts:1614:30
at V.setModel in src/vs/editor/browser/widget/codeEditor/codeEditorWidget.ts:479:8
at R.setInput in src/vs/workbench/contrib/files/browser/editors/textFileEditor.ts:129:12
at async n.S in src/vs/workbench/browser/parts/editor/editorPanes.ts:434:4
at async n.L in src/vs/workbench/browser/parts/editor/editorPanes.ts:254:34
at async n.openEditor in src/vs/workbench/browser/parts/editor/editorPanes.ts:131:11
at async in src/vs/workbench/browser/parts/editor/editorGroupView.ts:1188:49
```
[Go to Errors Site](https://errors.code.visualstudio.com/card?ch=dc96b837cf6bb4af9cd736aa3af08cf8279f7685&bH=3f0617da-f8d1-558f-9ba7-39adf649e671)
| 628 |
||
213353
|
"New Chat" command needs view focus
|
2024-05-24 07:09:09+00:00
|
2024-05-25 23:59:01+00:00
|
* have chat open with a session
* reload window
* focus the editor pane
* select the "New Chat" action
* ๐ nothing happens, focus once the view once and it works
|
completed
|
"New Chat" command needs view focus * have chat open with a session
* reload window
* focus the editor pane
* select the "New Chat" action
* ๐ nothing happens, focus once the view once and it works
| 48 |
213324
|
`Cmd+W` is closing the window with opened tabs
|
2024-05-23 17:24:03+00:00
|
2024-05-23 20:09:25+00:00
|
Reproduced on OSS, Mac
Steps to Reproduce:
1. Open Code OSS
2. Open a file
3. Press cmd+w
๐ Closes the window
Bisect points to this commit - aa31bfc9fd1746626b3efe86f41b9c172d5f4d23
|
completed
|
`Cmd+W` is closing the window with opened tabs Reproduced on OSS, Mac
Steps to Reproduce:
1. Open Code OSS
2. Open a file
3. Press cmd+w
๐ Closes the window
Bisect points to this commit - aa31bfc9fd1746626b3efe86f41b9c172d5f4d23
| 87 |
213316
|
[Testing] testController.items.delete is not removing the item from the tree UI
|
2024-05-23 14:38:40+00:00
|
2024-06-03 22:00:08+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.90
- OS Version: all
Steps to Reproduce:
`testController.items.delete` does not remove the item from the test tree.
Downstream bug: https://github.com/microsoft/playwright/issues/30965
// cc @connor4312
|
completed
|
[Testing] testController.items.delete is not removing the item from the tree UI <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.90
- OS Version: all
Steps to Reproduce:
`testController.items.delete` does not remove the item from the test tree.
Downstream bug: https://github.com/microsoft/playwright/issues/30965
// cc @connor4312
| 388 |
213297
|
Updating an in-use extension confusingly offers both "Restart Extensions" and "Reload Now"
|
2024-05-23 07:51:59+00:00
|
2024-06-21 17:36:19+00:00
|
Type: <b>Bug</b>
1. Have an activated extension.
2. Filter Extensions view to see it.
3. Drop a newer VSIX of this extension onto the view.
4. Observe a "Restart Extension" button on the view but also a notification advising a reload of VS Code and offering a "Reload Now" button.

VS Code version: Code 1.89.0 (b58957e67ee1e712cebf466b995adf4c5307b2bd, 2024-05-01T02:09:22.859Z)
OS version: Windows_NT x64 10.0.22631
Modes:
<!-- generated by issue reporter -->
|
completed
|
Updating an in-use extension confusingly offers both "Restart Extensions" and "Reload Now" Type: <b>Bug</b>
1. Have an activated extension.
2. Filter Extensions view to see it.
3. Drop a newer VSIX of this extension onto the view.
4. Observe a "Restart Extension" button on the view but also a notification advising a reload of VS Code and offering a "Reload Now" button.

VS Code version: Code 1.89.0 (b58957e67ee1e712cebf466b995adf4c5307b2bd, 2024-05-01T02:09:22.859Z)
OS version: Windows_NT x64 10.0.22631
Modes:
<!-- generated by issue reporter -->
| 224 |
213287
|
GitHub Copilot Chat for Chinese response has stutters!
|
2024-05-23 03:56:34+00:00
|
2024-06-01 06:28:09+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version:
- OS Version:
Steps to Reproduce:
1. Open Github Copilot Chat
2. ask a Chinese question, example, please response in Chinses.
3. Obviously, Chat is doing but has stutters. While, I switch to English question, then it's smooth.
I think It is not good or bug for Chinese chat. For Chinese chat, it is worse UI experience than other product which uses web view.
https://github.com/microsoft/vscode/assets/35647809/f4f45848-c7e5-4b2a-929e-84e9dc87240d
|
completed
|
GitHub Copilot Chat for Chinese response has stutters! <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version:
- OS Version:
Steps to Reproduce:
1. Open Github Copilot Chat
2. ask a Chinese question, example, please response in Chinses.
3. Obviously, Chat is doing but has stutters. While, I switch to English question, then it's smooth.
I think It is not good or bug for Chinese chat. For Chinese chat, it is worse UI experience than other product which uses web view.
https://github.com/microsoft/vscode/assets/35647809/f4f45848-c7e5-4b2a-929e-84e9dc87240d
| 450 |
213247
|
Cannot read properties of undefined (reading 'getViewLineMinColumn')
|
2024-05-22 18:22:22+00:00
|
```javascript
TypeError: Cannot read properties of undefined (reading 'getViewLineMinColumn')
at b.getViewLineMinColumn in src/vs/editor/common/viewModel/viewModelLines.ts:735:62
at m.getLineMinColumn in src/vs/editor/common/viewModel/viewModelImpl.ts:681:22
at p.update in src/vs/editor/common/viewModel/viewModelImpl.ts:1166:126
at m.setViewport in src/vs/editor/common/viewModel/viewModelImpl.ts:657:23
at Object.renderText in src/vs/editor/browser/view.ts:486:29
at Object.renderText in src/vs/editor/browser/view.ts:426:23
at <anonymous> in src/vs/editor/browser/view.ts:743:47
at func in src/vs/editor/browser/view.ts:676:10
at safeInvokeNoArg in src/vs/editor/browser/view.ts:743:15
at R.ee [as d] in src/vs/editor/browser/view.ts:726:10
at R.execute in src/vs/base/browser/dom.ts:325:9
at dt in src/vs/base/browser/dom.ts:366:8
at animationFrameRunner in src/vs/base/browser/dom.ts:384:45
```
[Go to Errors Site](https://errors.code.visualstudio.com/card?ch=dc96b837cf6bb4af9cd736aa3af08cf8279f7685&bH=6979a0a4-9d64-5063-ddce-8b1faed98b7f)
|
Cannot read properties of undefined (reading 'getViewLineMinColumn') ```javascript
TypeError: Cannot read properties of undefined (reading 'getViewLineMinColumn')
at b.getViewLineMinColumn in src/vs/editor/common/viewModel/viewModelLines.ts:735:62
at m.getLineMinColumn in src/vs/editor/common/viewModel/viewModelImpl.ts:681:22
at p.update in src/vs/editor/common/viewModel/viewModelImpl.ts:1166:126
at m.setViewport in src/vs/editor/common/viewModel/viewModelImpl.ts:657:23
at Object.renderText in src/vs/editor/browser/view.ts:486:29
at Object.renderText in src/vs/editor/browser/view.ts:426:23
at <anonymous> in src/vs/editor/browser/view.ts:743:47
at func in src/vs/editor/browser/view.ts:676:10
at safeInvokeNoArg in src/vs/editor/browser/view.ts:743:15
at R.ee [as d] in src/vs/editor/browser/view.ts:726:10
at R.execute in src/vs/base/browser/dom.ts:325:9
at dt in src/vs/base/browser/dom.ts:366:8
at animationFrameRunner in src/vs/base/browser/dom.ts:384:45
```
[Go to Errors Site](https://errors.code.visualstudio.com/card?ch=dc96b837cf6bb4af9cd736aa3af08cf8279f7685&bH=6979a0a4-9d64-5063-ddce-8b1faed98b7f)
| 456 |
||
213226
|
In diff mode, user is forced to interact with a dialog instead of direct hitting the revert button
|
2024-05-22 14:10:03+00:00
|
Type: <b>Bug</b>
When a diff between two files is open, and the second file is empty, while the first file has no new lines, but is not empty, the following three-dot + "Revert Block" button appears:

The issue is that clicking on the three dots button will only display one option. At that point it's worthless having a three-dot dialog, and instead the usual right arrow should be displayed to avoid having to click twice to achieve the same result.
VS Code version: Code 1.89.1 (dc96b837cf6bb4af9cd736aa3af08cf8279f7685, 2024-05-07T05:13:33.891Z)
OS version: Windows_NT x64 10.0.22631
Modes:
<details><summary>Extensions (25)</summary>
Extension|Author (truncated)|Version
---|---|---
ng-template|Ang|17.3.2
dart-code|Dar|3.88.1
flutter|Dar|3.88.0
copilot|Git|1.194.0
copilot-chat|Git|0.15.2
todo-tree|Gru|0.0.226
vscode-drawio|hed|1.6.6
plantuml|jeb|2.18.1
azure-pipelines|ms-|1.228.0
vscode-azureresourcegroups|ms-|0.9.0
vscode-docker|ms-|1.29.1
debugpy|ms-|2024.7.11371017
isort|ms-|2023.10.1
python|ms-|2024.6.0
vscode-pylance|ms-|2024.5.1
jupyter|ms-|2024.4.0
jupyter-keymap|ms-|1.1.2
jupyter-renderers|ms-|1.0.17
vscode-jupyter-cell-tags|ms-|0.1.9
vscode-jupyter-slideshow|ms-|0.1.6
azure-account|ms-|0.12.0
vsliveshare|ms-|1.0.5918
vscode-yaml|red|1.14.0
markdown-preview-enhanced|shd|0.8.13
vscode-icons|vsc|12.7.0
</details><details>
<summary>A/B Experiments</summary>
```
vsliv368:30146709
vspor879:30202332
vspor708:30202333
vspor363:30204092
vscod805cf:30301675
binariesv615:30325510
vsaa593:30376534
py29gd2263:31024239
c4g48928:30535728
azure-dev_surveyone:30548225
2i9eh265:30646982
962ge761:30959799
pythongtdpath:30769146
welcomedialog:30910333
pythonidxpt:30866567
pythonnoceb:30805159
asynctok:30898717
pythontestfixt:30902429
pythonregdiag2:30936856
pythonmypyd1:30879173
pythoncet0:30885854
h48ei257:31000450
pythontbext0:30879054
accentitlementsc:30995553
dsvsc016:30899300
dsvsc017:30899301
dsvsc018:30899302
cppperfnew:31000557
dsvsc020:30976470
pythonait:31006305
chatpanelc:31048052
dsvsc021:30996838
01bff139:31013167
pythoncenvptcf:31049071
a69g1124:31046351
pythonprt:31047983
dwnewjupyter:31046869
26j00206:31048877
```
</details>
<!-- generated by issue reporter -->
|
In diff mode, user is forced to interact with a dialog instead of direct hitting the revert button Type: <b>Bug</b>
When a diff between two files is open, and the second file is empty, while the first file has no new lines, but is not empty, the following three-dot + "Revert Block" button appears:

The issue is that clicking on the three dots button will only display one option. At that point it's worthless having a three-dot dialog, and instead the usual right arrow should be displayed to avoid having to click twice to achieve the same result.
VS Code version: Code 1.89.1 (dc96b837cf6bb4af9cd736aa3af08cf8279f7685, 2024-05-07T05:13:33.891Z)
OS version: Windows_NT x64 10.0.22631
Modes:
<details><summary>Extensions (25)</summary>
Extension|Author (truncated)|Version
---|---|---
ng-template|Ang|17.3.2
dart-code|Dar|3.88.1
flutter|Dar|3.88.0
copilot|Git|1.194.0
copilot-chat|Git|0.15.2
todo-tree|Gru|0.0.226
vscode-drawio|hed|1.6.6
plantuml|jeb|2.18.1
azure-pipelines|ms-|1.228.0
vscode-azureresourcegroups|ms-|0.9.0
vscode-docker|ms-|1.29.1
debugpy|ms-|2024.7.11371017
isort|ms-|2023.10.1
python|ms-|2024.6.0
vscode-pylance|ms-|2024.5.1
jupyter|ms-|2024.4.0
jupyter-keymap|ms-|1.1.2
jupyter-renderers|ms-|1.0.17
vscode-jupyter-cell-tags|ms-|0.1.9
vscode-jupyter-slideshow|ms-|0.1.6
azure-account|ms-|0.12.0
vsliveshare|ms-|1.0.5918
vscode-yaml|red|1.14.0
markdown-preview-enhanced|shd|0.8.13
vscode-icons|vsc|12.7.0
</details><details>
<summary>A/B Experiments</summary>
```
vsliv368:30146709
vspor879:30202332
vspor708:30202333
vspor363:30204092
vscod805cf:30301675
binariesv615:30325510
vsaa593:30376534
py29gd2263:31024239
c4g48928:30535728
azure-dev_surveyone:30548225
2i9eh265:30646982
962ge761:30959799
pythongtdpath:30769146
welcomedialog:30910333
pythonidxpt:30866567
pythonnoceb:30805159
asynctok:30898717
pythontestfixt:30902429
pythonregdiag2:30936856
pythonmypyd1:30879173
pythoncet0:30885854
h48ei257:31000450
pythontbext0:30879054
accentitlementsc:30995553
dsvsc016:30899300
dsvsc017:30899301
dsvsc018:30899302
cppperfnew:31000557
dsvsc020:30976470
pythonait:31006305
chatpanelc:31048052
dsvsc021:30996838
01bff139:31013167
pythoncenvptcf:31049071
a69g1124:31046351
pythonprt:31047983
dwnewjupyter:31046869
26j00206:31048877
```
</details>
<!-- generated by issue reporter -->
| 938 |
||
213222
|
"Add selection to next find match" (cmd+d) is selecting also inlay hint
|
2024-05-22 13:41:04+00:00
|
Repro:
1. Turn on inlay hints for function parameters in typescript
2. Put cursor on a parameter with inlay hint before it
3. Invoke "add selection to next find match" command (cmd+d or ctrl+d on windows) - :bug:
https://github.com/microsoft/vscode/assets/16353531/d10382a7-d703-40c7-8d95-b23f6179e185
Version: 1.90.0-insider
Commit: 405ce83a24f38fd70751b03438763a1503329fe0
Date: 2024-05-20T23:10:59.594Z
Electron: 29.3.1
ElectronBuildId: 9464424
Chromium: 122.0.6261.156
Node.js: 20.9.0
V8: 12.2.281.27-electron.0
OS: Darwin arm64 23.4.0
|
"Add selection to next find match" (cmd+d) is selecting also inlay hint Repro:
1. Turn on inlay hints for function parameters in typescript
2. Put cursor on a parameter with inlay hint before it
3. Invoke "add selection to next find match" command (cmd+d or ctrl+d on windows) - :bug:
https://github.com/microsoft/vscode/assets/16353531/d10382a7-d703-40c7-8d95-b23f6179e185
Version: 1.90.0-insider
Commit: 405ce83a24f38fd70751b03438763a1503329fe0
Date: 2024-05-20T23:10:59.594Z
Electron: 29.3.1
ElectronBuildId: 9464424
Chromium: 122.0.6261.156
Node.js: 20.9.0
V8: 12.2.281.27-electron.0
OS: Darwin arm64 23.4.0
| 223 |
||
213216
|
allow breakpoints to be triggered by logpoints, or make this inability explicit
|
2024-05-22 10:14:59+00:00
|
2024-06-03 18:46:19+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. -->
Tested only while debugging C code.
When I create a triggered breakpoint, I can choose a breakpoint or a logpoints


But this setup won't work. Only regular breakpoints can trigger other breakpoints. This can be pretty confusing.
I think the best would be to allow any kind of breakpoints, including logpoints, to trigger a breakpoint. This would be a very useful feature as I often want to break in a fonction after a specific line is hit, but don't want to stop at this specific line.
If this proves too difficult, then logpoints should not appear in the list of breakpoints available as triggers.
|
completed
|
allow breakpoints to be triggered by logpoints, or make this inability explicit <!-- โ ๏ธโ ๏ธ 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. -->
Tested only while debugging C code.
When I create a triggered breakpoint, I can choose a breakpoint or a logpoints


But this setup won't work. Only regular breakpoints can trigger other breakpoints. This can be pretty confusing.
I think the best would be to allow any kind of breakpoints, including logpoints, to trigger a breakpoint. This would be a very useful feature as I often want to break in a fonction after a specific line is hit, but don't want to stop at this specific line.
If this proves too difficult, then logpoints should not appear in the list of breakpoints available as triggers.
| 341 |
213182
|
[Testing] Allow test runs to run tests outside of the original scope
|
2024-05-21 20:36:50+00:00
|
2024-05-31 04:42:43+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.90
- OS Version: all
**Context**
We have a notion of project/test dependencies, so when I run a test TEST, I might need to run another SETUP test first. This however is not supported out of the box - if my SETUP test is outside of the scope of TEST, no rendering on its progress happens in the sidebar.
**Workaround**
The way I work around it is I create a new test run with a root of the workspace in it. Then it reports progress on all the tests.
**Side-effect**
It has a following side effect though: one "Test run" history entry is created for the original handle invocation and another one is created for my createTestRun
**Request**
I'd say there are two requests here:
1. Only create test log entry when createTestRun is invoked, do not create one automatically.
2. Allow for tests outside of the original scope to show their progress
//cc @connor4312
|
completed
|
[Testing] Allow test runs to run tests outside of the original scope <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.90
- OS Version: all
**Context**
We have a notion of project/test dependencies, so when I run a test TEST, I might need to run another SETUP test first. This however is not supported out of the box - if my SETUP test is outside of the scope of TEST, no rendering on its progress happens in the sidebar.
**Workaround**
The way I work around it is I create a new test run with a root of the workspace in it. Then it reports progress on all the tests.
**Side-effect**
It has a following side effect though: one "Test run" history entry is created for the original handle invocation and another one is created for my createTestRun
**Request**
I'd say there are two requests here:
1. Only create test log entry when createTestRun is invoked, do not create one automatically.
2. Allow for tests outside of the original scope to show their progress
//cc @connor4312
| 534 |
213177
|
open browser window for more accessibility info doesn't work
|
2024-05-21 19:29:46+00:00
|
2024-05-21 20:09:32+00:00
|
In screen reader mode, focus a terminal. `Alt+f1`. See action at the bottom to open a link for more info. Follow instructions to try it, ๐ doesn't work, view hides.
This action is also hard coded atm. it should be an `Action`.

|
completed
|
open browser window for more accessibility info doesn't work In screen reader mode, focus a terminal. `Alt+f1`. See action at the bottom to open a link for more info. Follow instructions to try it, ๐ doesn't work, view hides.
This action is also hard coded atm. it should be an `Action`.

| 139 |
213174
|
Clearing terminal freezes renderer for 20+ seconds
|
2024-05-21 18:56:23+00:00
|
2024-06-03 21:59:44+00:00
|
* vscode workspace
* open a terminal, run tests via `./scripts/test.sh`
* run tests again
* run `cmd+k` to clear the terminal
* ๐ง the renderer is frozen for 20+ seconds, looks like `clearBuffer` -> `clearAllMarker` does some endless disposing
<img width="1009" alt="Screenshot 2024-05-21 at 20 55 26" src="https://github.com/microsoft/vscode/assets/1794099/85e51ac9-a547-4731-8c4f-a780f83e0563">
Performance Profile ๐
[Trace-20240521T205425.json.zip](https://github.com/user-attachments/files/15394321/Trace-20240521T205425.json.zip)
|
completed
|
Clearing terminal freezes renderer for 20+ seconds * vscode workspace
* open a terminal, run tests via `./scripts/test.sh`
* run tests again
* run `cmd+k` to clear the terminal
* ๐ง the renderer is frozen for 20+ seconds, looks like `clearBuffer` -> `clearAllMarker` does some endless disposing
<img width="1009" alt="Screenshot 2024-05-21 at 20 55 26" src="https://github.com/microsoft/vscode/assets/1794099/85e51ac9-a547-4731-8c4f-a780f83e0563">
Performance Profile ๐
[Trace-20240521T205425.json.zip](https://github.com/user-attachments/files/15394321/Trace-20240521T205425.json.zip)
| 211 |
213167
|
Cannot paste a tab character at start of TS file
|
2024-05-21 16:32:56+00:00
|
2024-06-05 09:33:39+00:00
|
* create a TS file
```
interface X {
}
```
* make sure the file is configured to insert Tabs (from the status bar)
* place a `\t` character in your clipboard
* paste it at the beginning of the file
* :bug: observe nothing happens
```
Version: 1.90.0-insider
Commit: 405ce83a24f38fd70751b03438763a1503329fe0
Date: 2024-05-20T23:10:59.594Z
Electron: 29.3.1
ElectronBuildId: 9464424
Chromium: 122.0.6261.156
Node.js: 20.9.0
V8: 12.2.281.27-electron.0
OS: Darwin arm64 23.5.0
```
|
completed
|
Cannot paste a tab character at start of TS file * create a TS file
```
interface X {
}
```
* make sure the file is configured to insert Tabs (from the status bar)
* place a `\t` character in your clipboard
* paste it at the beginning of the file
* :bug: observe nothing happens
```
Version: 1.90.0-insider
Commit: 405ce83a24f38fd70751b03438763a1503329fe0
Date: 2024-05-20T23:10:59.594Z
Electron: 29.3.1
ElectronBuildId: 9464424
Chromium: 122.0.6261.156
Node.js: 20.9.0
V8: 12.2.281.27-electron.0
OS: Darwin arm64 23.5.0
```
| 173 |
213144
|
Unsaved comment reply lost when changing editors
|
2024-05-21 05:18:21+00:00
|
2024-05-29 12:51:03+00:00
|
I typed a reply to a comment (that was previously resolved, which I reopened) and switched to another editor. When I came back, the contents of that comment where gone, because I did not save it.
On GH, the contents is preserved even before saving.

|
completed
|
Unsaved comment reply lost when changing editors I typed a reply to a comment (that was previously resolved, which I reopened) and switched to another editor. When I came back, the contents of that comment where gone, because I did not save it.
On GH, the contents is preserved even before saving.

| 145 |
213103
|
sometimes go to next/previous accessible view code block actions do not work
|
2024-05-20 21:11:55+00:00
|
2024-05-20 21:23:46+00:00
|
1. run a chat request that produces some code blocks
2. focus the accessible view in screen reader mode `alt+f2`
3. use the keyboard shortcuts or left/right arrows in the toolbar to verify that go to next/previous code block actions work
4. ๐ sometimes the cursor doesn't move to the code block
|
completed
|
sometimes go to next/previous accessible view code block actions do not work 1. run a chat request that produces some code blocks
2. focus the accessible view in screen reader mode `alt+f2`
3. use the keyboard shortcuts or left/right arrows in the toolbar to verify that go to next/previous code block actions work
4. ๐ sometimes the cursor doesn't move to the code block
| 94 |
213102
|
chat accessible view next/previous actions alerts with native alert instead of aria
|
2024-05-20 21:09:09+00:00
|
2024-05-20 21:23:46+00:00
|
1. run several chat requests
2. focus a chat response
3. in screen reader mode, use `alt+f2` to open the accessible view
4. use the up arrow on the toolbar to go to the previous response
5. ๐ see native alert dialog. it should instead be a screen reader aria alert.

|
completed
|
chat accessible view next/previous actions alerts with native alert instead of aria 1. run several chat requests
2. focus a chat response
3. in screen reader mode, use `alt+f2` to open the accessible view
4. use the up arrow on the toolbar to go to the previous response
5. ๐ see native alert dialog. it should instead be a screen reader aria alert.

| 144 |
213027
|
Using #pragma region too close to each other creates overlap in minmap
|
2024-05-19 08:01:42+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.1
- OS Version: 14.4.1 (23E224)
Steps to Reproduce:
1. Create A C++ file
2. Write this :
```cpp
#pragma region A
#pragma region B
#pragma endregion
#pragma endregion
```
4. Observe the minimap
Here's my code & minimap
<img width="574" alt="Screenshot 2024-05-19 at 1 09 25โฏPM" src="https://github.com/microsoft/vscode/assets/88477616/cf79e96f-f6a7-4d3e-b300-1946b8d35daa">
<img width="134" alt="Screenshot 2024-05-19 at 1 09 44โฏPM" src="https://github.com/microsoft/vscode/assets/88477616/1068dd71-7af8-4292-a1ff-287c05ac91bc">
|
Using #pragma region too close to each other creates overlap in minmap <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.1
- OS Version: 14.4.1 (23E224)
Steps to Reproduce:
1. Create A C++ file
2. Write this :
```cpp
#pragma region A
#pragma region B
#pragma endregion
#pragma endregion
```
4. Observe the minimap
Here's my code & minimap
<img width="574" alt="Screenshot 2024-05-19 at 1 09 25โฏPM" src="https://github.com/microsoft/vscode/assets/88477616/cf79e96f-f6a7-4d3e-b300-1946b8d35daa">
<img width="134" alt="Screenshot 2024-05-19 at 1 09 44โฏPM" src="https://github.com/microsoft/vscode/assets/88477616/1068dd71-7af8-4292-a1ff-287c05ac91bc">
| 533 |
||
212994
|
accessible view go to symbol is not showing
|
2024-05-17 23:21:20+00:00
|
1. focus a chat response
2. use `alt+f2` with screen reader mode enabled
3. use `ctrlCmd+shift+o` to go to symbol
4. ๐ it doesn't work
|
accessible view go to symbol is not showing 1. focus a chat response
2. use `alt+f2` with screen reader mode enabled
3. use `ctrlCmd+shift+o` to go to symbol
4. ๐ it doesn't work
| 53 |
||
212985
|
Debug restart fails with a config resolver that changes the config type, after changing launch.json
|
2024-05-17 18:58:46+00:00
|
2024-05-17 21:16:20+00:00
|
- Check out https://github.com/microsoft/vscode-mock-debug/tree/roblou/restart-issue
- Debug it, open sampleWorkspace
- Start debugging
- Change anything in the launch config in launch.json
- Restart
- The debugger fails to start again
When the type changes in the config resolver, and the launch config has changed, then we use the wrong debug adapter type to resolve the config resolver when restarting.
|
completed
|
Debug restart fails with a config resolver that changes the config type, after changing launch.json - Check out https://github.com/microsoft/vscode-mock-debug/tree/roblou/restart-issue
- Debug it, open sampleWorkspace
- Start debugging
- Change anything in the launch config in launch.json
- Restart
- The debugger fails to start again
When the type changes in the config resolver, and the launch config has changed, then we use the wrong debug adapter type to resolve the config resolver when restarting.
| 134 |
212973
|
'Folders' menu item is disabled in the explorer
|
2024-05-17 15:34: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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.90.0-insider (user setup)
- OS Version: Windows_NT x64 10.0.22631
Commit: 0cd8d6ac480bc5b4e2a2d7f1eb87eaff9f7d47e1
Date: 2024-05-16T05:49:53.998Z
Electron: 29.3.1
ElectronBuildId: 9464424
Chromium: 122.0.6261.156
Node.js: 20.9.0
V8: 12.2.281.27-electron.0
Steps to Reproduce:
1. Open a folder in vscode
2. Focus on the explorer
3. Open the elipses menu on the explorer
## What is seen in desktop vscode:

## In github.dev:

`Folders` is always greyed out and not toggleable. It would be great if there was an option to hide it
|
'Folders' menu item is disabled in the explorer <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.90.0-insider (user setup)
- OS Version: Windows_NT x64 10.0.22631
Commit: 0cd8d6ac480bc5b4e2a2d7f1eb87eaff9f7d47e1
Date: 2024-05-16T05:49:53.998Z
Electron: 29.3.1
ElectronBuildId: 9464424
Chromium: 122.0.6261.156
Node.js: 20.9.0
V8: 12.2.281.27-electron.0
Steps to Reproduce:
1. Open a folder in vscode
2. Focus on the explorer
3. Open the elipses menu on the explorer
## What is seen in desktop vscode:

## In github.dev:

`Folders` is always greyed out and not toggleable. It would be great if there was an option to hide it
| 593 |
||
212956
|
Comment text cut off in comments panel
|
2024-05-17 08:25:02+00:00
|
2024-06-04 12:11:16+00:00
|
There is a `...` much earlier than necessary:

|
completed
|
Comment text cut off in comments panel There is a `...` much earlier than necessary:

| 67 |
212925
|
Compare Selected Files possible when no resource
|
2024-05-16 19:07:19+00:00
|
2024-06-28 13:47:19+00:00
|
It is possible to compare a file and Settings editor using open editors and tabs multiselect. This action should be disabled.
|
completed
|
Compare Selected Files possible when no resource It is possible to compare a file and Settings editor using open editors and tabs multiselect. This action should be disabled.
| 41 |
212918
|
Debug console launches on Run
|
2024-05-16 17:54:40+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version:
- OS Version: all
Submitting feedback from Diary study conducted, watching participants attempting to run their projects while learning C#.
Steps to Reproduce:
1. Create a new C# project (I've reproduced this in other languages as well)
2. Select to Run (happens when using menu and the run button.
3. Debugger console launches and sends user into debug session.
|
reopened
|
Debug console launches on Run <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version:
- OS Version: all
Submitting feedback from Diary study conducted, watching participants attempting to run their projects while learning C#.
Steps to Reproduce:
1. Create a new C# project (I've reproduced this in other languages as well)
2. Select to Run (happens when using menu and the run button.
3. Debugger console launches and sends user into debug session.
| 396 |
|
212988
|
Code blocks in Markdown render poorly
|
2024-05-16 17:25:57+00:00
|
2024-05-20 23:53:21+00:00
|
## Environment data
- VS Code version: 1.89.1
- Jupyter Extension version (available under the Extensions sidebar): v2024.3.1
- Python Extension version (available under the Extensions sidebar): v2024.4.1
- OS (Windows | Mac | Linux distro) and version: Fedora 40
- Python and/or Anaconda version: 3.11
- Type of virtual environment used (N/A | venv | virtualenv | conda | ...): conda
- Jupyter server running: Local
## Expected behaviour
When a code block (here, Python) is added to a markdown cell using triple quotes, the block is formatted as code with appropriate language coloration when specified. Here is a working example in a browser-based Jupyter notebook:

## Actual behaviour
In VSCode, the block is not well defined and does not include language coloration despite the language being specified with the code block. It looks really terrible, almost as if inline code formatting is being used on the block. If this is the case, it is not the correct encoding.
Note that this is *independent* of which theme is being used in VSCode. They all look similar to this, but using the dominant colors of the theme being used.

## Steps to reproduce:
Create a code block inside of a markdown cell using the triple quote notation (and language label, optionally)
|
completed
|
Code blocks in Markdown render poorly ## Environment data
- VS Code version: 1.89.1
- Jupyter Extension version (available under the Extensions sidebar): v2024.3.1
- Python Extension version (available under the Extensions sidebar): v2024.4.1
- OS (Windows | Mac | Linux distro) and version: Fedora 40
- Python and/or Anaconda version: 3.11
- Type of virtual environment used (N/A | venv | virtualenv | conda | ...): conda
- Jupyter server running: Local
## Expected behaviour
When a code block (here, Python) is added to a markdown cell using triple quotes, the block is formatted as code with appropriate language coloration when specified. Here is a working example in a browser-based Jupyter notebook:

## Actual behaviour
In VSCode, the block is not well defined and does not include language coloration despite the language being specified with the code block. It looks really terrible, almost as if inline code formatting is being used on the block. If this is the case, it is not the correct encoding.
Note that this is *independent* of which theme is being used in VSCode. They all look similar to this, but using the dominant colors of the theme being used.

## Steps to reproduce:
Create a code block inside of a markdown cell using the triple quote notation (and language label, optionally)
| 426 |
212891
|
Cannot read properties of undefined (reading 'accessToken')
|
2024-05-16 13:09:16+00:00
|
2024-05-30 18:40:39+00:00
|
i am finding this error in the smoke test logs and also saw it from a user in https://github.com/microsoft/vscode/issues/212793#issuecomment-2115182471
```
2024-05-16 07:52:50.935 [error] Cannot read properties of undefined (reading 'accessToken'): TypeError: Cannot read properties of undefined (reading 'accessToken')
at g.z (vscode-file://vscode-app/mnt/vss/_work/1/VSCode-linux-x64/resources/app/out/vs/workbench/workbench.desktop.main.js:1721:24562)
at g.C (vscode-file://vscode-app/mnt/vss/_work/1/VSCode-linux-x64/resources/app/out/vs/workbench/workbench.desktop.main.js:1721:25195)
at h.value (vscode-file://vscode-app/mnt/vss/_work/1/VSCode-linux-x64/resources/app/out/vs/workbench/workbench.desktop.main.js:1721:24364)
```
|
completed
|
Cannot read properties of undefined (reading 'accessToken') i am finding this error in the smoke test logs and also saw it from a user in https://github.com/microsoft/vscode/issues/212793#issuecomment-2115182471
```
2024-05-16 07:52:50.935 [error] Cannot read properties of undefined (reading 'accessToken'): TypeError: Cannot read properties of undefined (reading 'accessToken')
at g.z (vscode-file://vscode-app/mnt/vss/_work/1/VSCode-linux-x64/resources/app/out/vs/workbench/workbench.desktop.main.js:1721:24562)
at g.C (vscode-file://vscode-app/mnt/vss/_work/1/VSCode-linux-x64/resources/app/out/vs/workbench/workbench.desktop.main.js:1721:25195)
at h.value (vscode-file://vscode-app/mnt/vss/_work/1/VSCode-linux-x64/resources/app/out/vs/workbench/workbench.desktop.main.js:1721:24364)
```
| 309 |
212889
|
Valid position of --inspect argument during Node.js attachment
|
2024-05-16 12:44: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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.1
- OS Version: Windows_NT x64 10.0.22631
Steps to Reproduce:
1. Do a program in Python 3.9.13 64-bit
2. Press F5
3. Nothing happens at all
|
Valid position of --inspect argument during Node.js attachment <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.1
- OS Version: Windows_NT x64 10.0.22631
Steps to Reproduce:
1. Do a program in Python 3.9.13 64-bit
2. Press F5
3. Nothing happens at all
| 362 |
||
212885
|
Multi tab: cannot drop multiple tabs into separate workspace window
|
2024-05-16 11:40:11+00:00
|
2024-07-02 16:40:08+00:00
|
Steps to Reproduce:
1. have 2 distinct windows (not floating, true 2 separate workspace windows)
2. drag multiple tabs into the other window
=> ๐ only 1 editor opens
|
completed
|
Multi tab: cannot drop multiple tabs into separate workspace window Steps to Reproduce:
1. have 2 distinct windows (not floating, true 2 separate workspace windows)
2. drag multiple tabs into the other window
=> ๐ only 1 editor opens
| 56 |
212883
|
Tabs: cannot click unpin action anymore to unpin
|
2024-05-16 10:25:26+00:00
|
2024-05-16 14:42:17+00:00
|
I have pinned tabs in separate row and click the unpin action:

The tab does not unpin.
|
completed
|
Tabs: cannot click unpin action anymore to unpin I have pinned tabs in separate row and click the unpin action:

The tab does not unpin.
| 84 |
212875
|
New test runs are not collapsible
|
2024-05-16 09:15:30+00:00
|
2024-06-04 20:36:23+00:00
|
Type: <b>Bug</b>
1. With a testprovider extension, perform some testruns.
2. Close and reopen VS Code.
3. Perform a few more runs.
4. Notice that the previous runs from step 2 can be collapsed but the new ones (step 3) cannot.
![Uploading image.pngโฆ]()
VS Code version: Code - Insiders 1.90.0-insider (0cd8d6ac480bc5b4e2a2d7f1eb87eaff9f7d47e1, 2024-05-16T05:49:53.998Z)
OS version: Windows_NT x64 10.0.22631
Modes:
<!-- generated by issue reporter -->
|
completed
|
New test runs are not collapsible Type: <b>Bug</b>
1. With a testprovider extension, perform some testruns.
2. Close and reopen VS Code.
3. Perform a few more runs.
4. Notice that the previous runs from step 2 can be collapsed but the new ones (step 3) cannot.
![Uploading image.pngโฆ]()
VS Code version: Code - Insiders 1.90.0-insider (0cd8d6ac480bc5b4e2a2d7f1eb87eaff9f7d47e1, 2024-05-16T05:49:53.998Z)
OS version: Windows_NT x64 10.0.22631
Modes:
<!-- generated by issue reporter -->
| 165 |
212857
|
Gutter indicators not working after updating to 1.90.0-insiders
|
2024-05-16 03:37:55+00:00
|
2024-05-29 10:41:13+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes (but with WSL to open a repo in WSL)
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: Version: 1.90.0-insider (user setup)
Commit: 5e68ffd760038bb156894a87f896910be510accd
Date: 2024-05-15T08:29:12.858Z
Electron: 29.3.1
ElectronBuildId: 9464424
Chromium: 122.0.6261.156
Node.js: 20.9.0
V8: 12.2.281.27-electron.0
OS: Windows_NT x64 10.0.22621
- OS Version: Windows 11 Enterprise
Version 22H2
OS Build 22621.3447
Windows Feature Experience Pack 1000.22688.1000.0
Steps to Reproduce:
1. Create a git repo with `git init`
2. Open the repo, add and modify files.
3. Open modified file in VSCode
I also tested with newly installed VSCode and it worked fine.
## What I got
### 1.90.0-insider

### 1.89.1 (user setup)
Commit: dc96b837cf6bb4af9cd736aa3af08cf8279f7685
Date: 2024-05-07T05:13:33.891Z
Electron: 28.2.8
ElectronBuildId: 27744544
Chromium: 120.0.6099.291
Node.js: 18.18.2
V8: 12.0.267.19-electron.0
OS: Windows_NT x64 10.0.22621

|
completed
|
Gutter indicators not working after updating to 1.90.0-insiders <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes (but with WSL to open a repo in WSL)
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: Version: 1.90.0-insider (user setup)
Commit: 5e68ffd760038bb156894a87f896910be510accd
Date: 2024-05-15T08:29:12.858Z
Electron: 29.3.1
ElectronBuildId: 9464424
Chromium: 122.0.6261.156
Node.js: 20.9.0
V8: 12.2.281.27-electron.0
OS: Windows_NT x64 10.0.22621
- OS Version: Windows 11 Enterprise
Version 22H2
OS Build 22621.3447
Windows Feature Experience Pack 1000.22688.1000.0
Steps to Reproduce:
1. Create a git repo with `git init`
2. Open the repo, add and modify files.
3. Open modified file in VSCode
I also tested with newly installed VSCode and it worked fine.
## What I got
### 1.90.0-insider

### 1.89.1 (user setup)
Commit: dc96b837cf6bb4af9cd736aa3af08cf8279f7685
Date: 2024-05-07T05:13:33.891Z
Electron: 28.2.8
ElectronBuildId: 27744544
Chromium: 120.0.6099.291
Node.js: 18.18.2
V8: 12.0.267.19-electron.0
OS: Windows_NT x64 10.0.22621

| 731 |
212853
|
Resource links in chat are not linkified until the response finishes
|
2024-05-16 01:04:36+00:00
|
I wanted to go and see the file that copilot was talking about before its response finished. It seems like links to files and methods are detected in realtime, as they appear in blue in chat, but clicking on them does nothing until the response is finished.
|
reopened
|
Resource links in chat are not linkified until the response finishes I wanted to go and see the file that copilot was talking about before its response finished. It seems like links to files and methods are detected in realtime, as they appear in blue in chat, but clicking on them does nothing until the response is finished.
| 70 |
|
212839
|
chat participant info is not keyboard accessible
|
2024-05-15 20:59:13+00:00
|
2024-05-17 22:34:41+00:00
|
1. Use a mouse to hover over the chat participant
2. See info and an action to go to the marketplace
3. Try to access this info via the keyboard
4. ๐ one cannot
|
completed
|
chat participant info is not keyboard accessible 1. Use a mouse to hover over the chat participant
2. See info and an action to go to the marketplace
3. Try to access this info via the keyboard
4. ๐ one cannot
| 46 |
212833
|
Sticky header line does not properly update its collapse icon
|
2024-05-15 18:58:49+00:00
|
Type: <b>Bug</b>
With sticky header lines I collapse the region from the button on the sticky header, and then re-expand it. Its icon is not properly updated after the expansion.
The region I collapsed also had sub-regions, and it was on a Markdown file.
VS Code version: Code 1.89.1 (dc96b837cf6bb4af9cd736aa3af08cf8279f7685, 2024-05-07T05:13:33.891Z)
OS version: Windows_NT x64 10.0.22631
Modes:
<details>
<summary>System Info</summary>
|Item|Value|
|---|---|
|CPUs|12th Gen Intel(R) Core(TM) i5-1235U (12 x 2496)|
|GPU Status|2d_canvas: enabled<br>canvas_oop_rasterization: enabled_on<br>direct_rendering_display_compositor: disabled_off_ok<br>gpu_compositing: enabled<br>multiple_raster_threads: enabled_on<br>opengl: enabled_on<br>rasterization: enabled<br>raw_draw: disabled_off_ok<br>skia_graphite: disabled_off<br>video_decode: enabled<br>video_encode: enabled<br>vulkan: disabled_off<br>webgl: enabled<br>webgl2: enabled<br>webgpu: enabled|
|Load (avg)|undefined|
|Memory (System)|15.68GB (1.86GB free)|
|Process Argv|--crash-reporter-id 95c24160-1302-4089-b0cd-a1a57e1301b7|
|Screen Reader|no|
|VM|0%|
</details><details><summary>Extensions (1)</summary>
Extension|Author (truncated)|Version
---|---|---
ide-vscode|daf|3.3.0
</details><details>
<summary>A/B Experiments</summary>
```
vsliv368:30146709
vspor879:30202332
vspor708:30202333
vspor363:30204092
tftest:31042121
vscorecescf:30445987
vscod805cf:30301675
binariesv615:30325510
vsaa593cf:30376535
py29gd2263:31024239
c4g48928:30535728
azure-dev_surveyonecf:30548226
962ge761:30959799
pythongtdpath:30769146
welcomedialog:30910333
pythonidxpt:30866567
pythonnoceb:30805159
asynctok:30898717
pythontestfixt:30902429
pythonregdiag2:30936856
pyreplss1:30897532
pythonmypyd1:30879173
pythoncet0:30885854
h48ei257:31000450
pythontbext0:30879054
accentitlementsc:30995553
dsvsc016:30899300
dsvsc017:30899301
dsvsc018:30899302
cppperfnew:31000557
dsvsc020:30976470
pythonait:31006305
666c4381:30973075
dsvsc021:30996838
724cj586:31013169
pythoncenvpt:31043157
fchga941:31038042
pythonprc:31039816
dwnewjupyter:31039675
```
</details>
<!-- generated by issue reporter -->
|
Sticky header line does not properly update its collapse icon Type: <b>Bug</b>
With sticky header lines I collapse the region from the button on the sticky header, and then re-expand it. Its icon is not properly updated after the expansion.
The region I collapsed also had sub-regions, and it was on a Markdown file.
VS Code version: Code 1.89.1 (dc96b837cf6bb4af9cd736aa3af08cf8279f7685, 2024-05-07T05:13:33.891Z)
OS version: Windows_NT x64 10.0.22631
Modes:
<details>
<summary>System Info</summary>
|Item|Value|
|---|---|
|CPUs|12th Gen Intel(R) Core(TM) i5-1235U (12 x 2496)|
|GPU Status|2d_canvas: enabled<br>canvas_oop_rasterization: enabled_on<br>direct_rendering_display_compositor: disabled_off_ok<br>gpu_compositing: enabled<br>multiple_raster_threads: enabled_on<br>opengl: enabled_on<br>rasterization: enabled<br>raw_draw: disabled_off_ok<br>skia_graphite: disabled_off<br>video_decode: enabled<br>video_encode: enabled<br>vulkan: disabled_off<br>webgl: enabled<br>webgl2: enabled<br>webgpu: enabled|
|Load (avg)|undefined|
|Memory (System)|15.68GB (1.86GB free)|
|Process Argv|--crash-reporter-id 95c24160-1302-4089-b0cd-a1a57e1301b7|
|Screen Reader|no|
|VM|0%|
</details><details><summary>Extensions (1)</summary>
Extension|Author (truncated)|Version
---|---|---
ide-vscode|daf|3.3.0
</details><details>
<summary>A/B Experiments</summary>
```
vsliv368:30146709
vspor879:30202332
vspor708:30202333
vspor363:30204092
tftest:31042121
vscorecescf:30445987
vscod805cf:30301675
binariesv615:30325510
vsaa593cf:30376535
py29gd2263:31024239
c4g48928:30535728
azure-dev_surveyonecf:30548226
962ge761:30959799
pythongtdpath:30769146
welcomedialog:30910333
pythonidxpt:30866567
pythonnoceb:30805159
asynctok:30898717
pythontestfixt:30902429
pythonregdiag2:30936856
pyreplss1:30897532
pythonmypyd1:30879173
pythoncet0:30885854
h48ei257:31000450
pythontbext0:30879054
accentitlementsc:30995553
dsvsc016:30899300
dsvsc017:30899301
dsvsc018:30899302
cppperfnew:31000557
dsvsc020:30976470
pythonait:31006305
666c4381:30973075
dsvsc021:30996838
724cj586:31013169
pythoncenvpt:31043157
fchga941:31038042
pythonprc:31039816
dwnewjupyter:31039675
```
</details>
<!-- generated by issue reporter -->
| 890 |
||
212813
|
VSCode started with `--extensionDevelopmentPath` crashes after the computer enters in sleep mode
|
2024-05-15 13:54:14+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.1
Steps to Reproduce:
1. Generate a new web extension using `yo code` (named `test-vscode-web-extension`)
2. Run `code --extensionDevelopmentPath=C:\Users\poweruser\Desktop\test-vscode-web-extension` .
3. Open a folder from WSL:

4. Enter the computer in `sleep` mode
5. When the computer is opened again, the vscode is not running anymore
When entering the sleep mode the logs looks like this :


I checked the logs also when the vs code is recovering ok from the sleep mode (when started without the `test-vscode-web-extension` extension i.e. without the `--extensionDevelopmentPath` as an argument). And the following entries are appearing in the logs in this case (and are missing from the logs when the vscode crashes):

The problem doesn't appear if no folder is open or the folders are opened from Windows (not from WSL).
Does anybody know about this problem and maybe a possible fix for it?
|
VSCode started with `--extensionDevelopmentPath` crashes after the computer enters in sleep 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-Suggestions -->
<!-- ๐ Search existing issues to avoid creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.1
Steps to Reproduce:
1. Generate a new web extension using `yo code` (named `test-vscode-web-extension`)
2. Run `code --extensionDevelopmentPath=C:\Users\poweruser\Desktop\test-vscode-web-extension` .
3. Open a folder from WSL:

4. Enter the computer in `sleep` mode
5. When the computer is opened again, the vscode is not running anymore
When entering the sleep mode the logs looks like this :


I checked the logs also when the vs code is recovering ok from the sleep mode (when started without the `test-vscode-web-extension` extension i.e. without the `--extensionDevelopmentPath` as an argument). And the following entries are appearing in the logs in this case (and are missing from the logs when the vscode crashes):

The problem doesn't appear if no folder is open or the folders are opened from Windows (not from WSL).
Does anybody know about this problem and maybe a possible fix for it?
| 760 |
||
212804
|
Extension log does not seem to show up sometimes
|
2024-05-15 11:47:10+00:00
|
From @karthiknadig
@sandy081 finally i caught the error. This is what I see, some times Python logs don't show up with this error:
```
ERR Error while registering log channel file:///c%3A/Users/kanadig/AppData/Roaming/Code%20-%20Insiders/logs/20240513T105426/window18/exthost/ms-python.python/Python.log Timed out while waiting for file to be created
```
|
Extension log does not seem to show up sometimes From @karthiknadig
@sandy081 finally i caught the error. This is what I see, some times Python logs don't show up with this error:
```
ERR Error while registering log channel file:///c%3A/Users/kanadig/AppData/Roaming/Code%20-%20Insiders/logs/20240513T105426/window18/exthost/ms-python.python/Python.log Timed out while waiting for file to be created
```
| 129 |
||
212786
|
When hover is focused can't open the command palette and keep hover open
|
2024-05-15 08:50:23+00:00
|
2024-05-22 15:09:49+00:00
|
When the hover is focused it is not possible to open the command palette and keep the hover open
|
completed
|
When hover is focused can't open the command palette and keep hover open When the hover is focused it is not possible to open the command palette and keep the hover open
| 42 |
212771
|
Bug: monaco diff revert buttons
|
2024-05-15 06:43:39+00:00
|
2024-05-27 16:58:24+00:00
|
Verification steps:
* Open [playground](https://microsoft.github.io/monaco-editor/playground.html?source=v0.49.0#XQAAAAKcBQAAAAAAAABBqQkHQ5NjdMjwa-jY7SIQ9S7DNlzs5W-mwj0fe1ZCDRFc9ws9XQE0SJE1jc2VKxhaLFIw9vEWSxW3yscw9Sc0RgmSatbNyrNa50VLHWwDOn0YI7IfU0xJ0CGYU1vRtgnKPmZzQcQ1F9I-F9YcvQUj8HivueDk6xk10aT4jNaUk2ffxrX5J1GuTBnWdI_x0VF4fYwF_3oNo1sSaR2IIoEUtA_C_i54l2mE_Zy1vApIVLUJTeksh4bhdl2V4Bd_CEfSjX0k5J3Wrg24J7taPGbbY8-AnmuBylNlkLXplHrkwmhfcUNOVabSNpYLcgKmXPlddUjwmzi2OGLM5on5in0Vfv4kGj-TZ-dhoWKg1Jr0GOIuvFZ6qGsc9F5d39cdD74bXkXrBCSwNiLgnsChRLkMpMbQlFxSWjooepz5-UXd)
* Click on the first diff
* Notice that the arrow is at the wrong location

* Verify that this is fixed in the latest nightly monaco editor release
---
<!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code : Monaco @ 0.48.0
Steps to Reproduce:
1. Diff Editor with gutter item's position
<img width="760" alt="ๆชๅฑ2024-05-15 14 41 22" src="https://github.com/microsoft/vscode/assets/29034500/5318a459-f2ee-48ed-8edf-2dcffadaab92">
|
completed
|
Bug: monaco diff revert buttons Verification steps:
* Open [playground](https://microsoft.github.io/monaco-editor/playground.html?source=v0.49.0#XQAAAAKcBQAAAAAAAABBqQkHQ5NjdMjwa-jY7SIQ9S7DNlzs5W-mwj0fe1ZCDRFc9ws9XQE0SJE1jc2VKxhaLFIw9vEWSxW3yscw9Sc0RgmSatbNyrNa50VLHWwDOn0YI7IfU0xJ0CGYU1vRtgnKPmZzQcQ1F9I-F9YcvQUj8HivueDk6xk10aT4jNaUk2ffxrX5J1GuTBnWdI_x0VF4fYwF_3oNo1sSaR2IIoEUtA_C_i54l2mE_Zy1vApIVLUJTeksh4bhdl2V4Bd_CEfSjX0k5J3Wrg24J7taPGbbY8-AnmuBylNlkLXplHrkwmhfcUNOVabSNpYLcgKmXPlddUjwmzi2OGLM5on5in0Vfv4kGj-TZ-dhoWKg1Jr0GOIuvFZ6qGsc9F5d39cdD74bXkXrBCSwNiLgnsChRLkMpMbQlFxSWjooepz5-UXd)
* Click on the first diff
* Notice that the arrow is at the wrong location

* Verify that this is fixed in the latest nightly monaco editor release
---
<!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code : Monaco @ 0.48.0
Steps to Reproduce:
1. Diff Editor with gutter item's position
<img width="760" alt="ๆชๅฑ2024-05-15 14 41 22" src="https://github.com/microsoft/vscode/assets/29034500/5318a459-f2ee-48ed-8edf-2dcffadaab92">
| 868 |
212740
|
macOS/Linux: Allow `\` in file names
|
2024-05-14 20:06:57+00:00
|
2024-05-16 13:48: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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No **yes**
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version:
Version: 1.89.1
Commit: dc96b837cf6bb4af9cd736aa3af08cf8279f7685
Date: 2024-05-07T05:16:23.416Z
Electron: 28.2.8
ElectronBuildId: 27744544
Chromium: 120.0.6099.291
Node.js: 18.18.2
V8: 12.0.267.19-electron.0
OS: Linux x64 6.5.0-28-generic
- OS Version:
Ubuntu 22.04
Steps to Reproduce:
1. Create a file in Linux named `C:\Program Files\Git\git-bash.exe` at path `~/bin`:
```bash
touch ~/bin/"C:\Program Files\Git\git-bash.exe"
```
2. Now try to open it with VSCode to edit it:
```bash
code ~/bin/"C:\Program Files\Git\git-bash.exe"
# to be sure, open with extensions disabled too
code --disable-extensions ~/bin/"C:\Program Files\Git\git-bash.exe"
```
It doesn't open the file! I see this instead (with all "Recent" filenames redacted from the image):

3. It doesn't open! I have to open it in another text editor, such as Sublime Text, instead:
```bash
subl ~/bin/"C:\Program Files\Git\git-bash.exe"
```
Note: for anyone wondering why in the world we woud have a Linux file that looks like a Windows path, it's because I am in a development environment where our team is mixed Linux and Windows users, and there are tricks where I can make the same script run on both systems by putting this inside that file, for instance, to emulate on Linux loading Git Bash on Windows:
File `~/bin/"C:\Program Files\Git\git-bash.exe"`:
```bash
#!/usr/bin/env bash
# This is a wrapper to simulate Windows's Git Bash terminal in Linux
bash "$@"
```
See here: [Stack Overflow: How to configure a `preBuildSteps.sh` Bash script that runs as part of the pre-build process in the MPLAB X IDE on both Windows and Linux](https://stackoverflow.com/a/78485243/4561887)
I just need VSCode to be able to edit such files, now. Meanwhile, Sublime Text works fine on these files.
|
completed
|
macOS/Linux: Allow `\` in file names <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No **yes**
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version:
Version: 1.89.1
Commit: dc96b837cf6bb4af9cd736aa3af08cf8279f7685
Date: 2024-05-07T05:16:23.416Z
Electron: 28.2.8
ElectronBuildId: 27744544
Chromium: 120.0.6099.291
Node.js: 18.18.2
V8: 12.0.267.19-electron.0
OS: Linux x64 6.5.0-28-generic
- OS Version:
Ubuntu 22.04
Steps to Reproduce:
1. Create a file in Linux named `C:\Program Files\Git\git-bash.exe` at path `~/bin`:
```bash
touch ~/bin/"C:\Program Files\Git\git-bash.exe"
```
2. Now try to open it with VSCode to edit it:
```bash
code ~/bin/"C:\Program Files\Git\git-bash.exe"
# to be sure, open with extensions disabled too
code --disable-extensions ~/bin/"C:\Program Files\Git\git-bash.exe"
```
It doesn't open the file! I see this instead (with all "Recent" filenames redacted from the image):

3. It doesn't open! I have to open it in another text editor, such as Sublime Text, instead:
```bash
subl ~/bin/"C:\Program Files\Git\git-bash.exe"
```
Note: for anyone wondering why in the world we woud have a Linux file that looks like a Windows path, it's because I am in a development environment where our team is mixed Linux and Windows users, and there are tricks where I can make the same script run on both systems by putting this inside that file, for instance, to emulate on Linux loading Git Bash on Windows:
File `~/bin/"C:\Program Files\Git\git-bash.exe"`:
```bash
#!/usr/bin/env bash
# This is a wrapper to simulate Windows's Git Bash terminal in Linux
bash "$@"
```
See here: [Stack Overflow: How to configure a `preBuildSteps.sh` Bash script that runs as part of the pre-build process in the MPLAB X IDE on both Windows and Linux](https://stackoverflow.com/a/78485243/4561887)
I just need VSCode to be able to edit such files, now. Meanwhile, Sublime Text works fine on these files.
| 968 |
212696
|
Port is being added twice to Microsoft dev tunnel in VsCode with absolute URLs
|
2024-05-14 13:07: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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version:
- OS Version:
I am working with the NextJs framework, where I have a link that redirect the users to it in my App. The link works well with the local machine, yet when I use the de tunnel, it adds the port twice to the URL, and it does not work.
Here is my JS code:
```js
function redirectToLogin(locale: string) {
return NextResponse.redirect(
new URL(`/${locale}/login`, hostURL)
);
}
```
Here is the result that I got from the dev tunnels:
```bash
https://k630pqpg-3000.euw.devtunnels.ms:3000/tr/login
```
Here is what I expect:
Either
```bash
https://k630pqpg-3000.euw.devtunnels.ms/tr/login
```
Or
```bash
https://k630pqpg.euw.devtunnels.ms:3000/tr/login
```
My workaround to solve this was to modify the URL by hand, yet it would be great to fix this bug or know a permanent solution. (thanks to this issue for getting the workaround (https://github.com/microsoft/vscode/issues/190020))
Is there a way to define the URL that I got from the dev tunnels? or fix that duplicate port issue?
```[tasklist]
### Tasks
```
|
Port is being added twice to Microsoft dev tunnel in VsCode with absolute URLs <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version:
- OS Version:
I am working with the NextJs framework, where I have a link that redirect the users to it in my App. The link works well with the local machine, yet when I use the de tunnel, it adds the port twice to the URL, and it does not work.
Here is my JS code:
```js
function redirectToLogin(locale: string) {
return NextResponse.redirect(
new URL(`/${locale}/login`, hostURL)
);
}
```
Here is the result that I got from the dev tunnels:
```bash
https://k630pqpg-3000.euw.devtunnels.ms:3000/tr/login
```
Here is what I expect:
Either
```bash
https://k630pqpg-3000.euw.devtunnels.ms/tr/login
```
Or
```bash
https://k630pqpg.euw.devtunnels.ms:3000/tr/login
```
My workaround to solve this was to modify the URL by hand, yet it would be great to fix this bug or know a permanent solution. (thanks to this issue for getting the workaround (https://github.com/microsoft/vscode/issues/190020))
Is there a way to define the URL that I got from the dev tunnels? or fix that duplicate port issue?
```[tasklist]
### Tasks
```
| 652 |
||
212678
|
Can't start new terminal session / watch task are not running correctly
|
2024-05-14 09:08:58+00:00
|
2024-05-20 15:31:46+00:00
|
Version: 1.90.0-insider (user setup)
Commit: bbc4ba1eff648ee542972589216f211b7a6a08f2
Date: 2024-05-14T05:48:27.714Z
Electron: 29.3.1
ElectronBuildId: 9464424
Chromium: 122.0.6261.156
Node.js: 20.9.0
V8: 12.2.281.27-electron.0
OS: Windows_NT x64 10.0.22635
Running VS Code remote WSL
Here is what I see:
https://github.com/microsoft/vscode/assets/1931590/3ee23206-fe7c-4131-a22e-07a8e979cbf8
Observe:
- the terminal does not open
- the watch task somehow hangs. It should print something like:
```
[11:03:24 AM] Starting compilation in watch mode...
[11:03:27 AM] Found 0 errors. Watching for file changes.
```
|
completed
|
Can't start new terminal session / watch task are not running correctly Version: 1.90.0-insider (user setup)
Commit: bbc4ba1eff648ee542972589216f211b7a6a08f2
Date: 2024-05-14T05:48:27.714Z
Electron: 29.3.1
ElectronBuildId: 9464424
Chromium: 122.0.6261.156
Node.js: 20.9.0
V8: 12.2.281.27-electron.0
OS: Windows_NT x64 10.0.22635
Running VS Code remote WSL
Here is what I see:
https://github.com/microsoft/vscode/assets/1931590/3ee23206-fe7c-4131-a22e-07a8e979cbf8
Observe:
- the terminal does not open
- the watch task somehow hangs. It should print something like:
```
[11:03:24 AM] Starting compilation in watch mode...
[11:03:27 AM] Found 0 errors. Watching for file changes.
```
| 236 |
212674
|
Cancellation error shows up in Window logs
|
2024-05-14 08:20:31+00:00
|
2024-05-27 17:14:00+00:00
|
1. Open Window logs
1. Open Extensions view
2. Type something in the search box to search extensions
3. Press <kbd>Cmd Backspace</kbd> while the search is running to clear the input box.
If your timing is right (keep trying), you will see a Cancellation error appearing in the Window logs:
```
2024-05-14 10:19:41.331 [error] Cancelled: Canceled
at ee.B (vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:795:23911)
at async ee.z (vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:795:20786)
at async oe (vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:795:19711)
at async ee.query (vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:795:20009)
at async ie.queryGallery (vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2457:13768)
at async Le.Kc (vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2393:23121)
at async Le.uc (vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2393:14729)
at async vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2393:13028
```
|
completed
|
Cancellation error shows up in Window logs 1. Open Window logs
1. Open Extensions view
2. Type something in the search box to search extensions
3. Press <kbd>Cmd Backspace</kbd> while the search is running to clear the input box.
If your timing is right (keep trying), you will see a Cancellation error appearing in the Window logs:
```
2024-05-14 10:19:41.331 [error] Cancelled: Canceled
at ee.B (vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:795:23911)
at async ee.z (vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:795:20786)
at async oe (vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:795:19711)
at async ee.query (vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:795:20009)
at async ie.queryGallery (vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2457:13768)
at async Le.Kc (vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2393:23121)
at async Le.uc (vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2393:14729)
at async vscode-file://vscode-app/Applications/Visual%20Studio%20Code%20-%20Insiders.app/Contents/Resources/app/out/vs/workbench/workbench.desktop.main.js:2393:13028
```
| 672 |
212672
|
Terminal: inline chat widget is not consistently hidden
|
2024-05-14 08:13:46+00:00
|
2024-05-15 18:55:07+00:00
|
For the voice integration to chat, I need to rely on an event when inline chat is hidden. I found that there is a `hide` method:
https://github.com/microsoft/vscode/blob/743d036d66778d17eb1240dcb110d48e3087d324/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatWidget.ts#L161
However, I see that it is not being called in these cases:
* open a terminal in panel and start inline chat, start voice chat
* open another panel so that terminal is hidden
* ๐ voice chat does not stop
A similar issue when terminals are in the editor and you open another editor.
Would it be possible for terminal to ensure `hide` is called in these cases? I have https://github.com/microsoft/vscode/pull/212653 for then stopping the voice chat session, but it needs to be called.
|
completed
|
Terminal: inline chat widget is not consistently hidden For the voice integration to chat, I need to rely on an event when inline chat is hidden. I found that there is a `hide` method:
https://github.com/microsoft/vscode/blob/743d036d66778d17eb1240dcb110d48e3087d324/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatWidget.ts#L161
However, I see that it is not being called in these cases:
* open a terminal in panel and start inline chat, start voice chat
* open another panel so that terminal is hidden
* ๐ voice chat does not stop
A similar issue when terminals are in the editor and you open another editor.
Would it be possible for terminal to ensure `hide` is called in these cases? I have https://github.com/microsoft/vscode/pull/212653 for then stopping the voice chat session, but it needs to be called.
| 235 |
212671
|
Silent warning when `argv.json` has syntax errors
|
2024-05-14 08:01:13+00:00
|
2024-06-19 01:55:08+00:00
|
From https://github.com/microsoft/vscode/issues/212664
It seems that if the `argv.json` file has a syntax error (ie trailing comma), then we silently ignore all properties within. This is the reason why crash reporting wasn't enabled for me in https://github.com/microsoft/vscode/issues/212664. My full file was:
```jsonc
// This configuration file allows you to pass permanent command line arguments to VS Code.
// Only a subset of arguments is currently supported to reduce the likelihood of breaking
// the installation.
//
// PLEASE DO NOT CHANGE WITHOUT UNDERSTANDING THE IMPACT
//
// NOTE: Changing this file requires a restart of VS Code.
{
// Use software rendering instead of hardware accelerated rendering.
// This can help in cases where you see rendering issues in VS Code.
// "disable-hardware-acceleration": true,
// Allows to disable crash reporting.
// Should restart the app if the value is changed.
"enable-crash-reporter": true,
// Unique id used for correlating crash reports sent from this instance.
// Do not edit this value.
"crash-reporter-id": "2f300b31-7453-4506-97d0-93411b2c21c7",
"locale": "en",
// "log-level": "trace"
}
```
Notice the trailing comma after `locale`.
A few ideas:
- We should further sanitize the JSON such that trailing commas are removed before [passing it to JSON.parse](https://github.com/microsoft/vscode/blob/dd4f436c64b915f322f1a3f006337078c979b9f3/src/main.js#L312-L313).
- We should also show a warning notification on startup so the user is aware of the issue, with an action to open the file.
|
completed
|
Silent warning when `argv.json` has syntax errors From https://github.com/microsoft/vscode/issues/212664
It seems that if the `argv.json` file has a syntax error (ie trailing comma), then we silently ignore all properties within. This is the reason why crash reporting wasn't enabled for me in https://github.com/microsoft/vscode/issues/212664. My full file was:
```jsonc
// This configuration file allows you to pass permanent command line arguments to VS Code.
// Only a subset of arguments is currently supported to reduce the likelihood of breaking
// the installation.
//
// PLEASE DO NOT CHANGE WITHOUT UNDERSTANDING THE IMPACT
//
// NOTE: Changing this file requires a restart of VS Code.
{
// Use software rendering instead of hardware accelerated rendering.
// This can help in cases where you see rendering issues in VS Code.
// "disable-hardware-acceleration": true,
// Allows to disable crash reporting.
// Should restart the app if the value is changed.
"enable-crash-reporter": true,
// Unique id used for correlating crash reports sent from this instance.
// Do not edit this value.
"crash-reporter-id": "2f300b31-7453-4506-97d0-93411b2c21c7",
"locale": "en",
// "log-level": "trace"
}
```
Notice the trailing comma after `locale`.
A few ideas:
- We should further sanitize the JSON such that trailing commas are removed before [passing it to JSON.parse](https://github.com/microsoft/vscode/blob/dd4f436c64b915f322f1a3f006337078c979b9f3/src/main.js#L312-L313).
- We should also show a warning notification on startup so the user is aware of the issue, with an action to open the file.
| 479 |
212664
|
Shared process disappears out of nothing
|
2024-05-14 07:12:59+00:00
|
2024-05-16 10:37:46+00:00
|
From https://github.com/microsoft/vscode/issues/212103
It's happened to me at least 4 times in the last 2 weeks, I open up a previously running Code Insiders and the extension view loads forever. The process explorer shows that the shared process is gone. There are no crashes in `Crashpad/completed`.
|
completed
|
Shared process disappears out of nothing From https://github.com/microsoft/vscode/issues/212103
It's happened to me at least 4 times in the last 2 weeks, I open up a previously running Code Insiders and the extension view loads forever. The process explorer shows that the shared process is gone. There are no crashes in `Crashpad/completed`.
| 89 |
212600
|
Creating/Removing cells is broken
|
2024-05-13 12:16:41+00:00
|
2024-05-13 17:17:34+00:00
|
Cannot create new cells or remove them (I don't have repro steps; it usually stops working after first time creating a new cell)
https://github.com/microsoft/vscode/assets/16353531/f9c08dd1-d64d-45f0-88c9-e6970b1bb604
Version: 1.90.0-insider
Commit: 29aeab1cbb350107a7bd5962b5e7efe745e0a3ec
Date: 2024-05-13T05:59:57.400Z
Electron: 29.3.1
ElectronBuildId: 9464424
Chromium: 122.0.6261.156
Node.js: 20.9.0
V8: 12.2.281.27-electron.0
OS: Darwin arm64 23.4.0
|
completed
|
Creating/Removing cells is broken Cannot create new cells or remove them (I don't have repro steps; it usually stops working after first time creating a new cell)
https://github.com/microsoft/vscode/assets/16353531/f9c08dd1-d64d-45f0-88c9-e6970b1bb604
Version: 1.90.0-insider
Commit: 29aeab1cbb350107a7bd5962b5e7efe745e0a3ec
Date: 2024-05-13T05:59:57.400Z
Electron: 29.3.1
ElectronBuildId: 9464424
Chromium: 122.0.6261.156
Node.js: 20.9.0
V8: 12.2.281.27-electron.0
OS: Darwin arm64 23.4.0
| 186 |
212585
|
Test Coverage: Confusing line decorations when hovering over line numbers
|
2024-05-13 09:27:30+00:00
|
2024-06-04 21:18:22+00:00
|
Type: <b>Feature Request</b>
When a coverage run has completed, line number backgrounds get coloured to show lines covered (green), not covered (pink) and partly covered (hatched).
When inline coverage is hidden, hovering over a line number reveals inline coverage for the preceding 15 and following 15 lines. It took me a while to understand what was happening. Can this be improved somehow? Or made optional? Do I have any control over the +/- 15 line window size?

VS Code version: Code - Insiders 1.90.0-insider (29aeab1cbb350107a7bd5962b5e7efe745e0a3ec, 2024-05-13T05:48:48.053Z)
OS version: Windows_NT x64 10.0.22631
Modes:
<!-- generated by issue reporter -->
|
completed
|
Test Coverage: Confusing line decorations when hovering over line numbers Type: <b>Feature Request</b>
When a coverage run has completed, line number backgrounds get coloured to show lines covered (green), not covered (pink) and partly covered (hatched).
When inline coverage is hidden, hovering over a line number reveals inline coverage for the preceding 15 and following 15 lines. It took me a while to understand what was happening. Can this be improved somehow? Or made optional? Do I have any control over the +/- 15 line window size?

VS Code version: Code - Insiders 1.90.0-insider (29aeab1cbb350107a7bd5962b5e7efe745e0a3ec, 2024-05-13T05:48:48.053Z)
OS version: Windows_NT x64 10.0.22631
Modes:
<!-- generated by issue reporter -->
| 255 |
212582
|
Hover for annotated explorer entry shows up in wrong spot
|
2024-05-13 08:50:51+00:00
|
2024-05-16 07:20:27+00:00
|

I did rename a file that was under git control.
|
completed
|
Hover for annotated explorer entry shows up in wrong spot 
I did rename a file that was under git control.
| 72 |
212496
|
Removing an instruction breakpoint removes them all
|
2024-05-11 10:54:22+00:00
|
2024-06-03 18:13: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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89
- OS Version: MacOS
Steps to Reproduce:
1. Start a debug session and open the disassembly view
2. Add a few instruction breakpoints, they appear in the breakpoints window
3. In the breakpoints window, use the context menu to remove a single instruction breakpoint
4. All instruction breakpoints are removed
May be related (although this no longer seems to be an issue in my testing): https://github.com/microsoft/vscode/issues/129572
|
completed
|
Removing an instruction breakpoint removes them all <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89
- OS Version: MacOS
Steps to Reproduce:
1. Start a debug session and open the disassembly view
2. Add a few instruction breakpoints, they appear in the breakpoints window
3. In the breakpoints window, use the context menu to remove a single instruction breakpoint
4. All instruction breakpoints are removed
May be related (although this no longer seems to be an issue in my testing): https://github.com/microsoft/vscode/issues/129572
| 422 |
212493
|
code-insiders don't want to work
|
2024-05-11 09:42: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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.90.0-insider
26c4a07b47a2bd34480a5e4cba2c2384c590b039
x64
- OS Version: Ubuntu 23.10
Steps to Reproduce:
1. idk, but i have screen record
3. https://drive.google.com/file/d/1hWm7oWDOEE0SHO-ZbPccvjcDMV2WxLLg/view?usp=sharing
|
code-insiders don't want to work <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.90.0-insider
26c4a07b47a2bd34480a5e4cba2c2384c590b039
x64
- OS Version: Ubuntu 23.10
Steps to Reproduce:
1. idk, but i have screen record
3. https://drive.google.com/file/d/1hWm7oWDOEE0SHO-ZbPccvjcDMV2WxLLg/view?usp=sharing
| 417 |
||
212487
|
Bash cannot find conda path in vscode terminal
|
2024-05-11 06:19:28+00:00
|
2024-05-17 16:13: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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89
- OS Version: Windows 11
Steps to Reproduce:
1. Select Git Bash as vscode terminal
2. Input conda command
``` bash
conda info
```
4. Output
``` bash
bash: D:\APPsnaconda3\Scripts: No such file or directory`
```
PS: The correct path should be `D:\APPs\anaconda3\Scripts`.
The problem appears to be caused by the fact that the first letter of `anaconda3` is lowercase, causing the characters `\a` to be automatically removed. But in previous version, I was able to use it properly in the vscode terminal. Please fix this bug, thanks.
```[tasklist]
### Tasks
```
|
completed
|
Bash cannot find conda path in vscode terminal <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89
- OS Version: Windows 11
Steps to Reproduce:
1. Select Git Bash as vscode terminal
2. Input conda command
``` bash
conda info
```
4. Output
``` bash
bash: D:\APPsnaconda3\Scripts: No such file or directory`
```
PS: The correct path should be `D:\APPs\anaconda3\Scripts`.
The problem appears to be caused by the fact that the first letter of `anaconda3` is lowercase, causing the characters `\a` to be automatically removed. But in previous version, I was able to use it properly in the vscode terminal. Please fix this bug, thanks.
```[tasklist]
### Tasks
```
| 479 |
212468
|
Chat list view UI glitches
|
2024-05-10 20:05:58+00:00
|
2024-05-10 22:43:42+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
It seems the calculation of sizes (or cache) is wrong sometimes
https://github.com/microsoft/vscode/assets/876920/e585d0d0-98cb-4d49-9524-0eda624b9afb
|
completed
|
Chat list view UI glitches <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
It seems the calculation of sizes (or cache) is wrong sometimes
https://github.com/microsoft/vscode/assets/876920/e585d0d0-98cb-4d49-9524-0eda624b9afb
| 365 |
212467
|
Redundant `Open Workspace` button appears after `Preferences: Open Workspace Settings (JSON)`
|
2024-05-10 19:57:24+00:00
|
Type: <b>Bug</b>
1. Open a workspace from a .code-workspace file.
2. Use Command Palette to run `Preferences: Open Workspace Settings (JSON)`
3. The lower right corner of the file editor offers a button with which to open the workspace, despite it being already open.

VS Code version: Code - Insiders 1.90.0-insider (1facdf8117ba7aa833fa90539414e310a581e74c, 2024-05-10T05:50:12.930Z)
OS version: Windows_NT x64 10.0.22631
Modes:
<!-- generated by issue reporter -->
|
Redundant `Open Workspace` button appears after `Preferences: Open Workspace Settings (JSON)` Type: <b>Bug</b>
1. Open a workspace from a .code-workspace file.
2. Use Command Palette to run `Preferences: Open Workspace Settings (JSON)`
3. The lower right corner of the file editor offers a button with which to open the workspace, despite it being already open.

VS Code version: Code - Insiders 1.90.0-insider (1facdf8117ba7aa833fa90539414e310a581e74c, 2024-05-10T05:50:12.930Z)
OS version: Windows_NT x64 10.0.22631
Modes:
<!-- generated by issue reporter -->
| 226 |
||
212455
|
Can't see blinking cursor when it's moved before a closing character like ) or }
|
2024-05-10 17:16:59+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: No (but)
* but: I see the blinking cursor because the box around the matching ( and ) have a dimmer color, but I can see the cursor overlaps the left side of the box, that overlapping in some themes lead to an invisible cursor if the box is not dim enough.

See the left side of the box is brighter? that's the cursor, that overlaps exactly with the left side of the box around the closing )
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.0 (it happened with previous versions too)
- OS Version: Linux Mint 21
Steps to Reproduce:
The blinking cursor is at the end and I can see it blinks, one pixel to the right of the box that appears for the matching ( and ).

Then I move the cursor one character to the left, and I don't see it blinking, basically I lost where the cursor is, then need to grab the mouse to point, which is a waste of time.

It would be better to show the blinking cursor on top of everything else, even those boxes for the matching opening and closing characters, and use a different color too.
|
Can't see blinking cursor when it's moved before a closing character like ) or } <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: No (but)
* but: I see the blinking cursor because the box around the matching ( and ) have a dimmer color, but I can see the cursor overlaps the left side of the box, that overlapping in some themes lead to an invisible cursor if the box is not dim enough.

See the left side of the box is brighter? that's the cursor, that overlaps exactly with the left side of the box around the closing )
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.0 (it happened with previous versions too)
- OS Version: Linux Mint 21
Steps to Reproduce:
The blinking cursor is at the end and I can see it blinks, one pixel to the right of the box that appears for the matching ( and ).

Then I move the cursor one character to the left, and I don't see it blinking, basically I lost where the cursor is, then need to grab the mouse to point, which is a waste of time.

It would be better to show the blinking cursor on top of everything else, even those boxes for the matching opening and closing characters, and use a different color too.
| 744 |
||
212430
|
VSCode is not compatible with Ubuntu 24.04 with wayland default
|
2024-05-10 10:26: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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.1
- OS Version: Ubuntu 24.04 (wayland enabled)
Steps to Reproduce:
1. Fresh install Ubuntu 24.04
2. apt install code latest version (have try many version back to 1.85 or deb from official side or snap)
3. open a exist folder contains file
4. open file / terminal , vscode
5. VSCode began to experience many strange behaviors, including not responding to shortcut keys, clicking buttons on the UI was not respond, and click button on dialog box but automatically switched to other app UI. It's basically unavailable...
I upload the following video to show parts of the issue
[Screencast from 2024-05-10 18-43-29.webm](https://github.com/microsoft/vscode/assets/776423/3f04abfd-f502-469b-9e35-ef4143e05209)
When my mouse is hovering over the popup or terminal, I actually click a lot of mouse or type a lot of keyboard, but vscode does not respond.
However, I disable wayland by editing '/etc/gdm3/custom.conf' , add following line
```
WaylandEnable=false
```
And reboot, everything works like charms.
Not sure if it's wayland bug or vscode problem, seems not compatible with wayland under linux.
|
VSCode is not compatible with Ubuntu 24.04 with wayland default <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.1
- OS Version: Ubuntu 24.04 (wayland enabled)
Steps to Reproduce:
1. Fresh install Ubuntu 24.04
2. apt install code latest version (have try many version back to 1.85 or deb from official side or snap)
3. open a exist folder contains file
4. open file / terminal , vscode
5. VSCode began to experience many strange behaviors, including not responding to shortcut keys, clicking buttons on the UI was not respond, and click button on dialog box but automatically switched to other app UI. It's basically unavailable...
I upload the following video to show parts of the issue
[Screencast from 2024-05-10 18-43-29.webm](https://github.com/microsoft/vscode/assets/776423/3f04abfd-f502-469b-9e35-ef4143e05209)
When my mouse is hovering over the popup or terminal, I actually click a lot of mouse or type a lot of keyboard, but vscode does not respond.
However, I disable wayland by editing '/etc/gdm3/custom.conf' , add following line
```
WaylandEnable=false
```
And reboot, everything works like charms.
Not sure if it's wayland bug or vscode problem, seems not compatible with wayland under linux.
| 617 |
||
212426
|
Terminal path does not exist (after 1.89.1 upgrade)
|
2024-05-10 09:33:18+00:00
|
2024-05-13 16:33:29+00:00
|
After upgrading VSCode on Ubuntu, a simple shortcut firing `workbench.action.terminal.newWithCwd` just stopped working as seen below. The path definitely exists and restarted the computer - same issue.
**This breaks my whole workflow so can't do any actual work.**

<!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: **YES**
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.1 dc96b837cf6bb4af9cd736aa3af08cf8279f7685 x64
- OS Version: Ubuntu 24.04
Steps to Reproduce:
1. Add the keybinding
```json
{
"key": "ctrl+`",
"command": "workbench.action.terminal.newWithCwd",
"when": "editorTextFocus && !editorReadonly",
"args": {
"cwd": "${fileDirname}"
}
},
```
2. Press \` + `Ctrl`

|
completed
|
Terminal path does not exist (after 1.89.1 upgrade) After upgrading VSCode on Ubuntu, a simple shortcut firing `workbench.action.terminal.newWithCwd` just stopped working as seen below. The path definitely exists and restarted the computer - same issue.
**This breaks my whole workflow so can't do any actual work.**

<!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: **YES**
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.1 dc96b837cf6bb4af9cd736aa3af08cf8279f7685 x64
- OS Version: Ubuntu 24.04
Steps to Reproduce:
1. Add the keybinding
```json
{
"key": "ctrl+`",
"command": "workbench.action.terminal.newWithCwd",
"when": "editorTextFocus && !editorReadonly",
"args": {
"cwd": "${fileDirname}"
}
},
```
2. Press \` + `Ctrl`

| 609 |
212413
|
Can not step into WASM
|
2024-05-10 06:25:55+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
Version: 1.88.1 (user setup)
Commit: e170252f762678dec6ca2cc69aba1570769a5d39
Date: 2024-04-10T17:41:02.734Z
Electron: 28.2.8
ElectronBuildId: 27744544
Chromium: 120.0.6099.291
Node.js: 18.18.2
V8: 12.0.267.19-electron.0
OS: Windows_NT x64 10.0.22621
Steps to Reproduce:
- Build any web assembly module with emscripten (version 3.1.59)
The main flags of importance in my project are:
`-gseparate-dwarf=fbl-min-test.debug.wasm -sSEPARATE_DWARF_URL=http://localhost/build-dbg/fbl-min-test.debug.wasm`
- when trying to step into wasm while attached will just hang the debugger . (This works in chrome by itself )
- Attaching vscode while already stepped in on chrome will just pull up 'binary content not shown' (both with and without the WASM extension)

I considered posting this on the extension github but it seems broken even without, because stepping into wasm code freezes the debugger.
|
Can not step into WASM <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
Version: 1.88.1 (user setup)
Commit: e170252f762678dec6ca2cc69aba1570769a5d39
Date: 2024-04-10T17:41:02.734Z
Electron: 28.2.8
ElectronBuildId: 27744544
Chromium: 120.0.6099.291
Node.js: 18.18.2
V8: 12.0.267.19-electron.0
OS: Windows_NT x64 10.0.22621
Steps to Reproduce:
- Build any web assembly module with emscripten (version 3.1.59)
The main flags of importance in my project are:
`-gseparate-dwarf=fbl-min-test.debug.wasm -sSEPARATE_DWARF_URL=http://localhost/build-dbg/fbl-min-test.debug.wasm`
- when trying to step into wasm while attached will just hang the debugger . (This works in chrome by itself )
- Attaching vscode while already stepped in on chrome will just pull up 'binary content not shown' (both with and without the WASM extension)

I considered posting this on the extension github but it seems broken even without, because stepping into wasm code freezes the debugger.
| 636 |
||
212386
|
Local history: does not preserve entries from previously deleted file
|
2024-05-09 20:51:34+00:00
|
2024-05-13 10:09:09+00:00
|
Type: <b>Bug</b>
1. Create file `foo.txt` with some content. Save it
2. Delete `foo.txt`
3. Create `bar.txt`
4. Rename `bar.txt` to `foo.txt`
5. Look at TIMELINE
6. See no history for `foo.txt` created in step 1.
Normally when one recreates `foo.txt` you can still see history for it. But in the case where a file is renamed to `foo.txt`, the history is loss.
VS Code version: Code 1.89.1
OS version: Windows_NT x64 10.0.22631
Modes:
<details>
<summary>System Info</summary>
|Item|Value|
|---|---|
|CPUs|AMD Ryzen 7 5800X3D 8-Core Processor (16 x 3400)|
|GPU Status|2d_canvas: enabled<br>canvas_oop_rasterization: enabled_on<br>direct_rendering_display_compositor: disabled_off_ok<br>gpu_compositing: enabled<br>multiple_raster_threads: enabled_on<br>opengl: enabled_on<br>rasterization: enabled<br>raw_draw: disabled_off_ok<br>skia_graphite: disabled_off<br>video_decode: enabled<br>video_encode: enabled<br>vulkan: disabled_off<br>webgl: enabled<br>webgl2: enabled<br>webgpu: enabled|
|Load (avg)|undefined|
|Memory (System)|31.92GB (16.35GB free)|
|Process Argv|--crash-reporter-id cca6ff05-6383-4d91-895f-0091516fe9b0|
|Screen Reader|no|
|VM|0%|
</details>Extensions: none
<!-- generated by issue reporter -->
|
completed
|
Local history: does not preserve entries from previously deleted file Type: <b>Bug</b>
1. Create file `foo.txt` with some content. Save it
2. Delete `foo.txt`
3. Create `bar.txt`
4. Rename `bar.txt` to `foo.txt`
5. Look at TIMELINE
6. See no history for `foo.txt` created in step 1.
Normally when one recreates `foo.txt` you can still see history for it. But in the case where a file is renamed to `foo.txt`, the history is loss.
VS Code version: Code 1.89.1
OS version: Windows_NT x64 10.0.22631
Modes:
<details>
<summary>System Info</summary>
|Item|Value|
|---|---|
|CPUs|AMD Ryzen 7 5800X3D 8-Core Processor (16 x 3400)|
|GPU Status|2d_canvas: enabled<br>canvas_oop_rasterization: enabled_on<br>direct_rendering_display_compositor: disabled_off_ok<br>gpu_compositing: enabled<br>multiple_raster_threads: enabled_on<br>opengl: enabled_on<br>rasterization: enabled<br>raw_draw: disabled_off_ok<br>skia_graphite: disabled_off<br>video_decode: enabled<br>video_encode: enabled<br>vulkan: disabled_off<br>webgl: enabled<br>webgl2: enabled<br>webgpu: enabled|
|Load (avg)|undefined|
|Memory (System)|31.92GB (16.35GB free)|
|Process Argv|--crash-reporter-id cca6ff05-6383-4d91-895f-0091516fe9b0|
|Screen Reader|no|
|VM|0%|
</details>Extensions: none
<!-- generated by issue reporter -->
| 489 |
212369
|
serve-web: `SECRET_KEY_MINT_PATH` does not honour `server-base-path`
|
2024-05-09 17:41:37+00:00
|
2024-06-04 16:57:19+00:00
|
The `code serve-web` command was augmented with the `server-base-path` argument here in https://github.com/microsoft/vscode/pull/207932.
Because the `SECRET_KEY_MINT_PATH` does not include the `server-base-path`, any attempts to mint a key will result in a 404 if the server-base-path is set.
I think this is the reason why I am experiencing an issue that any sign-in attempt in the browser (e.g., Github Copilot, Settings Sync) do not persist between page refreshes.
<!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.1
- OS Version: x64
Steps to Reproduce:
1. Launch `code serve-web --server-base-path=<something>`
2. Open the browser, observe 404s to `/_vscode-cli/mint-key`
|
completed
|
serve-web: `SECRET_KEY_MINT_PATH` does not honour `server-base-path` The `code serve-web` command was augmented with the `server-base-path` argument here in https://github.com/microsoft/vscode/pull/207932.
Because the `SECRET_KEY_MINT_PATH` does not include the `server-base-path`, any attempts to mint a key will result in a 404 if the server-base-path is set.
I think this is the reason why I am experiencing an issue that any sign-in attempt in the browser (e.g., Github Copilot, Settings Sync) do not persist between page refreshes.
<!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.1
- OS Version: x64
Steps to Reproduce:
1. Launch `code serve-web --server-base-path=<something>`
2. Open the browser, observe 404s to `/_vscode-cli/mint-key`
| 528 |
212366
|
Disable semantic errors in JS/TS notebook cells
|
2024-05-09 16:57:41+00:00
|
2024-05-09 17:20:23+00:00
|
Until we have better support for notebooks, we should disable semantic errors in js/ts notebook cells as they are often false positives
cc @rebornix
|
completed
|
Disable semantic errors in JS/TS notebook cells Until we have better support for notebooks, we should disable semantic errors in js/ts notebook cells as they are often false positives
cc @rebornix
| 56 |
212355
|
Tooltip only displaying for Show Settings Watermark Control+,
|
2024-05-09 14:19:06+00:00
|
2024-05-15 07:42:22+00:00
|
Version of VS Code: 1.89.0

Your operating system: Windows 11
List of extensions that you have installed: Happens with none installed.
Reproducible steps:
1 - Open VsCode.
2 - Hover over the Show Settings Ctrl + , Watermark
3 - Hover over Find in Files Ctrl + Shift + F
What you expected to see, versus what you actually saw:
When hover on Ctrl + ,

When hover on Ctrl + Shift + F and any other

https://github.com/microsoft/vscode/blob/9eff384b7799006696343d672afe4ce7b7aa774b/src/vs/workbench/browser/parts/editor/editorGroupWatermark.ts#L39
|
completed
|
Tooltip only displaying for Show Settings Watermark Control+, Version of VS Code: 1.89.0

Your operating system: Windows 11
List of extensions that you have installed: Happens with none installed.
Reproducible steps:
1 - Open VsCode.
2 - Hover over the Show Settings Ctrl + , Watermark
3 - Hover over Find in Files Ctrl + Shift + F
What you expected to see, versus what you actually saw:
When hover on Ctrl + ,

When hover on Ctrl + Shift + F and any other

https://github.com/microsoft/vscode/blob/9eff384b7799006696343d672afe4ce7b7aa774b/src/vs/workbench/browser/parts/editor/editorGroupWatermark.ts#L39
| 331 |
212352
|
powerline10k MesloLGS NF icon is cut off
|
2024-05-09 13:11:43+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
Version: 1.90.0-insider (Universal)
Commit: 5f78b58b57b7cf84d28d801fed6bb4a48f908601
Date: 2024-05-09T05:51:12.471Z (7 hrs ago)
Electron: 28.2.8
ElectronBuildId: 27744544
Chromium: 120.0.6099.291
Node.js: 18.18.2
V8: 12.0.267.19-electron.0
OS: Darwin arm64 23.4.0
Steps to Reproduce:
0. clean install vscode (insider) on macOS
1. install the oh-my-zsh
2. install the powerline10k MesloLGS NF https://github.com/romkatv/powerlevel10k?tab=readme-ov-file#manual-font-installation
3. install the powerline10k and configure it to lean style
4. the leftmost apple logo icon is cut off a few pixels
Clear comparison on VS Code (insider) and macOS Terminal:
<img width="837" alt="image" src="https://github.com/microsoft/vscode/assets/11660168/2be50882-ad2f-45ef-8948-3f25b1cb78d4">
|
powerline10k MesloLGS NF icon is cut off <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
Version: 1.90.0-insider (Universal)
Commit: 5f78b58b57b7cf84d28d801fed6bb4a48f908601
Date: 2024-05-09T05:51:12.471Z (7 hrs ago)
Electron: 28.2.8
ElectronBuildId: 27744544
Chromium: 120.0.6099.291
Node.js: 18.18.2
V8: 12.0.267.19-electron.0
OS: Darwin arm64 23.4.0
Steps to Reproduce:
0. clean install vscode (insider) on macOS
1. install the oh-my-zsh
2. install the powerline10k MesloLGS NF https://github.com/romkatv/powerlevel10k?tab=readme-ov-file#manual-font-installation
3. install the powerline10k and configure it to lean style
4. the leftmost apple logo icon is cut off a few pixels
Clear comparison on VS Code (insider) and macOS Terminal:
<img width="837" alt="image" src="https://github.com/microsoft/vscode/assets/11660168/2be50882-ad2f-45ef-8948-3f25b1cb78d4">
| 591 |
||
212342
|
"Run Tests" explorer option does not discover tests before trying to run
|
2024-05-09 10:17:15+00:00
|
2024-06-04 18:49:49+00:00
|
If I open a Dart project, right-click on a folder in the explorer and then "Run Tests", I see:

However if I open the test explorer tree first and then try again, everything works.
It appears that "Run Tests" from explorer does not trigger the `resolveHandler` to allow initial test discovery.
(@connor4312 I presume this is a bug and not intended?)
|
completed
|
"Run Tests" explorer option does not discover tests before trying to run If I open a Dart project, right-click on a folder in the explorer and then "Run Tests", I see:

However if I open the test explorer tree first and then try again, everything works.
It appears that "Run Tests" from explorer does not trigger the `resolveHandler` to allow initial test discovery.
(@connor4312 I presume this is a bug and not intended?)
| 153 |
212323
|
Accessibility: No name is defined for button
|
2024-05-09 03:46:44+00:00
|
2024-05-13 17:56: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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.0
- OS Version: Windows 11 Enterprise 23H2 (OS build 22631.3296)
Copied from https://github.com/microsoft/vscode-azureapicenter/issues/100
### GitHub Tags
#A11yTCS; #A11ySev2; #Win32; #WCAG4.1.2; #GH_VSCodeextensionforAPICenter_Win32_Apr2024; #DesktopApp; #VS Code Extension for API Center; #Name Role Value; #AILimited; #A11yMAS;
### Environment Details:
Application Name: VS Code Extension for API Center
OS: Windows 11 Enterprise 23H2 (OS build 22631.3296)
### Repro Steps:
1. Create a API center in azure portal.
2. Open Visual studio Code.
3. Tab till Chat option in the left side panel and press enter.
4. Type @workspace /tests in the copilot chat box.
5. Verify whether the name is defined for "How can I write unit tests for python function" button or not.
### Actual Result:
No name is defined for "How can I write unit tests for python function" button.
### Expected Result:
Name should be defined for "How can I write unit tests for python function" button.
### User Impact:
Screen reader users will not get the information about the functionality of the button if name is not defined.
### Attachment:

|
completed
|
Accessibility: No name is defined for button <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.0
- OS Version: Windows 11 Enterprise 23H2 (OS build 22631.3296)
Copied from https://github.com/microsoft/vscode-azureapicenter/issues/100
### GitHub Tags
#A11yTCS; #A11ySev2; #Win32; #WCAG4.1.2; #GH_VSCodeextensionforAPICenter_Win32_Apr2024; #DesktopApp; #VS Code Extension for API Center; #Name Role Value; #AILimited; #A11yMAS;
### Environment Details:
Application Name: VS Code Extension for API Center
OS: Windows 11 Enterprise 23H2 (OS build 22631.3296)
### Repro Steps:
1. Create a API center in azure portal.
2. Open Visual studio Code.
3. Tab till Chat option in the left side panel and press enter.
4. Type @workspace /tests in the copilot chat box.
5. Verify whether the name is defined for "How can I write unit tests for python function" button or not.
### Actual Result:
No name is defined for "How can I write unit tests for python function" button.
### Expected Result:
Name should be defined for "How can I write unit tests for python function" button.
### User Impact:
Screen reader users will not get the information about the functionality of the button if name is not defined.
### Attachment:

| 693 |
212313
|
Logpoints printed twice when debugging VS Code
|
2024-05-09 01:47:47+00:00
|
Debug VS Code, set logpoints, look at "internal" debug console.
I don't remember seeing this, did something change with logpoints?
<img width="614" alt="image" src="https://github.com/microsoft/vscode/assets/323878/f113de4b-a73a-42a7-bdb7-c70721e7cc19">
|
Logpoints printed twice when debugging VS Code Debug VS Code, set logpoints, look at "internal" debug console.
I don't remember seeing this, did something change with logpoints?
<img width="614" alt="image" src="https://github.com/microsoft/vscode/assets/323878/f113de4b-a73a-42a7-bdb7-c70721e7cc19">
| 108 |
||
212304
|
Indenting Output events is causing source property to be ignored.
|
2024-05-08 23:13:40+00:00
|
2024-06-04 22:20: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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.0
- OS Version: macOS 14.4.1 (23E224)
Steps to Reproduce:
1. Create new OutputEvent with following properties:
- body.source
- body.group
2. send the OutputEvent using debbugAdapter.sendEvent()
3. The source is not going to be displayed as expected.
<img width="1216" alt="Screenshot 2024-05-09 at 01 04 10" src="https://github.com/microsoft/vscode/assets/159789821/47159880-968b-4c8d-8d84-03bf3eac27b8">
<img width="1215" alt="Screenshot 2024-05-09 at 01 04 57" src="https://github.com/microsoft/vscode/assets/159789821/03db708f-abaa-4ec1-ab52-9541651001d6">
<img width="538" alt="Screenshot 2024-05-09 at 01 05 16" src="https://github.com/microsoft/vscode/assets/159789821/5a9ffa05-467c-4211-ab8a-492810827b2b">
<img width="567" alt="Screenshot 2024-05-09 at 01 05 26" src="https://github.com/microsoft/vscode/assets/159789821/7563996f-a99d-4bff-ba1e-3278a4166f82">
|
completed
|
Indenting Output events is causing source property to be ignored. <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.0
- OS Version: macOS 14.4.1 (23E224)
Steps to Reproduce:
1. Create new OutputEvent with following properties:
- body.source
- body.group
2. send the OutputEvent using debbugAdapter.sendEvent()
3. The source is not going to be displayed as expected.
<img width="1216" alt="Screenshot 2024-05-09 at 01 04 10" src="https://github.com/microsoft/vscode/assets/159789821/47159880-968b-4c8d-8d84-03bf3eac27b8">
<img width="1215" alt="Screenshot 2024-05-09 at 01 04 57" src="https://github.com/microsoft/vscode/assets/159789821/03db708f-abaa-4ec1-ab52-9541651001d6">
<img width="538" alt="Screenshot 2024-05-09 at 01 05 16" src="https://github.com/microsoft/vscode/assets/159789821/5a9ffa05-467c-4211-ab8a-492810827b2b">
<img width="567" alt="Screenshot 2024-05-09 at 01 05 26" src="https://github.com/microsoft/vscode/assets/159789821/7563996f-a99d-4bff-ba1e-3278a4166f82">
| 657 |
212278
|
Terminal copilot hint shows in restored terminals
|
2024-05-08 17:42:39+00:00
|
2024-06-03 20:00:37+00:00
|
When I use a terminal, then reload the window, sometimes the terminal hint shows even though there is history in the terminal. That feels inconsistent, maybe I should only see it in a totally fresh terminal
<img width="725" alt="image" src="https://github.com/microsoft/vscode/assets/323878/ff4b0729-e68f-44af-b80b-1d9c1eb27929">
|
completed
|
Terminal copilot hint shows in restored terminals When I use a terminal, then reload the window, sometimes the terminal hint shows even though there is history in the terminal. That feels inconsistent, maybe I should only see it in a totally fresh terminal
<img width="725" alt="image" src="https://github.com/microsoft/vscode/assets/323878/ff4b0729-e68f-44af-b80b-1d9c1eb27929">
| 118 |
212259
|
Unthemable product icons #2
|
2024-05-08 12:04:30+00:00
|
2024-05-13 08:25:30+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes (all other extensions disabled)
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- Version: 1.89.0
- Commit: b58957e67ee1e712cebf466b995adf4c5307b2bd
- Date: 2024-05-01T02:09:22.859Z
- Electron: 28.2.8
- ElectronBuildId: 27744544
- Chromium: 120.0.6099.291
- Node.js: 18.18.2
- V8: 12.0.267.19-electron.0
- OS: Windows_NT x64 10.0.22621
---
This is a continuation of https://github.com/microsoft/vscode/issues/208343. I'm in the process of creating a product icon theme and noticed the following icons not being (properly) replaced. They either appear invisible or are unthemed. There may be more icons that suffer from the same problems described below, but I have not been able to find them as of writing this.
### Settings icon, used for the settings editor tab
The icon is invisible after applying the theme.
This is due to the following CSS rule overriding the `font-family` attribute:

### Search icon, used for the search editor tab
Same as settings editor tab icon, it's invisible for the same CSS rule overriding the `font-family` attribute.
### More/three dots (codicon-toolbar-more)
Visible in, for example, output and terminal panel views (left next to close icon), editor tabs more actions (where the 'split editor' action icons is), etc.
This doesn't appear to get any overrides at all, so it remains unthemed.
### Setting editor item chevron-down dropdown icon
The icon is invisible after applying the theme.
This is due to the a second `font-family` attribute always being present and overriding the first attribute that correctly retrieves which value `font-family` should have.

|
completed
|
Unthemable product icons #2 <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes (all other extensions disabled)
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- Version: 1.89.0
- Commit: b58957e67ee1e712cebf466b995adf4c5307b2bd
- Date: 2024-05-01T02:09:22.859Z
- Electron: 28.2.8
- ElectronBuildId: 27744544
- Chromium: 120.0.6099.291
- Node.js: 18.18.2
- V8: 12.0.267.19-electron.0
- OS: Windows_NT x64 10.0.22621
---
This is a continuation of https://github.com/microsoft/vscode/issues/208343. I'm in the process of creating a product icon theme and noticed the following icons not being (properly) replaced. They either appear invisible or are unthemed. There may be more icons that suffer from the same problems described below, but I have not been able to find them as of writing this.
### Settings icon, used for the settings editor tab
The icon is invisible after applying the theme.
This is due to the following CSS rule overriding the `font-family` attribute:

### Search icon, used for the search editor tab
Same as settings editor tab icon, it's invisible for the same CSS rule overriding the `font-family` attribute.
### More/three dots (codicon-toolbar-more)
Visible in, for example, output and terminal panel views (left next to close icon), editor tabs more actions (where the 'split editor' action icons is), etc.
This doesn't appear to get any overrides at all, so it remains unthemed.
### Setting editor item chevron-down dropdown icon
The icon is invisible after applying the theme.
This is due to the a second `font-family` attribute always being present and overriding the first attribute that correctly retrieves which value `font-family` should have.

| 839 |
212234
|
Cannot read properties of undefined (reading 'onDidChangeCursorSelection')
|
2024-05-08 06:48:26+00:00
|
2024-06-05 17:59:20+00:00
|
```javascript
TypeError: Cannot read properties of undefined (reading 'onDidChangeCursorSelection')
at d.attachTextEditor in src/vs/workbench/contrib/notebook/browser/viewModel/baseCellViewModel.ts:275:47
at <anonymous> in src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.ts:214:19
```
[Go to Errors Site](https://errors.code.visualstudio.com/card?ch=b58957e67ee1e712cebf466b995adf4c5307b2bd&bH=510f4026-f0b8-873f-e59c-3f029b77afd6)
|
completed
|
Cannot read properties of undefined (reading 'onDidChangeCursorSelection') ```javascript
TypeError: Cannot read properties of undefined (reading 'onDidChangeCursorSelection')
at d.attachTextEditor in src/vs/workbench/contrib/notebook/browser/viewModel/baseCellViewModel.ts:275:47
at <anonymous> in src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.ts:214:19
```
[Go to Errors Site](https://errors.code.visualstudio.com/card?ch=b58957e67ee1e712cebf466b995adf4c5307b2bd&bH=510f4026-f0b8-873f-e59c-3f029b77afd6)
| 217 |
212232
|
Cannot read properties of undefined (reading 'add')
|
2024-05-08 06:47:36+00:00
|
2024-06-04 21:19:13+00:00
|
```javascript
TypeError: Cannot read properties of undefined (reading 'add')
at d.value in src/vs/workbench/api/browser/mainThreadDebugService.ts:47:46
at s.y in src/vs/base/common/event.ts:1156:13
at s.z in src/vs/base/common/event.ts:1167:9
at s.fire in src/vs/base/common/event.ts:1191:9
at <anonymous> in src/vs/workbench/contrib/debug/browser/debugService.ts:871:29
```
[Go to Errors Site](https://errors.code.visualstudio.com/card?ch=b58957e67ee1e712cebf466b995adf4c5307b2bd&bH=a4422993-b89e-7f4a-f561-349c04126ab4)
|
completed
|
Cannot read properties of undefined (reading 'add') ```javascript
TypeError: Cannot read properties of undefined (reading 'add')
at d.value in src/vs/workbench/api/browser/mainThreadDebugService.ts:47:46
at s.y in src/vs/base/common/event.ts:1156:13
at s.z in src/vs/base/common/event.ts:1167:9
at s.fire in src/vs/base/common/event.ts:1191:9
at <anonymous> in src/vs/workbench/contrib/debug/browser/debugService.ts:871:29
```
[Go to Errors Site](https://errors.code.visualstudio.com/card?ch=b58957e67ee1e712cebf466b995adf4c5307b2bd&bH=a4422993-b89e-7f4a-f561-349c04126ab4)
| 247 |
212221
|
Terminal copilot hint overlap
|
2024-05-08 02:04:14+00:00
|
2024-05-13 18:49:48+00:00
|
I see this, but I think I've seen it correct in the past? But right now it's reproable in new terminals
<img width="708" alt="image" src="https://github.com/microsoft/vscode/assets/323878/9b33ee59-ac7d-4e0e-91bb-10944404ecab">
|
completed
|
Terminal copilot hint overlap I see this, but I think I've seen it correct in the past? But right now it's reproable in new terminals
<img width="708" alt="image" src="https://github.com/microsoft/vscode/assets/323878/9b33ee59-ac7d-4e0e-91bb-10944404ecab">
| 94 |
212180
|
Bash: Bad Substitution
|
2024-05-07 15:16:04+00:00
|
2024-05-30 14:36:29+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.90.0
- OS Version: Linux x64 5.15.156-102.160.amzn2.x86_64
Steps to Reproduce:
1. Open a terminal (bash)
2. I get the following message:
bash: ${__vsc_original_PS1@P}: bad substitution
3. Message reappears after every command in the shell
|
completed
|
Bash: Bad Substitution <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.90.0
- OS Version: Linux x64 5.15.156-102.160.amzn2.x86_64
Steps to Reproduce:
1. Open a terminal (bash)
2. I get the following message:
bash: ${__vsc_original_PS1@P}: bad substitution
3. Message reappears after every command in the shell
| 388 |
212167
|
Debugger: Collapse multiline values in variable pane preview
|
2024-05-07 12:49:11+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. -->
In the debugger variable pane, VSCode shows a truncated, single line preview of the value returned in the DAP Variable type. It would often be more useful to show more than just the first line, and it is further confusing that when the first line is shorter than the width provided, no ellipsis is shown, so that it is unclear that there is actually a second line.
For example, if the DAP value is something like:
```
{
"name":"city",
"value":"criterion_id: 1\ncountry_code: \"DE\"\ncity_name: \"chicago\"\n"
...
}
```
Currently we show this:

I think it would be more useful to not use `white-space: pre`, so that instead we show:

First, if there is more space, it is used. Second, there is always an ellipsis symbol when something was cut off, not just if there is something cut off in the first line.
Happy to send a PR deleting the `white-space: ellipsis` if you agree this is an improvement.
|
Debugger: Collapse multiline values in variable pane preview <!-- โ ๏ธโ ๏ธ 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. -->
In the debugger variable pane, VSCode shows a truncated, single line preview of the value returned in the DAP Variable type. It would often be more useful to show more than just the first line, and it is further confusing that when the first line is shorter than the width provided, no ellipsis is shown, so that it is unclear that there is actually a second line.
For example, if the DAP value is something like:
```
{
"name":"city",
"value":"criterion_id: 1\ncountry_code: \"DE\"\ncity_name: \"chicago\"\n"
...
}
```
Currently we show this:

I think it would be more useful to not use `white-space: pre`, so that instead we show:

First, if there is more space, it is used. Second, there is always an ellipsis symbol when something was cut off, not just if there is something cut off in the first line.
Happy to send a PR deleting the `white-space: ellipsis` if you agree this is an improvement.
| 434 |
||
212143
|
Missing Hot Reload button in debug toolbar
|
2024-05-07 04:10:40+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.0
- OS Version: macOS Sonoma 14.1.2 arm64
## Steps to Reproduce:
This issue coming from https://github.com/Dart-Code/Dart-Code/issues/5055. Cc @DanTup
1. Install Flutter extension from marketplace
2. Open/Create Flutter project in Vscode
3. Run the app by clicking the run button inside the IDE
4. Wait until the app is running on platform (eg emulators)
## Expected behavior
Hot reload button will appear :zap:
<img width="405" alt="Screenshot 2024-05-07 at 12 09 20โฏPM" src="https://github.com/microsoft/vscode/assets/60868965/49c26e8e-403c-48de-9121-c939d4798fe4">
## Actual behavior
Hot reload button doesn't appear
<img width="537" alt="Screenshot 2024-05-07 at 12 06 06โฏPM" src="https://github.com/microsoft/vscode/assets/60868965/780ec5c5-e331-446b-a4a6-caf10ef6038c">
## Workaround
Toggle `debug.toolBarLocation` brings back the Hot Reload Button
https://github.com/microsoft/vscode/assets/60868965/dbdf3ac5-60d1-45ae-8c55-4f08f07a225f
|
Missing Hot Reload button in debug toolbar <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.0
- OS Version: macOS Sonoma 14.1.2 arm64
## Steps to Reproduce:
This issue coming from https://github.com/Dart-Code/Dart-Code/issues/5055. Cc @DanTup
1. Install Flutter extension from marketplace
2. Open/Create Flutter project in Vscode
3. Run the app by clicking the run button inside the IDE
4. Wait until the app is running on platform (eg emulators)
## Expected behavior
Hot reload button will appear :zap:
<img width="405" alt="Screenshot 2024-05-07 at 12 09 20โฏPM" src="https://github.com/microsoft/vscode/assets/60868965/49c26e8e-403c-48de-9121-c939d4798fe4">
## Actual behavior
Hot reload button doesn't appear
<img width="537" alt="Screenshot 2024-05-07 at 12 06 06โฏPM" src="https://github.com/microsoft/vscode/assets/60868965/780ec5c5-e331-446b-a4a6-caf10ef6038c">
## Workaround
Toggle `debug.toolBarLocation` brings back the Hot Reload Button
https://github.com/microsoft/vscode/assets/60868965/dbdf3ac5-60d1-45ae-8c55-4f08f07a225f
| 650 |
||
212139
|
syntax error on sellIntegration-bash.sh
|
2024-05-07 00:20:09+00:00
|
2024-07-21 13:29:28+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.0
- OS Version: windows 10 x64
- Terminal: MSYS 1.0 i686 [GNU bash, version 3.1.23(1)-release]
Since last update, every time i open the vscode i get this error in the terminal:
```
bash: c:\Users\kapodamy\AppData\Local\Programs\Microsoft VS Code\resources\app/out/vs/workbench/contrib/terminal/browser/media/shellIntegration-bash.sh: line 138: syntax error in conditional expression: unexpected token `|'
bash: c:\Users\kapodamy\AppData\Local\Programs\Microsoft VS Code\resources\app/out/vs/workbench/contrib/terminal/browser/media/shellIntegration-bash.sh: line 138: syntax error near `|M'
bash: c:\Users\kapodamy\AppData\Local\Programs\Microsoft VS Code\resources\app/out/vs/workbench/contrib/terminal/browser/media/shellIntegration-bash.sh: line 138: `if [[ "$(uname -s)" =~ ^CYGWIN*|MINGW*|MSYS* ]]; then'
```
looks like the conditionals in the following regex should be escaped:
```bash
# Send the IsWindows property if the environment looks like Windows
if [[ "$(uname -s)" =~ ^CYGWIN*|MINGW*|MSYS* ]]; then
builtin printf '\e]633;P;IsWindows=True\a'
__vsc_is_windows=1
else
__vsc_is_windows=0
fi
```
```bash
if [[ "$HISTCONTROL" =~ .*(erasedups|ignoreboth|ignoredups).* ]]; then
```
Steps to Reproduce:
1. open vscode, integrated terminal is opened automatically
|
completed
|
syntax error on sellIntegration-bash.sh <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.0
- OS Version: windows 10 x64
- Terminal: MSYS 1.0 i686 [GNU bash, version 3.1.23(1)-release]
Since last update, every time i open the vscode i get this error in the terminal:
```
bash: c:\Users\kapodamy\AppData\Local\Programs\Microsoft VS Code\resources\app/out/vs/workbench/contrib/terminal/browser/media/shellIntegration-bash.sh: line 138: syntax error in conditional expression: unexpected token `|'
bash: c:\Users\kapodamy\AppData\Local\Programs\Microsoft VS Code\resources\app/out/vs/workbench/contrib/terminal/browser/media/shellIntegration-bash.sh: line 138: syntax error near `|M'
bash: c:\Users\kapodamy\AppData\Local\Programs\Microsoft VS Code\resources\app/out/vs/workbench/contrib/terminal/browser/media/shellIntegration-bash.sh: line 138: `if [[ "$(uname -s)" =~ ^CYGWIN*|MINGW*|MSYS* ]]; then'
```
looks like the conditionals in the following regex should be escaped:
```bash
# Send the IsWindows property if the environment looks like Windows
if [[ "$(uname -s)" =~ ^CYGWIN*|MINGW*|MSYS* ]]; then
builtin printf '\e]633;P;IsWindows=True\a'
__vsc_is_windows=1
else
__vsc_is_windows=0
fi
```
```bash
if [[ "$HISTCONTROL" =~ .*(erasedups|ignoreboth|ignoredups).* ]]; then
```
Steps to Reproduce:
1. open vscode, integrated terminal is opened automatically
| 773 |
212124
|
Notebook Formatting does not respect default formatters on save + on execution
|
2024-05-06 20:59:37+00:00
|
2024-05-07 16:57:19+00:00
|
Related:
- https://github.com/astral-sh/ruff-vscode/issues/383
- https://github.com/microsoft/vscode/issues/196050
---
Looking into reports of X formatter being used instead of Y in various flows. Looking at both on save and on execution formatting participants, one common point is that when `Format Cell` is specifically being used, the intended formatter is applied as expected.
Some early digging is pointing to a use of `getDocumentFormattingEditsUntilResult` instead of `formatDocumentWithSelectedProvider`, so will be working out a fix there. Will update this thread as is relevant.
|
completed
|
Notebook Formatting does not respect default formatters on save + on execution Related:
- https://github.com/astral-sh/ruff-vscode/issues/383
- https://github.com/microsoft/vscode/issues/196050
---
Looking into reports of X formatter being used instead of Y in various flows. Looking at both on save and on execution formatting participants, one common point is that when `Format Cell` is specifically being used, the intended formatter is applied as expected.
Some early digging is pointing to a use of `getDocumentFormattingEditsUntilResult` instead of `formatDocumentWithSelectedProvider`, so will be working out a fix there. Will update this thread as is relevant.
| 171 |
212105
|
Vscode hangs if an unbuilt local workspace extension is installed
|
2024-05-06 16:24:30+00:00
|
2024-05-14 13:15:39+00:00
|
Steps to reproduce:
1. Open vscode over ssh
2. Make a fresh clone of this repo (or git clean -fdx to remove the node_modules/ from the local workspace extension, and uninstall it if installed)
3. Install the vscode-selfhost-test-provider local workspace extension
4. Reload window, it should hang
When doing this locally, I get `Cannot activate, becase ./out/extension.js not found`. It's not clear from the docs that the extension needs to be built. However over ssh it gets vscode into a bad state.
Proposals:
- local workspace extensions should allow built vsix packages to be used instead, similar to how https://marketplace.visualstudio.com/items?itemName=garmin.private-extension-manager works
- Users should be able to be install them globally so they don't have to install the extension per worktree
|
completed
|
Vscode hangs if an unbuilt local workspace extension is installed Steps to reproduce:
1. Open vscode over ssh
2. Make a fresh clone of this repo (or git clean -fdx to remove the node_modules/ from the local workspace extension, and uninstall it if installed)
3. Install the vscode-selfhost-test-provider local workspace extension
4. Reload window, it should hang
When doing this locally, I get `Cannot activate, becase ./out/extension.js not found`. It's not clear from the docs that the extension needs to be built. However over ssh it gets vscode into a bad state.
Proposals:
- local workspace extensions should allow built vsix packages to be used instead, similar to how https://marketplace.visualstudio.com/items?itemName=garmin.private-extension-manager works
- Users should be able to be install them globally so they don't have to install the extension per worktree
| 237 |
212092
|
Recent update to shellIntegration.ps1 causes error
|
2024-05-06 11:37:02+00:00
|
2024-05-06 15:39:44+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: Version: 1.90.0-insider (Universal)
Commit: ccba2fc85c14bedeef5a72b7ebc0bde9b0e91948
Date: 2024-05-06T08:08:04.226Z
Electron: 28.2.8
ElectronBuildId: 27744544
Chromium: 120.0.6099.291
Node.js: 18.18.2
V8: 12.0.267.19-electron.0
OS: Darwin arm64 23.4.0
- OS Version: macOS Sonoma 14.4.1
Steps to Reproduce:
1. Start VSCode Insiders
2. In the terminal you will see
```
InvalidOperation: /Applications/Visual Studio Code - Insiders.app/Contents/Resources/app/out/vs/workbench/contrib/terminal/browser/media/shellIntegration.ps1:25:16
Line |
25 | $isWindows10 = $IsWindows10 -and $osVersion.Major -eq 10 -and $osVers โฆ
| ~~~~~~~~~~~~
| The variable '$IsWindows10' cannot be retrieved because it has not been
| set.
```
I believe the line should be `$isWindows10 = $IsWindows -and $osVersion.Major -eq 10 -and $osVers โฆ`
|
completed
|
Recent update to shellIntegration.ps1 causes 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-Suggestions -->
<!-- ๐ Search existing issues to avoid creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes/No
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: Version: 1.90.0-insider (Universal)
Commit: ccba2fc85c14bedeef5a72b7ebc0bde9b0e91948
Date: 2024-05-06T08:08:04.226Z
Electron: 28.2.8
ElectronBuildId: 27744544
Chromium: 120.0.6099.291
Node.js: 18.18.2
V8: 12.0.267.19-electron.0
OS: Darwin arm64 23.4.0
- OS Version: macOS Sonoma 14.4.1
Steps to Reproduce:
1. Start VSCode Insiders
2. In the terminal you will see
```
InvalidOperation: /Applications/Visual Studio Code - Insiders.app/Contents/Resources/app/out/vs/workbench/contrib/terminal/browser/media/shellIntegration.ps1:25:16
Line |
25 | $isWindows10 = $IsWindows10 -and $osVersion.Major -eq 10 -and $osVers โฆ
| ~~~~~~~~~~~~
| The variable '$IsWindows10' cannot be retrieved because it has not been
| set.
```
I believe the line should be `$isWindows10 = $IsWindows -and $osVersion.Major -eq 10 -and $osVers โฆ`
| 617 |
212087
|
Occasional error notification for notebook save
|
2024-05-06 10:30:49+00:00
|
2024-05-13 17:17:35+00:00
|
When working a python jupyter notebook within vscode, I started occasionally seeing this notification:

With this in the dev console:
```
ERR [stored file working copy] handleSaveError(437) - exit - resulted in a save error: Error: Document version mismatch file:///Users/ulugbekna/code/nlp_course/week01_embeddings/homework.ipynb notebook/jupyter-notebook
```
cc @rebornix
Version: 1.90.0-insider
Commit: 816c6f7d7bc4da9796cd19ac6b122b6e26f50d7f
Date: 2024-05-03T18:08:45.720Z
Electron: 28.2.8
ElectronBuildId: 27744544
Chromium: 120.0.6099.291
Node.js: 18.18.2
V8: 12.0.267.19-electron.0
OS: Darwin arm64 23.4.0
|
completed
|
Occasional error notification for notebook save When working a python jupyter notebook within vscode, I started occasionally seeing this notification:

With this in the dev console:
```
ERR [stored file working copy] handleSaveError(437) - exit - resulted in a save error: Error: Document version mismatch file:///Users/ulugbekna/code/nlp_course/week01_embeddings/homework.ipynb notebook/jupyter-notebook
```
cc @rebornix
Version: 1.90.0-insider
Commit: 816c6f7d7bc4da9796cd19ac6b122b6e26f50d7f
Date: 2024-05-03T18:08:45.720Z
Electron: 28.2.8
ElectronBuildId: 27744544
Chromium: 120.0.6099.291
Node.js: 18.18.2
V8: 12.0.267.19-electron.0
OS: Darwin arm64 23.4.0
| 271 |
212078
|
Disposing a tree view while it's visible causes it to stay empty
|
2024-05-06 09:01:58+00:00
|
2024-05-06 15:42:36+00:00
|
1. Extension creates a tree view
2. User opens the tree view
3. Extension disposes the tree view while it's still open
4. Extension creates the tree view again
5. ๐ The tree view will stay empty until it's `visibility` is toggled
Real world repo (also works as steps to verify):
1. Connect to a Codespace (to use a specific build of VS Code you can specify a commit in the URL with `/?vscodeCommitId=<commit>`, ex `/?vscodeCommitId=d850cd0dffe788501c6719c298936d0d9128cb1f`)
2. Open the Remote Explorer
3. Reload the page. This will cause the Codespace to load with the remote explorer visible
4. You'll see that the Codespace view in the remote explorer is empty
|
completed
|
Disposing a tree view while it's visible causes it to stay empty 1. Extension creates a tree view
2. User opens the tree view
3. Extension disposes the tree view while it's still open
4. Extension creates the tree view again
5. ๐ The tree view will stay empty until it's `visibility` is toggled
Real world repo (also works as steps to verify):
1. Connect to a Codespace (to use a specific build of VS Code you can specify a commit in the URL with `/?vscodeCommitId=<commit>`, ex `/?vscodeCommitId=d850cd0dffe788501c6719c298936d0d9128cb1f`)
2. Open the Remote Explorer
3. Reload the page. This will cause the Codespace to load with the remote explorer visible
4. You'll see that the Codespace view in the remote explorer is empty
| 207 |
212047
|
Tasks run task and Configure task commands infinte load or no-op on vscode web
|
2024-05-05 12:56:52+00:00
|
2024-05-07 19:35:46+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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.0
- OS Version: Any, vscode web
Steps to Reproduce:
1. Open a repository on github, and hit `.` to open vscode.dev
2. Open command palette and run `Tasks: Run Task` or `Tasks: Configure Tasks`
Expected:
Both commands show list of tasks pertraining to the repository or the option to create tasks.json etc
Actual:
Run tasks command simply is no-op not showing the quickpick.
Configure task keeps infintely loading.

|
completed
|
Tasks run task and Configure task commands infinte load or no-op on vscode web <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.0
- OS Version: Any, vscode web
Steps to Reproduce:
1. Open a repository on github, and hit `.` to open vscode.dev
2. Open command palette and run `Tasks: Run Task` or `Tasks: Configure Tasks`
Expected:
Both commands show list of tasks pertraining to the repository or the option to create tasks.json etc
Actual:
Run tasks command simply is no-op not showing the quickpick.
Configure task keeps infintely loading.

| 502 |
212034
|
Maximizing the current editor while in zen mode causes current editor group size toggle state to be lost
|
2024-05-04 19:57: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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.0
- OS Version: Windows 10
When maximizing an editor group, normally the sizes of each editor group are restored properly when toggling maximize off. In zen mode however, toggling maximize _off_ causes the layout to enter a state where the current editor is expanded fully and all other editor groups are collapsed to their minimum sizes. The command "Toggle Editor Group Sizes" needs to then be executed twice to restore the original layout that was active before one of the editor groups was maximized. This is a confusing experience because it initially feels like all of the custom sizes chosen earlier have been lost, and only toggling the group sizes twice (and it isn't even obvious that toggling these sizes is even a feature) reveals that sizes haven't been lost, but rather just the toggle state of the current editor group sizes.
This only happens when toggling maximize off while still in zen mode. Maximizing while in zen mode, then exiting zen mode _before_ unmaximizing, yields correct behaviour. So the problem appears to be specific to unmaximizing while still in zen mode.
Steps to Reproduce:
1. Create a layout with multiple columns and rows. Drag dividers to set a custom size for each pane.
2. Enter zen mode.
3. Toggle maximize ON for one of the current editors.
4. Toggle maximize OFF. All editor groups other than the current one have been toggled to a collapsed state.
|
Maximizing the current editor while in zen mode causes current editor group size toggle state to be lost <!-- โ ๏ธโ ๏ธ 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 creating duplicates. -->
<!-- ๐งช Test using the latest Insiders build to see if your issue has already been fixed: https://code.visualstudio.com/insiders/ -->
<!-- ๐ก Instead of creating your report here, use 'Report Issue' from the 'Help' menu in VS Code to pre-fill useful information. -->
<!-- ๐ง Launch with `code --disable-extensions` to check. -->
Does this issue occur when all extensions are disabled?: Yes
<!-- ๐ช If you answered No above, use 'Help: Start Extension Bisect' from Command Palette to try to identify the cause. -->
<!-- ๐ฃ Issues caused by an extension need to be reported directly to the extension publisher. The 'Help > Report Issue' dialog can assist with this. -->
- VS Code Version: 1.89.0
- OS Version: Windows 10
When maximizing an editor group, normally the sizes of each editor group are restored properly when toggling maximize off. In zen mode however, toggling maximize _off_ causes the layout to enter a state where the current editor is expanded fully and all other editor groups are collapsed to their minimum sizes. The command "Toggle Editor Group Sizes" needs to then be executed twice to restore the original layout that was active before one of the editor groups was maximized. This is a confusing experience because it initially feels like all of the custom sizes chosen earlier have been lost, and only toggling the group sizes twice (and it isn't even obvious that toggling these sizes is even a feature) reveals that sizes haven't been lost, but rather just the toggle state of the current editor group sizes.
This only happens when toggling maximize off while still in zen mode. Maximizing while in zen mode, then exiting zen mode _before_ unmaximizing, yields correct behaviour. So the problem appears to be specific to unmaximizing while still in zen mode.
Steps to Reproduce:
1. Create a layout with multiple columns and rows. Drag dividers to set a custom size for each pane.
2. Enter zen mode.
3. Toggle maximize ON for one of the current editors.
4. Toggle maximize OFF. All editor groups other than the current one have been toggled to a collapsed state.
| 659 |
||
212024
|
PowerShell intellisense in terminal replaces existing text with suggestion
|
2024-05-04 15:55:15+00:00
|
2024-06-20 17:56:05+00:00
|
Type: <b>Bug</b>
Turn on VS Code-native intellisense for PowerShell in the terminal.
Type the start of a command: Get-ChildItem -
List of suggestions comes up, press Enter to take the first suggestion.
Command is changed to: Get-ChildI-Path
VS Code version: Code 1.89.0 (b58957e67ee1e712cebf466b995adf4c5307b2bd, 2024-05-01T02:09:22.859Z)
OS version: Windows_NT x64 10.0.22635
Modes:
<details>
<summary>System Info</summary>
|Item|Value|
|---|---|
|CPUs|11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz (8 x 2995)|
|GPU Status|2d_canvas: enabled<br>canvas_oop_rasterization: enabled_on<br>direct_rendering_display_compositor: disabled_off_ok<br>gpu_compositing: enabled<br>multiple_raster_threads: enabled_on<br>opengl: enabled_on<br>rasterization: enabled<br>raw_draw: disabled_off_ok<br>skia_graphite: disabled_off<br>video_decode: enabled<br>video_encode: enabled<br>vulkan: disabled_off<br>webgl: enabled<br>webgl2: enabled<br>webgpu: enabled|
|Load (avg)|undefined|
|Memory (System)|63.69GB (40.00GB free)|
|Process Argv|--crash-reporter-id 4e8321cf-1056-4779-be78-ab68dfb6e262|
|Screen Reader|no|
|VM|0%|
</details><details><summary>Extensions (9)</summary>
Extension|Author (truncated)|Version
---|---|---
xml|Dot|2.5.1
auto-close-tag|for|0.5.15
copilot|Git|1.186.856
copilot-chat|Git|0.15.2024043005
todo-tree|Gru|0.0.226
vscode-dotnet-runtime|ms-|2.0.3
powershell|ms-|2024.2.1
vsliveshare|ms-|1.0.5918
msbuild-project-tools|tin|0.6.3
</details><details>
<summary>A/B Experiments</summary>
```
vsliv368cf:30146710
vspor879:30202332
vspor708:30202333
vspor363:30204092
vstes627:30244334
vscoreces:30445986
vscod805:30301674
binariesv615:30325510
vsaa593cf:30376535
py29gd2263:31024239
c4g48928:30535728
azure-dev_surveyone:30548225
962ge761:30959799
pythongtdpath:30769146
welcomedialog:30910333
pythonidxpt:30866567
pythonnoceb:30805159
asynctok:30898717
pythontestfixt:30902429
pythonregdiag2:30936856
pyreplss1:30897532
pythonmypyd1:30879173
pythoncet0:30885854
2e7ec940:31000449
pythontbext0:30879054
accentitlementst:30995554
dsvsc016:30899300
dsvsc017:30899301
dsvsc018:30899302
cppperfnew:31000557
ccp1r3:30993539
dsvsc020:30976470
pythonait:31006305
showvideoc:31016891
chatpanelc:31018788
dsvsc021:30996838
f3je6385:31013174
pythoncenvpt:31022790
dwnewjupytercf:31035177
```
</details>
<!-- generated by issue reporter -->
|
completed
|
PowerShell intellisense in terminal replaces existing text with suggestion Type: <b>Bug</b>
Turn on VS Code-native intellisense for PowerShell in the terminal.
Type the start of a command: Get-ChildItem -
List of suggestions comes up, press Enter to take the first suggestion.
Command is changed to: Get-ChildI-Path
VS Code version: Code 1.89.0 (b58957e67ee1e712cebf466b995adf4c5307b2bd, 2024-05-01T02:09:22.859Z)
OS version: Windows_NT x64 10.0.22635
Modes:
<details>
<summary>System Info</summary>
|Item|Value|
|---|---|
|CPUs|11th Gen Intel(R) Core(TM) i7-1185G7 @ 3.00GHz (8 x 2995)|
|GPU Status|2d_canvas: enabled<br>canvas_oop_rasterization: enabled_on<br>direct_rendering_display_compositor: disabled_off_ok<br>gpu_compositing: enabled<br>multiple_raster_threads: enabled_on<br>opengl: enabled_on<br>rasterization: enabled<br>raw_draw: disabled_off_ok<br>skia_graphite: disabled_off<br>video_decode: enabled<br>video_encode: enabled<br>vulkan: disabled_off<br>webgl: enabled<br>webgl2: enabled<br>webgpu: enabled|
|Load (avg)|undefined|
|Memory (System)|63.69GB (40.00GB free)|
|Process Argv|--crash-reporter-id 4e8321cf-1056-4779-be78-ab68dfb6e262|
|Screen Reader|no|
|VM|0%|
</details><details><summary>Extensions (9)</summary>
Extension|Author (truncated)|Version
---|---|---
xml|Dot|2.5.1
auto-close-tag|for|0.5.15
copilot|Git|1.186.856
copilot-chat|Git|0.15.2024043005
todo-tree|Gru|0.0.226
vscode-dotnet-runtime|ms-|2.0.3
powershell|ms-|2024.2.1
vsliveshare|ms-|1.0.5918
msbuild-project-tools|tin|0.6.3
</details><details>
<summary>A/B Experiments</summary>
```
vsliv368cf:30146710
vspor879:30202332
vspor708:30202333
vspor363:30204092
vstes627:30244334
vscoreces:30445986
vscod805:30301674
binariesv615:30325510
vsaa593cf:30376535
py29gd2263:31024239
c4g48928:30535728
azure-dev_surveyone:30548225
962ge761:30959799
pythongtdpath:30769146
welcomedialog:30910333
pythonidxpt:30866567
pythonnoceb:30805159
asynctok:30898717
pythontestfixt:30902429
pythonregdiag2:30936856
pyreplss1:30897532
pythonmypyd1:30879173
pythoncet0:30885854
2e7ec940:31000449
pythontbext0:30879054
accentitlementst:30995554
dsvsc016:30899300
dsvsc017:30899301
dsvsc018:30899302
cppperfnew:31000557
ccp1r3:30993539
dsvsc020:30976470
pythonait:31006305
showvideoc:31016891
chatpanelc:31018788
dsvsc021:30996838
f3je6385:31013174
pythoncenvpt:31022790
dwnewjupytercf:31035177
```
</details>
<!-- generated by issue reporter -->
| 980 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.