Skip to content

Commit 1fcdfdb

Browse files
author
bamurtaugh
committed
Wording and flow
1 parent ea35df4 commit 1fcdfdb

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

blogs/2025/next-edit-suggestions.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,16 @@ NES can also help with more challenging mistakes in logic, like a return stateme
6868

6969
**Using newly added variables or logic:** Copilot NES helps you use new code you just added. This may be a small change, like calling a new method parameter in the actual method.
7070

71-
It could also be more complex: if you added a new command to your VS Code extension's `extension.ts`, NES will first suggest to clean up the command in `extension.ts`. Then when you open `package.json`, NES may suggest registering that command as well:
71+
It could also be more complex: if you added a new command to your VS Code extension's `extension.ts`, NES will first suggest to clean up the command in `extension.ts`. Then when you open `package.json`, NES suggests registering that command as well:
7272
![Updating extension.ts and package.json with a new command](nes-extension-and-package.gif)
7373
<!-- ![Add command in package.json](add-disposable.png) -->
7474
<!-- ![Add command in package.json](call-disposable-full.png) -->
7575

76-
**Refactoring:** If you use a new name or naming pattern, Copilot NES suggests to update subsequent code similarly. After copy-pasting some code, NES will suggest how to adjust it to match the current code where the paste happened.
76+
**Refactoring:** If you use a new name or naming pattern, Copilot NES suggests to update subsequent code similarly:
7777
![NES suggesting change after updating function name](nes-gutter.gif)
7878

79+
After copy-pasting some code, NES may suggest how to adjust it to match the current code where the paste happened.
80+
7981
## Share your feedback
8082
Copilot NES is rapidly evolving, and we can't wait to get your feedback via issues in [our repo](https://github.com/microsoft/vscode-copilot-release) – this will be instrumental to improving the experience.
8183

docs/copilot/ai-powered-suggestions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ If an edit suggestion is below the current editor view, the arrow will point dow
9595

9696
**Catching and correcting mistakes**
9797

98-
* **NES helps with simple mistakes like typos.** It'll suggest fixes where letters are missing or swapped, like `cont x = 5` or `conts x = 5`, which should've been `const x = 5`.
98+
* **Copilot helps with simple mistakes like typos.** It'll suggest fixes where letters are missing or swapped, like `cont x = 5` or `conts x = 5`, which should've been `const x = 5`.
9999
![NES fixing a typo from "conts" to "const"](./images/inline-suggestions/nes-typo.gif)
100-
* **NES can also help with more challenging mistakes in logic**, like where a statement should've had `<` instead of `<=`:
100+
* **Copilot can also help with more challenging mistakes in logic**, like where a statement should've had `<` instead of `<=`:
101101
![NES fixing a fibonacci logic mistake](./images/inline-suggestions/nes-fib-logic.gif)
102-
or a comparison that should've used `&&` instead of `||`:
102+
Or a comparison that should've used `&&` instead of `||`:
103103
![NES fixing an if statement mistake](./images/inline-suggestions/nes-de-morgan.gif)
104104

105105
**Changing intent**
@@ -111,9 +111,9 @@ or a comparison that should've used `&&` instead of `||`:
111111

112112
**Adding new variables or logic**
113113

114-
* **Using newly added arguments, variables, or functions**. NES helps you use new code you just added. This may be a small change, like calling a new method parameter in the actual method.
114+
* **Using newly added arguments, variables, or functions**. Copilot helps you use new code you just added. This may be a small change, like calling a new method parameter in the actual method.
115115

116-
It could also be more complex: if you added a new command to your VS Code extension's `extension.ts`, NES will first suggest to clean up the command in `extension.ts`. Then when you open `package.json`, NES may suggest registering that command as well:
116+
It could also be more complex: if you added a new command to your VS Code extension's `extension.ts`, Copilot will first suggest to clean up the command in `extension.ts`. Then when you open `package.json`, Copilot suggests registering that command as well:
117117
![Updating extension.ts and package.json with a new command](./images/inline-suggestions/nes-extension-and-package.gif)
118118
<!-- ![Add command in package.json](./images/inline-suggestions/add-disposable.png)
119119
![Add command in package.json](./images/inline-suggestions/call-disposable-full.png) -->

0 commit comments

Comments
 (0)