Skip to content

Commit a1634fc

Browse files
committed
Fix typos
1 parent 8549a50 commit a1634fc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

release-notes/v1_103.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,22 +67,22 @@ The [`#codebase` tool](https://code.visualstudio.com/docs/copilot/chat/copilot-c
6767

6868
Remote indexes are used automatically when working in a workspace that is linked to Azure DevOps through git. Make sure you are also logged into VS Code with the Microsoft account you use to access the Azure DevOps repos.
6969

70-
We're gradually rolling out support for this feature on the services side, so not every organization might be able to use it initially. Based on the success of the rollout, we hope to turn it remote indexing for Azure DevOps for as many organizations as possible.
70+
We're gradually rolling out support for this feature on the services side, so not every organization might be able to use it initially. Based on the success of the rollout, we hope to turn on remote indexing for Azure DevOps for as many organizations as possible.
7171

7272
### Improved reliability and performance of the run in terminal and task tools
7373

7474
We have migrated the tools for running tasks and commands within the terminal from the Copilot extension into the core [microsoft/vscode repository](https://github.com/microsoft/vscode). This gives the tools access to lower-level and richer APIs, allowing us to fix many of the terminal hanging issues. This update also comes with the benefit of more easily implementing features going forward, as we're no longer restricted to the capabilities of the extension API, especially any changes that need custom UI within the Chat view.
7575

7676
### Terminal auto-approve improvements
7777

78-
Early terminal auto approve settings were introduced last month. This release the feature got many improvements. Learn more about [terminal auto-approval](https://code.visualstudio.com/docs/copilot/chat/chat-agent-mode#_autoapprove-terminal-commands-experimental) in our documentation.
78+
Early terminal auto-approve settings were introduced last month. This release, the feature got many improvements. Learn more about [terminal auto-approval](https://code.visualstudio.com/docs/copilot/chat/chat-agent-mode#_autoapprove-terminal-commands-experimental) in our documentation.
7979

8080
- We merged the `allowList` and `denyList` settings into the `setting(chat.tools.terminal.autoApprove)` setting. If you were using the old settings, you should see a warning asking you to migrate to the new setting.
8181
- Regular expression matchers now support flags. This allows case insensitivity, for example in PowerShell, where case often doesn't matter:
8282

8383
```json
8484
"chat.tools.terminal.autoApprove": {
85-
// Deny any `remote-item` command, regardless of case
85+
// Deny any `Remove-Item` command, regardless of case
8686
"/^Remove-Item\\b/i": false
8787
}
8888
```
@@ -91,7 +91,7 @@ Early terminal auto approve settings were introduced last month. This release th
9191

9292
```jsonc
9393
"chat.tools.terminal.autoApprove": {
94-
// Deny any _command line_ containing a reference to what is likely a powershell script
94+
// Deny any _command line_ containing a reference to what is likely a PowerShell script
9595
"/\\.ps1\\b/i": { approve: false, matchCommandLine: true }
9696
}
9797
```
@@ -528,7 +528,7 @@ export async function activate(context: ExtensionContext) {
528528
}
529529
```
530530

531-
> **NOTE**: This change is dependant on a change to anything that provides an alternative implementation of a Secret Storage, notably <https://vscode.dev>, which has adopted the new API, and <https://gitub.dev>, which will adopt the new API soon. In an environment where it is not supported, this API will throw an exception.
531+
> **NOTE**: This change is dependent on a change to anything that provides an alternative implementation of a Secret Storage, notably <https://vscode.dev>, which has adopted the new API, and <https://github.dev>, which will adopt the new API soon. In an environment where it is not supported, this API will throw an exception.
532532
533533
## Engineering
534534

0 commit comments

Comments
 (0)