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
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,9 +31,11 @@ Like completions, all you need to do to start getting suggestions from NES is to
31
31
32
32
When you're presented with an edit suggestion, you can navigate to it with the `kbstyle(Tab)` key and then accept it with the `kbstyle(Tab)` key again, saving you time to find the next relevant edit (no manual searching through files or references required).
33
33
34
-
An arrow in the gutter indicates if there is an edit suggestion available. If an edit suggestion is below the current editor view, the arrow will point down instead of right.
34
+
An arrow in the gutter indicates if there is an edit suggestion available:
35
+

35
36
36
-
<!-- TODO: Add image or gif; gif with screencast mode (to show using tab) may be most effective -->
37
+
If an edit suggestion is below the current editor view, the arrow will point down instead of right:
38
+

37
39
38
40
You can hover over the arrow to explore the edit suggestion menu, which includes keyboard shortcuts and settings configuration:
39
41
@@ -52,8 +54,8 @@ After accepting the change, NES next recommends adding `z` to the distance calcu
52
54
53
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.
54
56
55
-
**Refactoring:**Rename a variable once in a file, and Copilot NES will suggest to update it everywhere else.
56
-
<!-- TODO: Add image -->
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`).
58
+
57
59
58
60
**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`.
Copy file name to clipboardExpand all lines: docs/copilot/ai-powered-suggestions.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,10 +82,10 @@ Based on the edits you're making, NES both predicts the location of the next edi
82
82
You can quickly navigate suggested code changes with the `kbstyle(Tab)` key, saving you time to find the next relevant edit (no manual searching through files or references required). You can then accept a suggestion with the `kbstyle(Tab)` key again.
83
83
84
84
An arrow in the gutter indicates if there is an edit suggestion available:
85
-
<!-- TODO: Add image -->
85
+

86
86
87
87
If an edit suggestion is below the current editor view, the arrow will point down instead of right:
88
-
<!-- TODO: Add image -->
88
+

89
89
90
90
You can hover over the arrow to explore the edit suggestion menu, which includes keyboard shortcuts and settings configuration:
0 commit comments