Skip to content

Commit b582784

Browse files
author
bamurtaugh
committed
Images
1 parent a975deb commit b582784

File tree

8 files changed

+20
-15
lines changed

8 files changed

+20
-15
lines changed

blogs/2025/next-edit-suggestions.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,15 @@ Copilot NES is an expert companion as you make changes that may cascade througho
5252
After accepting the change, NES next recommends adding `z` to the distance calculation:
5353
![NES for updating Point to Point3D](point3d-distance.png)
5454

55-
**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. It could also be more complex: if you added a new command to your VS Code extension's `extension.ts`, when you open `package.json`, NES may suggest adding that command as well.
55+
**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.
5656

57-
**Refactoring:** If you use a new naming pattern (like renaming a variable `index1` to `indexArr1`), Copilot suggests to rename subsequent variables similarly (like updating `index2` to `indexArr2`).
57+
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`:
58+
![Add command in package.json]()
59+
60+
And then when you open `package.json`, NES may suggest registering that command as well:
61+
![Add command in package.json]()
5862

63+
**Refactoring:** If you use a new naming pattern (like renaming a variable `index1` to `indexArr1`), Copilot suggests to rename subsequent variables similarly (like updating `index2` to `indexArr2`).
5964

6065
**Correcting mistakes:** Copilot NES helps with mistakes like typos. It can also help with more challenging mistakes in logic, like if a statement should've used `AND` instead of `OR`.
6166
<!-- TODO: Add image -->

blogs/2025/point3d-distance.png

Lines changed: 0 additions & 3 deletions
This file was deleted.

blogs/2025/point3d.png

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/copilot/ai-powered-suggestions.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,13 @@ After accepting the change, NES next recommends adding `z` to the distance calcu
102102

103103
**Adding new variables or logic**
104104

105-
* **Using newly added arguments, variables, or functions**. 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. It could also be more complex: if you added a new command to your VS Code extension's `extension.ts`, when you open `package.json`, NES may suggest adding that command as well.
105+
* **Using newly added arguments, variables, or functions**. 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.
106+
107+
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`:
108+
![Add command in package.json](./images/inline-suggestions/add-disposable.png)
109+
110+
And then when you open `package.json`, NES may suggest registering that command as well:
111+
![Add command in package.json](./images/inline-suggestions/call-disposable-full.png)
106112

107113
**Refactoring**
108114

Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

docs/copilot/images/inline-suggestions/point3d-distance.png

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/copilot/images/inline-suggestions/point3d.png

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)