diff options
Diffstat (limited to 'lsp/vala_ls.lua')
| -rw-r--r-- | lsp/vala_ls.lua | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/lsp/vala_ls.lua b/lsp/vala_ls.lua new file mode 100644 index 00000000..f48887e3 --- /dev/null +++ b/lsp/vala_ls.lua @@ -0,0 +1,35 @@ +local util = require 'lspconfig.util' + +local meson_matcher = function(path) + local pattern = 'meson.build' + local f = vim.fn.glob(table.concat({ path, pattern }, '/')) + if f == '' then + return nil + end + for line in io.lines(f) do + -- skip meson comments + if not line:match '^%s*#.*' then + local str = line:gsub('%s+', '') + if str ~= '' then + if str:match '^project%(' then + return path + else + break + end + end + end + end +end + +---@brief +--- +---https://github.com/Prince781/vala-language-server +return { + cmd = { 'vala-language-server' }, + filetypes = { 'vala', 'genie' }, + root_dir = function(bufnr, on_dir) + local fname = vim.api.nvim_buf_get_name(bufnr) + local root = util.search_ancestors(fname, meson_matcher) + on_dir(root or vim.fs.dirname(vim.fs.find('.git', { path = fname, upward = true })[1])) + end, +} |
