diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2024-05-28 12:39:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-28 12:39:30 -0500 |
commit | 0bdd602bf974fdefc348f47bb7b9057521eb0407 (patch) | |
tree | 5bec46754be4714b72e10a8ebe295d9606d0d59d /runtime/lua/vim/lsp.lua | |
parent | 8ba73f0e4cc6c82032a348a1d6c8d794ed150fd7 (diff) | |
parent | e6cfcaed184d4ecdc8a8638429e1bd9e1b3251dc (diff) | |
download | rneovim-0bdd602bf974fdefc348f47bb7b9057521eb0407.tar.gz rneovim-0bdd602bf974fdefc348f47bb7b9057521eb0407.tar.bz2 rneovim-0bdd602bf974fdefc348f47bb7b9057521eb0407.zip |
Merge pull request #27339 from MariaSolOs/completion
feat(lsp): completion side effects
Diffstat (limited to 'runtime/lua/vim/lsp.lua')
-rw-r--r-- | runtime/lua/vim/lsp.lua | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/runtime/lua/vim/lsp.lua b/runtime/lua/vim/lsp.lua index 60b3f3e502..94c31359da 100644 --- a/runtime/lua/vim/lsp.lua +++ b/runtime/lua/vim/lsp.lua @@ -3,7 +3,6 @@ local validate = vim.validate local lsp = vim._defer_require('vim.lsp', { _changetracking = ..., --- @module 'vim.lsp._changetracking' - _completion = ..., --- @module 'vim.lsp._completion' _dynamic = ..., --- @module 'vim.lsp._dynamic' _snippet_grammar = ..., --- @module 'vim.lsp._snippet_grammar' _tagfunc = ..., --- @module 'vim.lsp._tagfunc' @@ -11,6 +10,7 @@ local lsp = vim._defer_require('vim.lsp', { buf = ..., --- @module 'vim.lsp.buf' client = ..., --- @module 'vim.lsp.client' codelens = ..., --- @module 'vim.lsp.codelens' + completion = ..., --- @module 'vim.lsp.completion' diagnostic = ..., --- @module 'vim.lsp.diagnostic' handlers = ..., --- @module 'vim.lsp.handlers' inlay_hint = ..., --- @module 'vim.lsp.inlay_hint' @@ -1003,8 +1003,7 @@ end --- - findstart=0: column where the completion starts, or -2 or -3 --- - findstart=1: list of matches (actually just calls |complete()|) function lsp.omnifunc(findstart, base) - log.debug('omnifunc.findstart', { findstart = findstart, base = base }) - return vim.lsp._completion.omnifunc(findstart, base) + return vim.lsp.completion._omnifunc(findstart, base) end --- @class vim.lsp.formatexpr.Opts |