Merge pull request #11 from ppwwyyxx/patch-1 Enable for both lua and vim
Merge pull request #11 from ppwwyyxx/patch-1
Enable for both lua and vim
nvim-cmp source for neovim Lua API.
require'cmp'.setup { sources = { { name = 'nvim_lua' } } }
include_deprecated
Specify should includes deprecated things or not.
This source will complete neovim’s Lua runtime API such vim.lsp.*.
vim.lsp.*
You can get the vim.lsp.util.* API with this source.
vim.lsp.util.*
©Copyright 2023 CCF 开源发展委员会 Powered by Trustie& IntelliDE 京ICP备13000930号
cmp-nvim-lua
nvim-cmp source for neovim Lua API.
Setup
Options
include_deprecated
(boolean: default false)Specify should includes deprecated things or not.
What is this source?
This source will complete neovim’s Lua runtime API such
vim.lsp.*
.You can get the
vim.lsp.util.*
API with this source.