GitXplorerGitXplorer
g

copilot.vim

public
8278 stars
289 forks
0 issues

Commits

List of commits on branch release.
Unverified
782461159655b259cff10ecff05efa761e3d4764

Copilot.vim 1.40.0

ttpope committed 21 days ago
Unverified
a9fa7946d7307ceb138bfe2706ba75febf6450da

Copilot.vim 1.39.0

ttpope committed a month ago
Unverified
25f73977033c597d530c7ab0e211d99b60927d2d

Copilot.vim 1.38.0

ttpope committed 2 months ago
Unverified
0668308e68b0ac28b332b204b469fbe04601536a

Copilot.vim 1.37.0

ttpope committed 3 months ago
Unverified
88d08cf54f623341adde4b18362bffc95174dcd5

Copilot.vim 1.36.0

ttpope committed 3 months ago
Unverified
1dcaf72099b436b5832d6117d9cd7a4a098a8d77

Copilot.vim 1.35.0

ttpope committed 3 months ago

README

The README file for this repository.

GitHub Copilot for Vim and Neovim

GitHub Copilot uses OpenAI Codex to suggest code and entire functions in real-time right from your editor. Trained on billions of lines of public code, GitHub Copilot turns natural language prompts including comments and method names into coding suggestions across dozens of languages.

Copilot.vim is a Vim/Neovim plugin for GitHub Copilot.

To learn more, visit https://github.com/features/copilot.

Subscription

GitHub Copilot requires a subscription. It is free for verified students and maintainers of popular open source projects on GitHub.

GitHub Copilot is subject to the GitHub Additional Product Terms.

Getting started

  1. Install Neovim or the latest patch of Vim (9.0.0185 or newer).

  2. Install Node.js.

  3. Install github/copilot.vim using vim-plug, packer.nvim, or any other plugin manager. Or to install manually, run one of the following commands:

    • Vim, Linux/macOS:

      git clone https://github.com/github/copilot.vim.git \
        ~/.vim/pack/github/start/copilot.vim
      
    • Neovim, Linux/macOS:

      git clone https://github.com/github/copilot.vim.git \
        ~/.config/nvim/pack/github/start/copilot.vim
      
    • Vim, Windows (PowerShell command):

      git clone https://github.com/github/copilot.vim.git `
        $HOME/vimfiles/pack/github/start/copilot.vim
      
    • Neovim, Windows (PowerShell command):

      git clone https://github.com/github/copilot.vim.git `
        $HOME/AppData/Local/nvim/pack/github/start/copilot.vim
      
  4. Start Vim/Neovim and invoke :Copilot setup.

Suggestions are displayed inline and can be accepted by pressing the tab key. See :help copilot for more information.

Troubleshooting

We’d love to get your help in making GitHub Copilot better! If you have feedback or encounter any problems, please reach out on our Feedback forum.