completion-nvim icon indicating copy to clipboard operation
completion-nvim copied to clipboard

A async completion framework aims to provide completion to neovim's built in LSP written in Lua

Results 81 completion-nvim issues
Sort by recently updated
recently updated
newest added

Completion-nvim is broken for nvim >= 0.5.1 The signature changed from `function(err, method, result, client_id, bufnr, config)` to `function(err, result, ctx, config)`. > ref; https://github.com/neovim/neovim/pull/15504

**My init.vim** ```vim lua

**My init.vim** ``` set relativenumber set nu set hidden set incsearch set scrolloff=6 set termguicolors set shiftwidth=4 set tabstop=2 set softtabstop=2 syntax enable set smartindent set clipboard+=unnamedplus filetype plugin indent...

**My testing minimal init.vim** The part of the mapping that is relevant: ```lua require('astronauta.keymap') vim.keymap.inoremap{'', require("completion").smart_tab, buffer=true, silent=true} vim.keymap.inoremap{'', require("completion").smart_s_tab, buffer=true, silent=true} ``` **How to reproduce** Compile the upstream at...

When I try to active `completion-nvim` in my `init.lua` with the `on_attach` function, I get a bunch of errors. ``` Error running config for completion-nvim: ...ite/pack/packer/start/completion-nvim/lua/completion.lua:251: bad argument #1 to...

### Relevant information Nvim v.0.5.0 LuaJIT 2.1.0-beta3 Clangd 12.0.1 ### init.vim > lua require'lspconfig'.clangd.setup{on_attach=require'completion'.on_attach} inoremap pumvisible() ? "\" : "\" inoremap pumvisible() ? "\" : "\" >set number set relativenumber...

**Is your feature request related to a problem? Please describe.** I constantly have to go back to a function name and trigger LSP hints to remember myself what type its...

I use gopls to complete some structs, but when the suggestion is a struct like `&model.User{}`, it will complete without closing the brace(`&model.User{`) Enable auto close brace by ```vim let...

[coc-snippets](https://github.com/neoclide/coc-snippets) has the ability to display a floating preview next to the snippet selected from the pum as shown in the gif below. Is this feature available for completion-nvim? ![coc-snippets...