aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/lsp/util.lua
diff options
context:
space:
mode:
authorTJ DeVries <devries.timothyj@gmail.com>2020-12-08 21:09:33 -0500
committerGitHub <noreply@github.com>2020-12-08 21:09:33 -0500
commit08ec36efaf2826a7e0fa32a1e6e4a88c035a361c (patch)
treef31e2d714c62bd0982980983b38e30dcf9d9b781 /runtime/lua/vim/lsp/util.lua
parent4383c0f95245d1b98cac28177ade270bf73f008f (diff)
downloadrneovim-08ec36efaf2826a7e0fa32a1e6e4a88c035a361c.tar.gz
rneovim-08ec36efaf2826a7e0fa32a1e6e4a88c035a361c.tar.bz2
rneovim-08ec36efaf2826a7e0fa32a1e6e4a88c035a361c.zip
feat: Allow incremental sync & lsp flags (#13371)
Diffstat (limited to 'runtime/lua/vim/lsp/util.lua')
-rw-r--r--runtime/lua/vim/lsp/util.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/lua/vim/lsp/util.lua b/runtime/lua/vim/lsp/util.lua
index 5804ac6656..da5709bfb7 100644
--- a/runtime/lua/vim/lsp/util.lua
+++ b/runtime/lua/vim/lsp/util.lua
@@ -1315,6 +1315,9 @@ function M.make_text_document_params()
return { uri = vim.uri_from_bufnr(0) }
end
+--- Create the workspace params
+--@param added
+--@param removed
function M.make_workspace_params(added, removed)
return { event = { added = added; removed = removed; } }
end