Conversation
…erminal - OpenInCopilotConsole: add Windows path using PowerShell script (matching LaunchCopilotInTerminal pattern from SessionSidebar), keep macOS bash path - OpenInVSCode: use cmd.exe /c code on Windows (code.cmd not found without shell), keep direct invocation on macOS - Remove Terminal menu item and OpenInTerminal method (no longer needed) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…ion parsing PowerShell double-quoted strings interpret (guid) as a subexpression, causing 'term not recognized' errors. Switch to single-quoted strings with '' escaping for embedded values. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
PureWeen
added a commit
that referenced
this pull request
Feb 21, 2026
Drop 3 Copilot Console debug commits (fixed properly on main in #172). Resolve WsBridgeServer conflict: keep multi-agent + FetchImage handlers. 1095 tests passing (4 pre-existing DiffParser \r failures from main). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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
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.
Summary
Fix three issues in the session context menu popup (SessionListItem.razor):
Copilot Console — Was macOS-only (bash script +
open -a Terminal). Now works cross-platform: Windows writes a.ps1script and launches it withpowershell.exe -ExecutionPolicy Bypass -NoExit, matching the existingLaunchCopilotInTerminalpattern inSessionSidebar.razor. Uses single-quoted strings to prevent PowerShell from interpreting(guid)as subexpressions.Terminal button — Removed from the menu (no longer needed).
VS Code — Was using
UseShellExecute = falsewhich can't findcode.cmdon Windows. Now usescmd.exe /c codeon Windows, keeping the directcodeinvocation on macOS.Testing
net10.0-windows10.0.19041.0DiffParserTestsfailures unrelated to this change)