1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
local validate = vim.validate
local api = vim.api
local M = {}
function M.validate_bufnr(bufnr)
validate {
bufnr = { bufnr, 'n' }
}
return bufnr == 0 and api.nvim_get_current_buf() or bufnr
end
function M.add_hook_before(fn, new_fn)
if fn then
return function(...)
-- TODO which result?
new_fn(...)
return fn(...)
end
else
return new_fn
end
end
function M.add_hook_after(fn, new_fn)
if fn then
return function(...)
-- TODO which result?
fn(...)
return new_fn(...)
end
else
return new_fn
end
end
local function split_lines(s)
return vim.split(s, "\n", true)
end
function M.tbl_deep_extend(dst, ...)
validate { dst = { dst, 't' } }
for i = 1, select("#", ...) do
local t = select(i, ...)
validate { arg = { t, 't' } }
for k, v in pairs(t) do
if type(v) == 'table' and not vim.tbl_islist(v) then
dst[k] = M.tbl_deep_extend(dst[k] or {}, v)
else
dst[k] = v
end
end
end
return dst
end
function M.nvim_multiline_command(command)
validate { command = { command, 's' } }
for line in vim.gsplit(command, "\n", true) do
api.nvim_command(line)
end
end
function M.lookup_section(settings, section)
for part in vim.gsplit(section, '.', true) do
settings = settings[part]
end
return settings
end
function M.create_module_commands(module_name, commands)
for command_name, def in pairs(commands) do
local parts = {"command!"}
-- Insert attributes.
for k, v in pairs(def) do
if type(k) == 'string' and type(v) == 'boolean' and v then
table.insert(parts, "-"..k)
elseif type(k) == 'number' and type(v) == 'string' and v:match("^%-") then
table.insert(parts, v)
end
end
table.insert(parts, command_name)
-- The command definition.
table.insert(parts,
string.format("lua require'common_lsp/%s'.commands[%q][1]()", module_name, command_name))
local command = table.concat(parts, " ")
print(command)
api.nvim_command(command)
end
end
return M
-- vim:et ts=2 sw=2
|