CoC completions #1422
Closed
p135246
started this conversation in
Enhancements
CoC completions
#1422
Replies: 1 comment 1 reply
-
This is great that you took this on. I mostly use coc-nvim. I thought it would work simply by referencing it in my codecompanion dependencies like so (using Lazy): return {
{
'olimorris/codecompanion.nvim',
event = 'VeryLazy',
dependencies = {
{ 'nvim-treesitter/nvim-treesitter', build = ':TSUpdate' },
{ 'nvim-lua/plenary.nvim' },
{ 'neoclide/coc.nvim' }
},
... But I don't get a menu in the codecompanion buffer. Is there something more that needs to be setup? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
CoC autocompletions in the chat buffer are unavailable.
I implemented a coc provider in this draft PR. It is a little wild as registering a new coc completion source requires creating an autoload file. However, the creator of coc mentioned that he may add registration via a lua function in the future.
Please let me know if this has a chance of being merge and under what conditions.
Beta Was this translation helpful? Give feedback.
All reactions