2022-01-01 22:13:13 +08:00
# nvim-cmp
A completion engine plugin for neovim written in Lua.
Completion sources are installed from external repositories and "sourced".
< video src = "https://user-images.githubusercontent.com/629908/139000570-3ac39587-a88b-43c6-b35e-207489719359.mp4" width = "100%" > < / video >
Readme!
====================
1. nvim-cmp's breaking changes are documented [here ](https://github.com/hrsh7th/nvim-cmp/issues/231 ).
2. This is my hobby project. You can support me via GitHub sponsors.
3. Bug reports are welcome, but I might not fix if you don't provide a minimal reproduction configuration and steps.
2022-04-13 10:40:59 +08:00
4. The nvim-cmp documents is [here ](./doc/cmp.txt ).
2022-01-01 22:13:13 +08:00
Concept
====================
2022-04-13 10:40:59 +08:00
- Full support for LSP completion related capabilities
- Powerful customizability via Lua functions
- Smart handling of key mapping
2022-01-01 22:13:13 +08:00
- No flicker
2022-04-13 10:40:59 +08:00
2022-01-01 22:13:13 +08:00
Setup
====================
### Recommended Configuration
2022-04-13 10:40:59 +08:00
This example configuration uses `vim-plug` as the plugin manager and `vim-vsnip` as snippet plugin.
2022-01-01 22:13:13 +08:00
2022-04-13 10:40:59 +08:00
```lua
2022-01-01 22:13:13 +08:00
call plug#begin(s:plug_dir)
Plug 'neovim/nvim-lspconfig'
Plug 'hrsh7th/cmp-nvim-lsp'
Plug 'hrsh7th/cmp-buffer'
Plug 'hrsh7th/cmp-path'
Plug 'hrsh7th/cmp-cmdline'
Plug 'hrsh7th/nvim-cmp'
" For vsnip users.
Plug 'hrsh7th/cmp-vsnip'
Plug 'hrsh7th/vim-vsnip'
" For luasnip users.
" Plug 'L3MON4D3/LuaSnip'
" Plug 'saadparwaiz1/cmp_luasnip'
" For ultisnips users.
" Plug 'SirVer/ultisnips'
" Plug 'quangnguyen30192/cmp-nvim-ultisnips'
" For snippy users.
" Plug 'dcampos/nvim-snippy'
" Plug 'dcampos/cmp-snippy'
call plug#end()
set completeopt=menu,menuone,noselect
lua < < EOF
-- Setup nvim-cmp.
local cmp = require'cmp'
cmp.setup({
snippet = {
-- REQUIRED - you must specify a snippet engine
expand = function(args)
vim.fn["vsnip#anonymous"](args.body) -- For `vsnip` users.
-- require('luasnip').lsp_expand(args.body) -- For `luasnip` users.
2022-04-13 10:40:59 +08:00
-- require('snippy').expand_snippet(args.body) -- For `snippy` users.
2022-01-01 22:13:13 +08:00
-- vim.fn["UltiSnips#Anon"](args.body) -- For `ultisnips` users.
end,
},
mapping = {
2022-04-13 10:40:59 +08:00
['< C-b > '] = cmp.mapping(cmp.mapping.scroll_docs(-4), { 'i', 'c' }),
2022-01-01 22:13:13 +08:00
['< C-f > '] = cmp.mapping(cmp.mapping.scroll_docs(4), { 'i', 'c' }),
['< C-Space > '] = cmp.mapping(cmp.mapping.complete(), { 'i', 'c' }),
['< C-y > '] = cmp.config.disable, -- Specify `cmp.config.disable` if you want to remove the default `<C-y>` mapping.
['< C-e > '] = cmp.mapping({
i = cmp.mapping.abort(),
c = cmp.mapping.close(),
}),
2022-04-13 10:40:59 +08:00
['< CR > '] = cmp.mapping.confirm({ select = true }), -- Accept currently selected item. Set `select` to `false` to only confirm explicitly selected items.
2022-01-01 22:13:13 +08:00
},
sources = cmp.config.sources({
{ name = 'nvim_lsp' },
{ name = 'vsnip' }, -- For vsnip users.
-- { name = 'luasnip' }, -- For luasnip users.
-- { name = 'ultisnips' }, -- For ultisnips users.
-- { name = 'snippy' }, -- For snippy users.
}, {
{ name = 'buffer' },
})
})
2022-04-13 10:40:59 +08:00
-- Set configuration for specific filetype.
cmp.setup.filetype('gitcommit', {
sources = cmp.config.sources({
{ name = 'cmp_git' }, -- You can specify the `cmp_git` source if you were installed it.
}, {
{ name = 'buffer' },
})
})
2022-01-01 22:13:13 +08:00
-- Use buffer source for `/` (if you enabled `native_menu` , this won't work anymore).
cmp.setup.cmdline('/', {
sources = {
{ name = 'buffer' }
}
})
-- Use cmdline & path source for ':' (if you enabled `native_menu` , this won't work anymore).
cmp.setup.cmdline(':', {
sources = cmp.config.sources({
{ name = 'path' }
}, {
{ name = 'cmdline' }
})
})
-- Setup lspconfig.
local capabilities = require('cmp_nvim_lsp').update_capabilities(vim.lsp.protocol.make_client_capabilities())
-- Replace < YOUR_LSP_SERVER > with each lsp server you've enabled.
require('lspconfig')['< YOUR_LSP_SERVER > '].setup {
capabilities = capabilities
}
EOF
```
### Where can I find more completion sources?
2022-04-13 10:40:59 +08:00
A list of available sources can be found in the [Wiki ](https://github.com/hrsh7th/nvim-cmp/wiki/List-of-sources ) or by searching for projects that match the nvim-cmp [GitHub topic ](https://github.com/topics/nvim-cmp ).
2022-01-01 22:13:13 +08:00
2022-04-13 10:40:59 +08:00
### Where can I find advanced configuration examples?
2022-01-01 22:13:13 +08:00
2022-04-13 10:40:59 +08:00
Please see the corresponding [FAQ ](#how-to-show-name-of-item-kind-and-source-like-compe ) section or [Wiki pages ](https://github.com/hrsh7th/nvim-cmp/wiki ).
2022-01-01 22:13:13 +08:00
2022-04-13 10:40:59 +08:00
Advanced configuration example
2022-01-01 22:13:13 +08:00
====================
2022-04-13 10:40:59 +08:00
### Use nvim-cmp as smart omnifunc handler.
2022-01-01 22:13:13 +08:00
2022-04-13 10:40:59 +08:00
nvim-cmp can be used as flexible omnifunc manager.
2022-01-01 22:13:13 +08:00
```lua
2022-04-13 10:40:59 +08:00
local cmp = require('cmp')
2022-01-01 22:13:13 +08:00
cmp.setup {
completion = {
2022-04-13 10:40:59 +08:00
autocomplete = false, -- disable auto-completion.
},
2022-01-01 22:13:13 +08:00
}
2022-04-13 10:40:59 +08:00
_G.vimrc = _G.vimrc or {}
_G.vimrc.cmp = _G.vimrc.cmp or {}
_G.vimrc.cmp.lsp = function()
cmp.complete({
config = {
sources = {
{ name = 'nvim_lsp' }
}
}
})
end
_G.vimrc.cmp.snippet = function()
cmp.complete({
config = {
sources = {
{ name = 'vsnip' }
}
}
})
end
2022-01-01 22:13:13 +08:00
2022-04-13 10:40:59 +08:00
vim.cmd([[
inoremap < C-x > < C-o > < Cmd > lua vimrc.cmp.lsp()< CR >
inoremap < C-x > < C-s > < Cmd > lua vimrc.cmp.snippet()< CR >
]])
2022-01-01 22:13:13 +08:00
```
2022-04-13 10:40:59 +08:00
### Full managed completion behavior.
2022-01-01 22:13:13 +08:00
```lua
2022-04-13 10:40:59 +08:00
local cmp = require('cmp')
2022-01-01 22:13:13 +08:00
cmp.setup {
completion = {
2022-04-13 10:40:59 +08:00
autocomplete = false, -- disable auto-completion.
2022-01-01 22:13:13 +08:00
}
}
2022-04-13 10:40:59 +08:00
_G.vimrc = _G.vimrc or {}
_G.vimrc.cmp = _G.vimrc.cmp or {}
_G.vimrc.cmp.on_text_changed = function()
local cursor = vim.api.nvim_win_get_cursor(0)
local line = vim.api.nvim_get_current_line()
local before = string.sub(line, 1, cursor[2] + 1)
if before:match('%s*$') then
cmp.complete() -- Trigger completion only if the cursor is placed at the end of line.
end
2022-01-01 22:13:13 +08:00
end
2022-04-13 10:40:59 +08:00
vim.cmd([[
augroup vimrc
autocmd
autocmd TextChanged,TextChangedI,TextChangedP * call luaeval('vimrc.cmp.on_text_changed()')
augroup END
]])
```
2022-01-01 22:13:13 +08:00