aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim
diff options
context:
space:
mode:
authorJon Huhn <nojnhuh@users.noreply.github.com>2023-05-09 11:12:54 -0500
committerGitHub <noreply@github.com>2023-05-09 18:12:54 +0200
commit075a72d5ff9d49b1e93c0253b54931ecdcf673f3 (patch)
tree9fba59ed88a81d2bbecd11a04fb214409ac47bc0 /runtime/lua/vim
parent82bb7bbc481603d709df2b6d03918d15b81dac96 (diff)
downloadrneovim-075a72d5ff9d49b1e93c0253b54931ecdcf673f3.tar.gz
rneovim-075a72d5ff9d49b1e93c0253b54931ecdcf673f3.tar.bz2
rneovim-075a72d5ff9d49b1e93c0253b54931ecdcf673f3.zip
fix(lsp): fix relative patterns for `workspace/didChangeWatchedFiles` (#23548)
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r--runtime/lua/vim/lsp/_watchfiles.lua10
1 files changed, 9 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/_watchfiles.lua b/runtime/lua/vim/lsp/_watchfiles.lua
index 533a955925..3a78724d79 100644
--- a/runtime/lua/vim/lsp/_watchfiles.lua
+++ b/runtime/lua/vim/lsp/_watchfiles.lua
@@ -198,16 +198,17 @@ function M.register(reg, ctx)
end
local watch_regs = {}
for _, w in ipairs(reg.registerOptions.watchers) do
+ local relative_pattern = false
local glob_patterns = {}
if type(w.globPattern) == 'string' then
for _, folder in ipairs(client.workspace_folders) do
table.insert(glob_patterns, { baseUri = folder.uri, pattern = w.globPattern })
end
else
+ relative_pattern = true
table.insert(glob_patterns, w.globPattern)
end
for _, glob_pattern in ipairs(glob_patterns) do
- local pattern = parse(glob_pattern.pattern)
local base_dir = nil
if type(glob_pattern.baseUri) == 'string' then
base_dir = glob_pattern.baseUri
@@ -216,9 +217,16 @@ function M.register(reg, ctx)
end
assert(base_dir, "couldn't identify root of watch")
base_dir = vim.uri_to_fname(base_dir)
+
local kind = w.kind
or protocol.WatchKind.Create + protocol.WatchKind.Change + protocol.WatchKind.Delete
+ local pattern = glob_pattern.pattern
+ if relative_pattern then
+ pattern = base_dir .. '/' .. pattern
+ end
+ pattern = parse(pattern)
+
table.insert(watch_regs, {
base_dir = base_dir,
pattern = pattern,