aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorHugo <hugo@whynothugo.nl>2024-08-05 11:04:01 +0200
committerGitHub <noreply@github.com>2024-08-05 17:04:01 +0800
commit9f10797d354d75fd9f2f546338ed6f5d45582904 (patch)
tree174e75bf823a938012ee6dace6ff23d8d823c5e7 /lua
parentfix(texlab): use notify instead of print (#3256) (diff)
downloadnvim-lspconfig-9f10797d354d75fd9f2f546338ed6f5d45582904.tar
nvim-lspconfig-9f10797d354d75fd9f2f546338ed6f5d45582904.tar.gz
nvim-lspconfig-9f10797d354d75fd9f2f546338ed6f5d45582904.tar.bz2
nvim-lspconfig-9f10797d354d75fd9f2f546338ed6f5d45582904.tar.lz
nvim-lspconfig-9f10797d354d75fd9f2f546338ed6f5d45582904.tar.xz
nvim-lspconfig-9f10797d354d75fd9f2f546338ed6f5d45582904.tar.zst
nvim-lspconfig-9f10797d354d75fd9f2f546338ed6f5d45582904.zip
feat: implement ZkList command for zk (#3257)
Surfaces the `zk.list` LSP command in the same way as `zk.new` and `zk.index`.
Diffstat (limited to 'lua')
-rw-r--r--lua/lspconfig/server_configurations/zk.lua31
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', {