This plugin allows you to chat with github copilot.
Feel free to contribute, report issues or discuss new features.
Copilot-chat is available on melpa :
M-x package-install RET copilot-chat RET
With use-package
:
(use-package copilot-chat)
(use-package copilot-chat
:straight (:host github :repo "chep/copilot-chat.el" :files ("*.el"))
:after (request org markdown-mode shell-maker))
Clone repository and eval files in emacs.
You will need a github acccount with access to copilot API. When sending the first prompt, you will need to authenticate to github. Follow instructions and everything will be fine.
copilot-chat-backend
can be set to 'curl
(default) or 'request
.
With curl, answers will be written token by token. Curl path can be set with `copilot-chat-curl-program` variable. With request library, the text is written when all data is read and this can be long.
Several frontends are available. You can select your favorite one by setting the `copilot-chat-frontend` variable to 'org
(default), 'markdown
or 'shell-maker
(https://github.com/xenodium/shell-maker).
Try them and choose wisely.
You can use copilot to generate your commit messages :
(add-hook 'git-commit-setup-hook 'copilot-chat-insert-commit-message)
Or call manually (copilot-chat-insert-commit-message)
when in the commit message buffer.
The proxy can be configured with the curl backend. For the emacs-request backend, please refer to the emacs-request documentation if you need to configure a proxy.
Use the variables copilot-chat-curl-proxy
, copilot-chat-curl-proxy-user-pass
, and copilot-chat-curl-proxy-insecure
to set up a proxy. Refer to the documentation for each variable to learn how to use them.
Proxies have not been thoroughly tested yet, so there may be bugs. Many options are missing for HTTPS proxies. Please open an issue if you need additional features.
Start chatting with (copilot-chat-display)
. Type your question in *copilot-chat-prompt*
buffer, then press C-c C-c
or C-c RET
.
You may need to authenticate to github. Follow instructions.
You can select buffers that will be added as context in your prompt. Use copilot-chat-add-current-buffer
and copilot-chat-del-current-buffer
. You can also manage buffers by using (copilot-chat-list)
. In the list, selected buffer will be highlighted using copilot-chat-list-selected-buffer-face
which inherit from font-lock-keyword-face
.
Selected buffers will be sent with each prompt until you remove them.
(copilot-chat-reset)
reset everything including history, buffers and frontend.(copilot-chat-display)
display copilot chat buffers.(copilot-chat-switch-to-buffer)
switch to Copilot Chat buffer, side by side with the current code editing buffer.(copilot-chat-set-model)
Select AI model to use.
(copilot-chat-custom-prompt-selection)
ask for a prompt in minibuffer and pastes selection after it before sending it to copilot.(copilot-chat-prompt-history-previous)
insert previous prompt from history in prompt buffer.(copilot-chat-prompt-history-next)
insert next prompt from history in prompt buffer.(copilot-chat-ask-and-insert)
ask for a custom prompt and write answer in current buffer at point.
(copilot-chat-send-to-buffer)
send a code block to a chosen buffer. Replace selection if any. (Org frontend only)
(copilot-chat-add-current-buffer)
add current buffer to copilot chat. Its content will be sent with every request.(copilot-chat-del-current-buffer)
remove current buffer.(copilot-chat-list)
open buffer list.(copilot-chat-add-buffers-in-current-window)
add all buffers in current Emacs window to copilot chat.(copilot-chat-add-files-under-dir)
Add all files with same suffix as current file under current directory. If there are more than 40 files, refuse to add and show warning message.
(copilot-chat-explain-symbol-at-line)
ask Copilot to explain symbol under point.(copilot-chat-explain)
ask copilot to explain selected code.(copilot-chat-review)
ask copilot to review selected code.(copilot-chat-doc)
ask copilot to document selected code.(copilot-chat-fix)
ask copilot to fix selected code.(copilot-chat-optimize)
ask copilot to optimize selected code.(copilot-chat-test)
ask copilot to write tests for selected code.(copilot-chat-explain-defun)
ask copilot to explain current function under point.(copilot-chat-custom-prompt-function)
ask copilot to apply a custom prompt to the function body under point. Eg. instruct on how to refactor the function.(copilot-chat-review-whole-buffer)
ask copilot to review the current whole buffer. It can be used to review the full class, or, review the magit diff for my change, or other people’s change.
(copilot-chat-insert-commit-message)
Insert in the current buffer a copilot generated commit message.
All variables can be customized using M-x customize-group RET copilot-chat RET
copilot-chat-backend
- Backend to use for API calls. Can be'curl
(default) or'request
.copilot-chat-curl-program
- Path to curl executable when using curl backend.copilot-chat-curl-proxy
- Proxy configuration for curl backend. Supports HTTP/HTTPS/SOCKS protocols.copilot-chat-curl-proxy-insecure
- Skip SSL verification for proxy connections in curl backend.copilot-chat-curl-proxy-user-pass
- Proxy authentication credentials for curl backend.
copilot-chat-frontend
- Frontend interface to use. Can be'org
(default),'markdown
or'shell-maker
.
copilot-chat-shell-maker-follow
- Ift
(default), point follows answer in buffer.
copilot-chat-github-token-file
- File path to store GitHub authentication token.copilot-chat-token-cache
- File path to store session token cache.
copilot-chat-model
- AI model to use. Available options:- GPT-4o (default)
- Claude 3.5 Sonnet
- GPT-4o1-(preview)
Default prompts used by various commands:
copilot-chat-prompt
- Base system prompt configuring Copilot’s behaviorcopilot-chat-prompt-explain
- Prompt for explain commandcopilot-chat-prompt-review
- Prompt for code review commandcopilot-chat-prompt-doc
- Prompt for documentation commandcopilot-chat-prompt-fix
- Prompt for fix commandcopilot-chat-prompt-optimize
- Prompt for optimization commandcopilot-chat-prompt-test
- Prompt for test generation commandcopilot-chat-commit-prompt
- Prompt for generating commit messages
You can customize the appearance of the buffer list by modifying these faces:
copilot-chat-list-default-face
- Face used for unselected buffers in the buffer list.copilot-chat-list-selected-buffer-face
- Face used for selected buffers in the buffer list.
C-c C-c
send prompt. Answer will be written in chat buffer.C-c RET
send prompt. Answer will be written in chat buffer.M-p
previous prompt.M-n
next prompt.C-c C-l
open buffer list.C-c C-q
bury buffer and delete window
q
bury bufferSPC
ask question from mini-buffer
RET
select or deselect buffer on pointspace
select or deselect buffer on pointC-c C-c
clear buffer listg
refresh listq
bury buffer and delete window
This plugin is unofficial and based on Copilot Chat for neovim repository: https://github.com/CopilotC-Nvim/CopilotChat.nvim
The prompt for git commit messages comes from gpt-commit.
For github copilot code completion in emacs, checkout copilot.el