forked from microsoft/vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
[pull] main from microsoft:main #70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
pull
wants to merge
10,000
commits into
AppInitio:main
Choose a base branch
from
microsoft:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+1,917,426
−524,201
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Improved chat input pickers
* 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
Hide getAllChatSessionItemProviders
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
* stream progress * tidy
Fix and enhance newline handling in git diff generation of `chatRepoInfo`
…ega/back-whitefish
Context window usage indicator
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
Wonky MCP refresh button fix
* 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
See Commits and Changes for more details.
Created by
pull[bot]
Can you help keep this open source service alive? 💖 Please sponsor : )