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: blogs/2025/next-edit-suggestions.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,14 +68,16 @@ NES can also help with more challenging mistakes in logic, like a return stateme
68
68
69
69
**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.
70
70
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:
72
72

73
73
<!--  -->
74
74
<!--  -->
75
75
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:
77
77

78
78
79
+
After copy-pasting some code, NES may suggest how to adjust it to match the current code where the paste happened.
80
+
79
81
## Share your feedback
80
82
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.
Copy file name to clipboardExpand all lines: docs/copilot/ai-powered-suggestions.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,11 +95,11 @@ If an edit suggestion is below the current editor view, the arrow will point dow
95
95
96
96
**Catching and correcting mistakes**
97
97
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`.
99
99

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 `<=`:
101
101

102
-
or a comparison that should've used `&&` instead of `||`:
102
+
Or a comparison that should've used `&&` instead of `||`:
103
103

104
104
105
105
**Changing intent**
@@ -111,9 +111,9 @@ or a comparison that should've used `&&` instead of `||`:
111
111
112
112
**Adding new variables or logic**
113
113
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.
115
115
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:
117
117

118
118
<!-- 
119
119
 -->
0 commit comments