Skip to content

Commit 941e48d

Browse files
committed
matts suggestions
1 parent d624adf commit 941e48d

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

content/copilot/getting-started-with-github-copilot/getting-started-with-github-copilot-in-a-jetbrains-ide.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ If you use a JetBrains IDE, you can view and incorporate suggestions from {% dat
2121

2222
## Installing the JetBrains extension
2323

24-
To use {% data variables.product.prodname_copilot %} in a JetBrains IDE, you must install the {% data variables.product.prodname_copilot %} extension.
24+
To use {% data variables.product.prodname_copilot %} in a JetBrains IDE, you must install the {% data variables.product.prodname_copilot %} extension. The following procedure will guide you through installation of the {% data variables.product.prodname_copilot %} plugin in IntelliJ IDEA. Steps to install the plugin in another supported IDE may differ.
2525

2626
1. In your JetBrains IDE, under the **File** menu, click **Settings**.
2727
1. At the top of the "Settings" dialog box, click **Marketplace**. In the search bar, search for **{% data variables.product.prodname_copilot %}** and click **Install**.
@@ -40,7 +40,6 @@ To use {% data variables.product.prodname_copilot %} in a JetBrains IDE, you mus
4040
![Screenshot of JetBrains IDE permissions confirmation](/assets/images/help/copilot/jetbrains-ide-confirmation.png)
4141

4242

43-
4443
## Seeing your first suggestion
4544

4645
{% data reusables.copilot.supported-languages %} The following samples are in Java, but other languages will work similarly.

content/copilot/getting-started-with-github-copilot/getting-started-with-github-copilot-in-neovim.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ To use {% data variables.product.prodname_copilot %} in Neovim you must have Neo
2323

2424
{% mac %}
2525

26-
1. To use {% data variables.product.prodname_copilot %} in Neovim, install the {% data variables.product.prodname_copilot %} plugin. You can either install the plugin from a plugin manager or directly.
27-
- If you use a plugin manager like vim-plug or packer.nvim, use the plugin manager to install `github/copilot.vim`. For more information, see the documentation for the plugin manager. For example, you can see the documentation for [vim-plug](https://github.com/junegunn/vim-plug) or [packer.nvim](https://github.com/wbthomason/packer.nvim).
26+
{% data reusables.copilot.install-copilot-in-neovim %}
2827
- To install the {% data variables.product.prodname_copilot %} plugin directly, you must know where Neovim stores plugins. To install the plugin, enter the following command in Terminal.
2928

3029
```
@@ -42,8 +41,7 @@ To use {% data variables.product.prodname_copilot %} in Neovim you must have Neo
4241
4342
{% windows %}
4443
45-
1. To use {% data variables.product.prodname_copilot %} in Neovim, install the {% data variables.product.prodname_copilot %} plugin. You can either install the plugin from a plugin manager or directly.
46-
- If you use a plugin manager like vim-plug or packer.nvim, use the plugin manager to install `github/copilot.vim`. For more information, see the documentation for the plugin manager. For example, you can see the documentation for [vim-plug](https://github.com/junegunn/vim-plug) or [packer.nvim](https://github.com/wbthomason/packer.nvim).
44+
{% data reusables.copilot.install-copilot-in-neovim %}
4745
- To install the {% data variables.product.prodname_copilot %} plugin directly, you must know where Neovim stores plugins. To install the plugin, enter the following command in Git Bash.
4846
4947
```
@@ -60,8 +58,7 @@ To use {% data variables.product.prodname_copilot %} in Neovim you must have Neo
6058
6159
{% linux %}
6260
63-
1. To use {% data variables.product.prodname_copilot %} in Neovim, install the {% data variables.product.prodname_copilot %} plugin. You can either install the plugin from a plugin manager or directly.
64-
- If you use a plugin manager like vim-plug or packer.nvim, use the plugin manager to install `github/copilot.vim`. For more information, see the documentation for the plugin manager. For example, you can see the documentation for [vim-plug](https://github.com/junegunn/vim-plug) or [packer.nvim](https://github.com/wbthomason/packer.nvim).
61+
{% data reusables.copilot.install-copilot-in-neovim %}
6562
- To install the {% data variables.product.prodname_copilot %} plugin directly, you must know where Neovim stores plugins. To install the plugin, enter the following command in Git Bash.
6663
6764
```

content/copilot/getting-started-with-github-copilot/getting-started-with-github-copilot-in-visual-studio.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ To use {% data variables.product.prodname_copilot %}, you must first install the
3838
1. Open or create a new project in {% data variables.product.prodname_vs %}.
3939
1. In the "Microsoft {% data variables.product.prodname_vs %}" dialog box, to copy your device activation code, click **OK**.
4040
![Screenshot of the Microsoft {% data variables.product.prodname_vs %} dialogue box](/assets/images/help/copilot/vs-auth-dialogue.png)
41-
1. A device activation window will open in your browser. Press <kbd>Ctrl</kbd>+<kbd>V</kbd> to paste the device code and click **Continue**.
41+
1. A device activation window will open in your browser. Paste the device code, then click **Continue**.
42+
43+
- To paste the code in Windows or Linux, press <kbd>Ctrl</kbd>+<kbd>v</kbd>.
44+
- To paste the code in macOS, press <kbd>command</kbd>+<kbd>v</kbd>.
4245
1. {% data variables.product.prodname_dotcom %} will request the necessary permissions for {% data variables.product.prodname_copilot %}. To approve these permissions, click **Authorize {% data variables.product.prodname_copilot %} Plugin**.
4346
1. After you approve the permissions, {% data variables.product.prodname_vs %} will show a confirmation.
4447
![Screenshot of {% data variables.product.prodname_vs %} permissions confirmation](/assets/images/help/copilot/vs-confirmation.png)
@@ -82,7 +85,7 @@ To use {% data variables.product.prodname_copilot %}, you must first install the
8285
{% data reusables.copilot.accept-suggestion %}
8386

8487

85-
{% data reusables.copilot.enabling-and-disabling-vs %}
88+
{% data reusables.copilot.enabling-or-disabling-vs %}
8689

8790
## Further reading
8891

data/reusables/copilot/enabling-and-disabling-vs.md renamed to data/reusables/copilot/enabling-or-disabling-vs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Enabling and disabling {% data variables.product.prodname_copilot %}
1+
## Enabling or disabling {% data variables.product.prodname_copilot %}
22

33
The {% data variables.product.prodname_copilot %} status icon in the bottom panel of the {% data variables.product.prodname_vs %} window indicates whether {% data variables.product.prodname_copilot %} is enabled or disabled. When enabled, the background color of the icon will match the color of the status bar. When disabled, it will have a diagonal line through it.
44

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
1. To use {% data variables.product.prodname_copilot %} in Neovim, install the {% data variables.product.prodname_copilot %} plugin. You can either install the plugin from a plugin manager or directly.
2+
- If you use a plugin manager like vim-plug or packer.nvim, use the plugin manager to install `github/copilot.vim`. For more information, see the documentation for the plugin manager. For example, you can see the documentation for [vim-plug](https://github.com/junegunn/vim-plug) or [packer.nvim](https://github.com/wbthomason/packer.nvim).

0 commit comments

Comments
 (0)