Skip to content

Commit 9d7b7b7

Browse files
author
bamurtaugh
committed
Feedback
1 parent 9ea9159 commit 9d7b7b7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

blogs/2025/next-edit-suggestions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Feburary 5, 2025 by [Brigit Murtaugh](https://github.com/bamurtaugh), [Burke Hol
1212

1313
GitHub Copilot code completions are great at autocomplete, providing the predictive ability to suggest the code that was in your head without you even having to ask for it. But since most coding activity is editing existing code, it's a natural evolution of completions to also help with edits. Edits are often not made in isolation - there's a logical flow of what edits need to be made as you iterate on your project - and they can happen both at your current cursor location and further away.
1414

15-
We're excited to announce the preview of **Copilot Next Edit Suggestions** (aka "Copilot NES"), which is the next evolution of Copilot completions.
15+
We're excited to announce the preview of **Copilot Next Edit Suggestions** (aka "Copilot NES"), which is this evolution of Copilot completions.
1616

1717
Based on the edits you're making, NES both predicts the location of the next edit you'll want to make and what that edit should be. NES helps you stay in the flow, suggesting future changes relevant to your current work, and you can simply `kbstyle(Tab)` to quickly navigate and accept suggestions.
1818

@@ -47,10 +47,10 @@ Copilot NES is an expert companion as you make changes that may cascade througho
4747
**Refactoring:** Rename a variable once in a file, and Copilot NES will suggest to update it everywhere else.
4848
<!-- TODO: Add image -->
4949

50-
**Correcting mistakes:** Copilot NES helps with mistakes like typos. It can also help with more challenging mistakes in logic, i.e. if a statement shouldve used AND instead of OR.
50+
**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`.
5151
<!-- TODO: Add image -->
5252

53-
**Changing intent:** Copilot NES suggests changes that match a change in intent, i.e. changing a function `moveCursorUp` to `moveCursorDown` should adjust all the code logically.
53+
**Changing intent:** Copilot NES suggests changes that match a change in intent. For example, changing a function `moveCursorUp` to `moveCursorDown` should adjust all the code logically.
5454
<!-- TODO: Add image -->
5555

5656
## Share your feedback

docs/copilot/ai-powered-suggestions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,17 +96,17 @@ You can hover over the arrow to explore the edit suggestion menu, which includes
9696

9797
**Refactoring**
9898

99-
* **Rename a variable once in a file, and Copilot will suggest to update it everywhere else.** If you use a new naming pattern (i.e. renaming a variable `index1` to `indexArr1`), Copilot suggests to rename subsequent variables similarly (i.e. update `index2` to `indexArr2`).
99+
* **Rename a variable once in a file, and Copilot will suggest to update it everywhere else.** 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`).
100100
* **Matching code style**. After copy-pasting some code, Copilot will suggest how to adjust it to match the current code where the paste happened.
101101

102102
**Adding new variables or arguments**
103103

104-
* **Add an argument to a function or a new variable to a class**. Copilot suggests to use those additions as appropriate, i.e. calling the varaible in the function, or in an upcoming `if` or `switch` statement.
104+
* **Add an argument to a function or a new variable to a class**. Copilot suggests to use those additions as appropriate, such as calling the varaible in the function, or in an upcoming `if` or `switch` statement.
105105

106106
**Correcting mistakes**
107107

108108
* **Copilot helps with 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`.
109-
* **Copilot can also help with mistakes in logic**, i.e. where a statement should've had `<` instead of `<=` or an `OR` statement that should've been an `AND`.
109+
* **Copilot can also help with mistakes in logic**, like where a statement should've had `<` instead of `<=`, or an `OR` statement that should've been an `AND`.
110110

111111
**Changing intent**
112112

0 commit comments

Comments
 (0)