Enable roaming of inflight chat requests (#213239)

This enables to remove the special handling for `/explain`

- fixes https://github.com/microsoft/vscode-copilot/issues/2192
- fixes https://github.com/microsoft/vscode/issues/208706 because inline chat now closes on "view in chat"
- fixes https://github.com/microsoft/vscode-copilot/issues/5288
This commit is contained in:
Johannes Rieken
2024-05-22 18:47:03 +02:00
committed by GitHub
parent 001b81c683
commit a54e247fba
12 changed files with 180 additions and 150 deletions

View File

@@ -154,7 +154,6 @@ export class InlineChatSessionServiceImpl implements IInlineChatSessionService {
return {
command: agentCommand.name,
detail: agentCommand.description,
refer: agentCommand.name === 'explain' // TODO@jrieken @joyceerhl this should be cleaned up
} satisfies IInlineChatSlashCommand;
})
};