You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: release-notes/v1_100.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -192,6 +192,10 @@ When an extension is identified as malicious, VS Code now provides links to addi
192
192
193
193
VS Code now prevents the installation of Copilot chat pre-release version in VS Code stable. This helps avoid situations where users inadvertently install the Copilot chat pre-release version and gets stuck in a broken state. This means you can only install the Copilot chat pre-release version in the Insiders build of VS Code.
194
194
195
+
### Command to open a view without focus
196
+
197
+
Views (tree views and webview views) can now be opened without focusing them. This is useful for extensions and keybindings that want to open a view but not take focus away from the current editor. The command is `your-view-id.open`, and it takes a property bag argument: `{ preserveFocus: boolean}`.
198
+
195
199
## Code Editing
196
200
197
201
### NES Import Suggestions
@@ -261,6 +265,10 @@ We've continued to iterate on the expandable hover feature for JavaScript and Ty
261
265
262
266
This feature is still experimental but you can try it today by enabling `setting(typescript.experimental.expandableHover)`. You must be using TypeScript version 5.9 or above, for example by installing the [TypeScript nightly extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-typescript-next).
263
267
268
+
### Default syntax highlighting for `.*.env` files
269
+
270
+
Files with name format `.*.env` will now be highlighted as ini files.
271
+
264
272
## Remote Development
265
273
266
274
The [Remote Development extensions](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack), allow you to use a [Dev Container](https://code.visualstudio.com/docs/devcontainers/containers), remote machine via SSH or [Remote Tunnels](https://code.visualstudio.com/docs/remote/tunnels), or the [Windows Subsystem for Linux](https://learn.microsoft.com/windows/wsl) (WSL) as a full-featured development environment.
@@ -317,6 +325,13 @@ Then once you define a new symbol, for example, a class or a function, you can s
317
325
318
326
### GitHub Pull Requests and Issues
319
327
328
+
There has been more progress on the [GitHub Pull Requests](https://marketplace.visualstudio.com/items?itemName=GitHub.vscode-pull-request-github) extension, which enables you to work on, create, and manage pull requests and issues. New features include:
329
+
330
+
* Ask Copilot questions about the active pull request, such as "Address all comments in the #activePullRequest".
331
+
* View issues in a webview, just like you can view pull requests.
332
+
* Polish and alignment of the "Pull Requests", "Issues", and "Notifications" views.
333
+
334
+
Review the [changelog for the 0.110.0](https://github.com/microsoft/vscode-pull-request-github/blob/main/CHANGELOG.md#0110) release of the extension to learn about the other highlights.
0 commit comments