Duncan Marsh
Duncan Marsh
I think i am experiencing the same issue ``` E: Failed to fetch https://deb.nodesource.com/node_16.x/pool/main/n/nodejs/nodejs_16.14.0-deb-1nodesource1_amd64.deb Connection failed [IP: 104.91.68.99 443] E: Unable to fetch some archives, maybe run apt-get update or...
I tried making a patch for this issue in PR #140, but I ran a few more testes and realized I still need to do some more work on it,...
this is what i used for testing my proposed change to winhighlight ```lua cmp.setup({ window = { completion = vim.tbl_extend("force", cmp.config.window.bordered(), { winhighlight = "NormalFloat:NormalFloat,FloatBorder:FloatBorder,CursorLine:Visual,Search:None", }), documentation = vim.tbl_extend("force", cmp.config.window.bordered(),...
as discussed in #69 this is approved, I just need to figure out how I want to implement it :), I should have a patch in the next week :)
@PsyNyde Ive been messing around with this and haven't found a good solution The main issue has to do with nvim-cmp.. basically when you tell nvim cmp to use a...
After some more digging I decided to open an issue with nvim-cmp https://github.com/hrsh7th/nvim-cmp/issues/2039 to see if we can solve this issue by patching nvim-cmp :) That issue has a more...
yep yep, `vim.cmd("highlight FloatBorder guibg=#101010")` looks good for nvim cmp but breaks other plugins that use `NormalFloat` for their backgound color including the example you gave example (which-key).
I'll wait for a reply on the nvim-cmp issue before I decide how to resolve this issue :)
created a new nvm-cmp issue after realizing the one i previously made did not properly use their bug template https://github.com/hrsh7th/nvim-cmp/issues/2042
@PsyNyde here is a snippet that you can use to test the proposed change to nvim-cmp if you are intersted ```lua cmp.setup({ window = { completion = vim.tbl_extend("force", cmp.config.window.bordered(), {...