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
@@ -184,6 +184,10 @@ When an extension is identified as malicious, VS Code now provides links to addi
184
184
185
185
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.
186
186
187
+
### Command to open a view without focus
188
+
189
+
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}`.
190
+
187
191
## Code Editing
188
192
189
193
### NES Import Suggestions
@@ -253,6 +257,10 @@ We've continued to iterate on the expandable hover feature for JavaScript and Ty
253
257
254
258
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).
255
259
260
+
### Default syntax highlighting for `.*.env` files
261
+
262
+
Files with name format `.*.env` will now be highlighted as ini files.
263
+
256
264
## Remote Development
257
265
258
266
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.
@@ -309,6 +317,13 @@ Then once you define a new symbol, for example, a class or a function, you can s
309
317
310
318
### GitHub Pull Requests and Issues
311
319
320
+
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:
321
+
322
+
* Ask Copilot questions about the active pull request, such as "Address all comments in the #activePullRequest".
323
+
* View issues in a webview, just like you can view pull requests.
324
+
* Polish and alignment of the "Pull Requests", "Issues", and "Notifications" views.
325
+
326
+
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