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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
local api = vim.api
local validate = vim.validate
local util = require 'common_lsp/util'
local lsp = vim.lsp
local M = {}
-- TODO support more of https://github.com/microsoft/vscode-languageserver-node/blob/master/protocol/src/protocol.progress.proposed.md
local default_config
default_config = {
name = "texlab";
cmd = {"texlab"};
filetype = {"tex", "bib"};
texlab_log_level = lsp.protocol.MessageType.Warning;
texlab_settings = {
latex = {
build = {
args = {"-pdf", "-interaction=nonstopmode", "-synctex=1"};
executable = "latexmk";
onSave = false;
}
}
}
}
local function setup_callbacks(config)
config.callbacks = config.callbacks or {}
config.callbacks["window/logMessage"] = function(err, method, params, client_id)
if params and params.type <= config.texlab_log_level then
lsp.builtin_callbacks[method](err, method, params, client_id)
end
end
-- TODO use existing callback?
config.callbacks["workspace/configuration"] = function(err, method, params, client_id)
if err then error(tostring(err)) end
if not params.items then
return {}
end
local result = {}
for _, item in ipairs(params.items) do
if item.section then
local value = util.lookup_section(config.texlab_settings, item.section) or vim.NIL
print(string.format("config[%q] = %s", item.section, vim.inspect(value)))
table.insert(result, value)
end
end
return result
end
end
-- A function to set up texlab easier.
--
-- Additionally, it sets up the following commands:
-- - TexlabBuild: builds the current buffer.
--
-- {config} is the same as |vim.lsp.add_filetype_config()|, but with some
-- additions and changes:
--
-- {texlab_log_level}
-- controls the level of logs to show from build processes and other
-- window/logMessage events. By default it is set to
-- vim.lsp.protocol.MessageType.Warning instead of
-- vim.lsp.protocol.MessageType.Log.
--
-- {texlab_settings}
-- The settings specified here https://texlab.netlify.com/docs/reference/configuration.
-- This is a table, and the keys are case sensitive.
-- Example: `texlab_settings = { latex = { build = { executable = "latexmk" } } }`
--
-- {filetype}
-- Defaults to {"tex", "bib"}
--
-- {cmd}
-- Defaults to {"texlab"}
--
-- {name}
-- Defaults to "texlab"
function M.setup(config)
config = vim.tbl_extend("keep", config, default_config)
util.tbl_deep_extend(config.texlab_settings, default_config.texlab_settings)
config.capabilities = config.capabilities or vim.lsp.protocol.make_client_capabilities()
util.tbl_deep_extend(config.capabilities, {
workspace = {
configuration = true;
}
})
setup_callbacks(config)
config.on_attach = util.add_hook_after(config.on_attach, function(client, bufnr)
if bufnr == api.nvim_get_current_buf() then
M._setup_buffer()
else
util.nvim_multiline_command(string.format("autocmd BufEnter <buffer=%d> ++once lua require'common_lsp/texlab'._setup_buffer()", bufnr))
end
end)
lsp.add_filetype_config(config)
end
function M._setup_buffer()
util.nvim_multiline_command [[
command! TexlabBuild lua require'common_lsp/texlab'.texlab_buf_build(0)
]]
end
local texlab_build_status = vim.tbl_add_reverse_lookup {
Success = 0;
Error = 1;
Failure = 2;
Cancelled = 3;
}
function M.texlab_buf_build(bufnr)
bufnr = util.validate_bufnr(bufnr)
local params = { textDocument = { uri = vim.uri_from_bufnr(bufnr) } }
lsp.buf_request(bufnr, 'textDocument/build', params, function(err, method, result, client_id)
if err then error(tostring(err)) end
print("Build "..texlab_build_status[result.status])
end)
end
M.buf_build = M.texlab_buf_build
-- bufnr isn't actually required here, but we need a valid buffer in order to
-- be able to find the client for buf_request.
-- TODO find a client by looking through buffers for a valid client?
function M.texlab_build_cancel_all(bufnr)
bufnr = util.validate_bufnr(bufnr)
local params = { token = "texlab-build-*" }
lsp.buf_request(bufnr, 'window/progress/cancel', params, function(err, method, result, client_id)
if err then error(tostring(err)) end
print("Cancel result", vim.inspect(result))
end)
end
return M
-- vim:et ts=2 sw=2
|