diff options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/server_configurations/zk.lua | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/lua/lspconfig/server_configurations/zk.lua b/lua/lspconfig/server_configurations/zk.lua index e7065282..57a1ea1a 100644 --- a/lua/lspconfig/server_configurations/zk.lua +++ b/lua/lspconfig/server_configurations/zk.lua @@ -1,5 +1,13 @@ local util = require 'lspconfig.util' +local function find_zk_root(startpath) + for dir in vim.fs.parents(startpath) do + if vim.fn.isdirectory(vim.fs.joinpath(dir, '.zk')) == 1 then + return dir + end + end +end + return { default_config = { cmd = { 'zk', 'lsp' }, @@ -16,6 +24,29 @@ return { end, description = 'ZkIndex', }, + ZkList = { + function() + local bufpath = vim.api.nvim_buf_get_name(0) + local root = find_zk_root(bufpath) + + vim.lsp.buf_request(0, 'workspace/executeCommand', { + command = 'zk.list', + arguments = { root, { select = { 'path' } } }, + }, function(_, result, _, _) + if not result then + return + end + local paths = vim.tbl_map(function(item) + return item.path + end, result) + vim.ui.select(paths, {}, function(choice) + vim.cmd('edit ' .. choice) + end) + end) + end, + + description = 'ZkList', + }, ZkNew = { function(...) vim.lsp.buf_request(0, 'workspace/executeCommand', { |
