Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
2f061e9
focus input when chat view pane becomes visible (#296241)
sandy081 Feb 19, 2026
8e87038
refactor(theme): update selectors to include 'vs' class for improved …
mrleemurray Feb 19, 2026
aac4555
sessions - tweaks to default settings for a better experience (#296242)
bpasero Feb 19, 2026
d194983
Revert "sessions - move actions down out of title into view" (#296247)
bpasero Feb 19, 2026
db6251a
fix https://github.com/microsoft/vscode/issues/296232
benibenj Feb 19, 2026
edf78b5
style: update quick input list and settings count widget for improved…
mrleemurray Feb 19, 2026
1b91ab6
style: enforce important flag on quick input list separator border fo…
mrleemurray Feb 19, 2026
1a9c882
fix bug
benibenj Feb 19, 2026
d49198c
Merge pull request #296252 from microsoft/mrleemurray/academic-maroon…
mrleemurray Feb 19, 2026
91cafa5
extensions - stop opening them on installation (#296251)
bpasero Feb 19, 2026
d0a76aa
Merge pull request #296257 from microsoft/benibenj/sure-rat
benibenj Feb 19, 2026
b9eb51b
Support display commands for terminal commands in background agents (…
DonJayamanne Feb 19, 2026
b428f91
Merge pull request #296259 from microsoft/mrleemurray/pleasant-bronze…
mrleemurray Feb 19, 2026
0982247
Add when clause to skill contribution (#296049)
alexr00 Feb 19, 2026
5a3602e
style(titlebar): adjust inactive titlebar opacity for improved visibi…
mrleemurray Feb 19, 2026
48bbea1
Merge pull request #296271 from microsoft/mrleemurray/dizzy-coral-nig…
mrleemurray Feb 19, 2026
a45b02b
Revert "extensions - stop opening them on installation" (#296270)
bpasero Feb 19, 2026
ad841ac
sessions - tweak settings (#296277)
bpasero Feb 19, 2026
9ab0a4c
Sessions - enable auto-fetch (#296288)
lszomoru Feb 19, 2026
7ffca95
Update Windows background updates setting title and description (#296…
dmitrivMS Feb 19, 2026
b67d97f
Use 10/20-minute focus windows for edit telemetry
Feb 19, 2026
515078b
Bump tar and dmg-builder in /build (#295921)
dependabot[bot] Feb 19, 2026
45a66bc
sessions - fix title bar dragging on macOS (#296292)
bpasero Feb 19, 2026
cdea700
Merge pull request #296293 from microsoft/isidor/10min-focus-window-e…
isidorn Feb 19, 2026
c00448c
fix(tasks): update beginsPattern for transpilation background task (#…
jrieken Feb 19, 2026
c613dcb
Enhance inline chat functionality and affordances (#296291)
jrieken Feb 19, 2026
00fe159
sessions papercut fixes
benibenj Feb 19, 2026
f5688a3
we now allow this caracter
benibenj Feb 19, 2026
b5ce399
fix
benibenj Feb 19, 2026
5f8d2e4
Merge pull request #296304 from microsoft/benibenj/biological-reindeer
benibenj Feb 19, 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
28 changes: 28 additions & 0 deletions .vscode/sessions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"scripts": [
{
"name": "run Windows",
"command": "code.bat"
},
{
"name": "run macOS",
"command": "code.sh"
},
{
"name": "run Linux",
"command": "code.sh"
},
{
"name": "run tests Windows",
"command": "test.bat"
},
{
"name": "run tests macOS",
"command": "test.sh"
},
{
"name": "run tests Linux",
"command": "test.sh"
}
]
}
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"message": 4
},
"background": {
"beginsPattern": "Starting transpilation...",
"beginsPattern": "Starting transpilation\\.\\.\\.",
"endsPattern": "Finished transpilation with"
}
}
Expand Down
2 changes: 1 addition & 1 deletion build/hygiene.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function hygiene(some: NodeJS.ReadWriteStream | string[] | undefined, run
}
// Please do not add symbols that resemble ASCII letters!
// eslint-disable-next-line no-misleading-character-class
const m = /([^\t\n\r\x20-\x7EβŠƒβŠ‡βœ”οΈŽβœ“πŸŽ―πŸ§ͺβœοΈβš οΈπŸ›‘πŸ”΄πŸš—πŸš™πŸš•πŸŽ‰βœ¨β—β‡§βŒ₯βŒ˜Γ—Γ·Β¦β‹―β€¦β†‘β†“οΏ«β†’β†β†”βŸ·Β·β€’β—β—†β–ΌβŸͺβŸ«β”Œβ””β”œβŽβ†©βˆšΟ†]+)/g.exec(line);
const m = /([^\t\n\r\x20-\x7EβŠƒβŠ‡βœ”οΈŽβœ“πŸŽ―πŸ§ͺβœοΈβš οΈπŸ›‘πŸ”΄πŸš—πŸš™πŸš•πŸŽ‰βœ¨β—β‡§βŒ₯βŒ˜Γ—Γ·Β¦β‹―β€¦β†‘β†“οΏ«β†’β†β†”βŸ·β€”Β·β€’β—β—†β–ΌβŸͺβŸ«β”Œβ””β”œβŽβ†©βˆšΟ†]+)/g.exec(line);
if (m) {
console.error(
file.relative + `(${i + 1},${m.index + 1}): Unexpected unicode character: "${m[0]}" (charCode: ${m[0].charCodeAt(0)}). To suppress, use // allow-any-unicode-next-line`
Expand Down
Loading
Loading