Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
0e01add
Add compareBranch to TitleAndDescriptionProvider for enhanced PR cont…
shaypet Apr 29, 2026
c76e907
make v2 default mode for inline chat (#313184)
jrieken Apr 29, 2026
a654c50
Fix deleting forked session showing wrong confirmation dialog (#313205)
sandy081 Apr 29, 2026
3440287
nes: feat: ghost-text-like behavior (#313206)
ulugbekna Apr 29, 2026
f2cc84b
Revert Copilot CLI version 1.0.34 (#313125)
rebornix Apr 28, 2026
6087b94
Revert "agents: bump @github/copilot to 1.0.38 (#313073)"
hediet Apr 29, 2026
19b3119
Pin @github/copilot to exact 1.0.34 and regenerate lockfiles
hediet Apr 29, 2026
4a46ed2
Fix deleting sub-session when it is not active (#313200)
sandy081 Apr 29, 2026
8f9e979
add logging (#313080)
meganrogge Apr 29, 2026
cf647db
chore: move inline chat stuff around (#313242)
jrieken Apr 29, 2026
974736e
sessions: add customizations overview header action (#312868)
joshspicer Apr 29, 2026
21ef72b
add pluginUri and extensionId to ICustomizationItem: fix slash comma…
aeschli Apr 29, 2026
8244e9b
Refactor Claude Agent core code (#313163)
TylerLeonhardt Apr 29, 2026
380d710
telemetry: add workspaceChunkSearch.tryInit event for cold-init track…
digitarald Apr 29, 2026
6707517
Detect chevron-style interactive prompts in agent terminal (#313244)
meganrogge Apr 29, 2026
21b99b6
Resolve parent directory when realpath fails with ENOENT in edit conf…
meganrogge Apr 29, 2026
7f1de65
Terminal: prevent paste auto-exec when clipboard has trailing newline…
meganrogge Apr 29, 2026
cdbdcc3
Fix RunInTerminalTool hang when shell exits before/during execute() (…
meganrogge Apr 29, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
// --- Chat ---
"inlineChat.enableV2": true,
"inlineChat.affordance": "editor",
"chat.tools.terminal.autoApprove": {
"scripts/test.bat": true,
Expand Down
56 changes: 28 additions & 28 deletions extensions/copilot/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

61 changes: 2 additions & 59 deletions extensions/copilot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1473,64 +1473,7 @@
"locations": [
"editor"
],
"commands": [
{
"name": "generate",
"when": "!config.inlineChat.enableV2",
"description": "%copilot.workspace.generate.description%",
"disambiguation": [
{
"category": "generate",
"description": "Generate new code",
"examples": [
"Add a function that returns the sum of two numbers"
]
}
]
},
{
"name": "edit",
"when": "!config.inlineChat.enableV2",
"description": "%copilot.workspace.edit.inline.description%",
"disambiguation": [
{
"category": "edit",
"description": "Make changes to existing code",
"examples": [
"Change this method to use async/await"
]
}
]
},
{
"name": "fix",
"when": "!config.inlineChat.enableV2",
"description": "%copilot.workspace.fix.description%",
"disambiguation": [
{
"category": "fix",
"description": "Propose a fix for the problems in the selected code",
"examples": [
"There is a problem in this code. Rewrite the code to show it with the bug fixed."
]
}
]
},
{
"name": "tests",
"when": "!config.inlineChat.enableV2",
"description": "%copilot.workspace.tests.description%",
"disambiguation": [
{
"category": "tests",
"description": "Generate unit tests for the selected code. The user does not want to fix their existing tests.",
"examples": [
"Write a set of detailed unit test functions for the code above."
]
}
]
}
]
"commands": []
},
{
"id": "github.copilot.editsAgent",
Expand Down Expand Up @@ -6608,7 +6551,7 @@
"@anthropic-ai/claude-agent-sdk": "0.2.112",
"@anthropic-ai/sdk": "^0.82.0",
"@github/blackbird-external-ingest-utils": "^0.3.0",
"@github/copilot": "^1.0.38",
"@github/copilot": "1.0.34",
"@google/genai": "^1.22.0",
"@humanwhocodes/gitignore-to-minimatch": "1.0.2",
"@microsoft/tiktokenizer": "^1.0.10",
Expand Down
Loading
Loading