Skip to content

Commit ad022fc

Browse files
author
bamurtaugh
committed
Update setting name
1 parent 8de1286 commit ad022fc

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

blogs/2025/02/05/next-edit-suggestions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ Based on the edits you're making, Copilot NES both predicts the location of the
2525
You may have seen [previous work from the GitHub Next Team on NES](https://githubnext.com/projects/copilot-next-edit-suggestions/) – this is the evolution of the Next Team's great work, now part of the existing GitHub Copilot extensions.
2626

2727
## Getting your first suggestions
28-
You can enable Copilot NES via the VS Code setting `setting(github.copilot.nextEdits.enabled)`.
28+
You can enable Copilot NES via the VS Code setting `setting(github.copilot.nextEditSuggestions.enabled)`.
2929

3030
> [!NOTE]
31-
> If you are a Copilot Business or Enterprise user, an administrator of your organization must opt in to the use of previews of Copilot features, in addition to you setting `setting(github.copilot.nextEdits.enabled)` in your editor.
31+
> If you are a Copilot Business or Enterprise user, an administrator of your organization must opt in to the use of previews of Copilot features, in addition to you setting `setting(github.copilot.nextEditSuggestions.enabled)` in your editor.
3232
>
3333
> You can learn more about [managing policies for Copilot in your organization](https://docs.github.com/en/copilot/managing-copilot/managing-github-copilot-in-your-organization/managing-policies-for-copilot-in-your-organization#enabling-copilot-features-in-your-organization).
3434

docs/copilot/ai-powered-suggestions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ Inline suggestions are great at autocompleting a section of code. But since most
7070
Based on the edits you're making, Copilot 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 Copilot's suggestions. Suggestions may span a single symbol, an entire line, or multiple lines, depending on the scope of the potential change.
7171

7272
> [!NOTE]
73-
> Copilot NES is currently in preview. You can enable NES via the VS Code setting `setting(github.copilot.nextEdits.enabled)`.
73+
> Copilot NES is currently in preview. You can enable NES via the VS Code setting `setting(github.copilot.nextEditSuggestions.enabled)`.
7474
>
7575
> For general information about working with settings in VS Code, refer to [User and workspace settings](/docs/getstarted/settings.md).
7676
>
77-
> If you are a Copilot Business or Enterprise user, an administrator of your organization must opt in to the use of previews of Copilot features, in addition to you setting `setting(github.copilot.nextEdits.enabled)` in your editor.
77+
> If you are a Copilot Business or Enterprise user, an administrator of your organization must opt in to the use of previews of Copilot features, in addition to you setting `setting(github.copilot.nextEditSuggestions.enabled)` in your editor.
7878
>
7979
> You can learn more about [managing policies for Copilot in your organization](https://docs.github.com/en/copilot/managing-copilot/managing-github-copilot-in-your-organization/managing-policies-for-copilot-in-your-organization#enabling-copilot-features-in-your-organization).
8080
@@ -156,7 +156,7 @@ You can temporarily enable or disable code completions either for all languages,
156156

157157
* `setting(editor.inlineSuggest.syntaxHighlightingEnabled)` - enable or disable syntax highlighting for inline completions.
158158

159-
* `setting(github.copilot.nextEdits.enabled)` - enable Copilot Next Edit Suggestions (preview)
159+
* `setting(github.copilot.nextEditSuggestions.enabled)` - enable Copilot Next Edit Suggestions (preview)
160160

161161
## Next steps
162162

docs/copilot/copilot-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The team is continuously working on improving Copilot in VS Code and adding new
2626
* `setting(chat.commandCenter.enabled)` <i class="codicon codicon-beaker"></i>: Controls whether the command center shows a menu for chat actions.
2727
* `setting(workbench.commandPalette.experimental.askChatLocation)` <i class="codicon codicon-beaker"></i>: Controls where the Command Palette should ask chat questions.
2828
* `setting(github.copilot.chat.search.semanticTextResults)` <i class="codicon codicon-beaker"></i>: Enables semantic search results in the Search view.
29-
* `setting(github.copilot.nextEdits.enabled)` <i class="codicon codicon-beaker"></i>: Enables Copilot Next Edit Suggestions (preview).
29+
* `setting(github.copilot.nextEditSuggestions.enabled)` <i class="codicon codicon-beaker"></i>: Enables Copilot Next Edit Suggestions (preview).
3030

3131
## Chat settings
3232

docs/copilot/copilot-vscode-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ As you're coding in the editor, you can use Copilot to generate code completions
114114
| Action | Description |
115115
|--------|-------------|
116116
| Code completions | Start typing in the editor and Copilot provides code suggestions that match your coding style and take your existing code into account. |
117-
| Next Edit Suggestions (preview) | Predict your next code edit with Copilot Next Edit Suggestions, aka Copilot NES. 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. You can enable NES via the VS Code setting `setting(github.copilot.nextEdits.enabled)`. |
117+
| Next Edit Suggestions (preview) | Predict your next code edit with Copilot Next Edit Suggestions, aka Copilot NES. 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. You can enable NES via the VS Code setting `setting(github.copilot.nextEditSuggestions.enabled)`. |
118118
| Code comments | Provide a code completion prompt to Copilot by writing instructions in a code comment.<br/>Example: `# write a calculator class with methods for add, subtract, and multiply. Use static methods.` |
119119
| `kb(inlinechat.start)` | Start **Inline Chat** to send a chat request to Copilot directly from the editor. Use natural language or use `/` commands to give instructions to Copilot. |
120120
| Prompt from the editor <i class="codicon codicon-beaker"></i> | Start typing natural language directly in code and Copilot detects that you're not writing code but prompting, and will automatically start Inline Chat for your prompt. |

docs/copilot/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ Check our [Copilot cheat sheet](/docs/copilot/copilot-vscode-features.md) for an
9595
![NES for adding z to distance calculation of Point3D](images/overview/point3d-distance.png)
9696

9797
> [!NOTE]
98-
> Copilot NES is currently in preview. You can enable NES via the VS Code setting `setting(github.copilot.chat.nextEdits.enabled)`.
98+
> Copilot NES is currently in preview. You can enable NES via the VS Code setting `setting(github.copilot.chat.nextEditSuggestions.enabled)`.
9999
>
100100
> For general information about working with settings in VS Code, refer to [User and workspace settings](/docs/getstarted/settings.md).
101101
>
102-
> If you are a Copilot Business or Enterprise user, an administrator of your organization must opt in to the use of previews of Copilot features, in addition to you setting `setting(github.copilot.nextEdits.enabled)` in your editor.
102+
> If you are a Copilot Business or Enterprise user, an administrator of your organization must opt in to the use of previews of Copilot features, in addition to you setting `setting(github.copilot.nextEditSuggestions.enabled)` in your editor.
103103
>
104104
> You can learn more about [managing policies for Copilot in your organization](https://docs.github.com/en/copilot/managing-copilot/managing-github-copilot-in-your-organization/managing-policies-for-copilot-in-your-organization#enabling-copilot-features-in-your-organization).
105105

0 commit comments

Comments
 (0)