Skip to content

Conversation

@pull
Copy link

@pull pull bot commented Aug 11, 2021

See Commits and Changes for more details.


Created by pull[bot]

Can you help keep this open source service alive? 💖 Please sponsor : )

@pull pull bot added the ⤵️ pull label Aug 11, 2021
benibenj and others added 29 commits January 15, 2026 18:39
* Initial plan

* Fix 100% CPU on Windows when watched file is deleted

When a watched file/folder is deleted on Windows, Parcel's subscribe
callback may continue to receive errors from ReadDirectoryChangesW.
Previously, these errors were processed by onUnexpectedError which
would fire _onDidError events repeatedly. This caused 100% CPU usage
as the error handling loop never stopped.

The fix checks if the watcher has already failed (via watcher.failed)
before processing errors. When the watcher has failed (which happens
when the watched path is deleted), additional errors from Parcel are
ignored. This prevents the CPU spike while still allowing the normal
suspend/resume mechanism to handle watching the path when it's recreated.

Fixes #263718

Co-authored-by: bpasero <900690+bpasero@users.noreply.github.com>

* Update comments to better explain CPU issue prevention

Co-authored-by: bpasero <900690+bpasero@users.noreply.github.com>

* Add same fix to nodejs watcher for Windows CPU issue

Apply the same fix to nodejsWatcherLib.ts as suggested by the reviewer.
The error handler now checks if the watcher has already failed before
processing additional errors, preventing the endless error loop on
Windows when a watched path is deleted.

Co-authored-by: bpasero <900690+bpasero@users.noreply.github.com>

* lets not change parcel watcher for now

* .

* .

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: bpasero <900690+bpasero@users.noreply.github.com>
Co-authored-by: Benjamin Pasero <benjamin.pasero@microsoft.com>
* feat: enable win11 context menu for stable

* chore: update dll package

* chore: codesign appx for stable

* feat: support system setup

* fix: allow installing appx for system setup

* fix: add -SkipLicense to avoid exception during install
* Fix create file not properly rendering

* Update src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Fix handling of `ExtendedLanguageModelToolResult2`
* change how we draw their attention

* more

* swap X to esc button
fix: replace AsyncIterableObject with AsyncIterableProducer
* terminals in thinking dropdown

* make setting on by default:'

* fix chat confirmation widget

* fix spelling

* fix public issue

* add backup icon for terminal
Fixes a data loss issue where we'd fail to store the session
* change how we draw their attention

* more

* swap X to esc button

* refactor

* remove unused

* fix placeholder
Fix and enhance newline handling in git diff generation of `chatRepoInfo`
mrleemurray and others added 30 commits January 19, 2026 16:02
Adjust position of state indicator in chat CSS
support groupping of selections
…maroon

Fix padding in chat scroll down button in interactive list
sessions: show a preview of chat in the session hover
add workbench.action.chat.newLocalChat command
* clarify interactive and notebook instructions

* Apply suggestions from code review

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: João Moreno <joaomoreno@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Initial plan

* Sort custom agents alphabetically in mode picker dropdown

Co-authored-by: aeschli <6461412+aeschli@users.noreply.github.com>

* Improve code readability for alphabetical sorting

Co-authored-by: aeschli <6461412+aeschli@users.noreply.github.com>

* sort in pickers

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: aeschli <6461412+aeschli@users.noreply.github.com>
Co-authored-by: Martin Aeschlimann <martinae@microsoft.com>
* WIP - edit gutter

* ignore empty selections

* tweaks

* wip

* wip

* wip

* proper menu, custom view item with edtor

* wip

* add setting

* Make it inlineChat.showGutterMenu, noZone etc pp

* polish

* use `IChatEntiteldService.sentiment.hidden`

* Add inline chat gutter visibility context and menu actions

* Add inline gutter menu proposal for chat editor

* fix progress message for the overlay

* Add inline chat gutter menu overlay widget and styles

* cleanup

* Refactor inline chat gutter code: remove unused styles and streamline action handling

* Simplify focus tracking logic in inline chat gutter menu widget

* Enhance inline chat gutter menu: improve input handling and dynamic height adjustment
…88941)

making the font decorations be also used in the line heights manager initially
* Initial plan

* Add chat prompt files/instructions/agents to extension features registry

Co-authored-by: aeschli <6461412+aeschli@users.noreply.github.com>

* update

* Merge branch 'main' into copilot/show-chat-agents-prompts

* Update src/vs/workbench/contrib/chat/common/promptSyntax/chatPromptFilesContribution.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Merge branch 'main' into copilot/show-chat-agents-prompts

* Merge remote-tracking branch 'origin/main' into copilot/show-chat-agents-prompts
…er-silver

Refactor debug checkboxes to custom toggle components
* enable lm management editor for business and enterprise

* show for internal
* agent sessions - expand archived when searching

* Update src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsControl.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Initial plan

* Add command to attach all pinned editors to chat

Co-authored-by: benibenj <44439583+benibenj@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: benibenj <44439583+benibenj@users.noreply.github.com>
…le (#288842)

* Initial plan

* Add fallback to file service when FileSearchProvider is unavailable

- Check schemeHasFileSearchProvider before using searchService.fileSearch
- Implement recursive file service traversal as fallback
- Add comprehensive tests for both code paths

Co-authored-by: aeschli <6461412+aeschli@users.noreply.github.com>

* Add FileSearchProvider check to searchFilesInLocation

Prevent hanging when searching for files with glob patterns in file systems
without FileSearchProvider. Log a warning and return empty array instead.

Co-authored-by: aeschli <6461412+aeschli@users.noreply.github.com>

* update

* update

* fix tests

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: aeschli <6461412+aeschli@users.noreply.github.com>
Co-authored-by: Martin Aeschlimann <martinae@microsoft.com>
offsetHeight returns 1 more than expected, because it includes the session container's border. So compensate for this.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.