-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathinit.lua
276 lines (251 loc) · 7.68 KB
/
init.lua
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
local vim = vim
local validate = vim.validate
local api = vim.api
local lsp = vim.lsp
local uv = vim.loop
local fn = vim.fn
local tbl_extend = vim.tbl_extend
function try_require(...)
local status, lib = pcall(require, ...)
if(status) then return lib end
return nil
end
local lspconfig_is_present = true
local util = try_require('lspconfig.util')
if util == nil then
lspconfig_is_present = false
util = require('ionide.util')
end
local M = {}
local function create_handlers()
local handlers = fn['fsharp#get_handlers']()
local result = {}
for method, func_name in pairs(handlers) do
local handler = function(err, params, ctx, _config)
if params == nil or not (method == ctx.method) then return end
fn[func_name](params)
end
result[method] = handler
end
M.handlers = result
return result
end
local function get_default_config()
local result = {}
fn['fsharp#loadConfig']()
local auto_init = vim.g['fsharp#automatic_workspace_init']
result.name = "ionide"
result.cmd = vim.g['fsharp#fsautocomplete_command']
result.cmd_env = { DOTNET_ROLL_FORWARD = "LatestMajor" }
result.root_dir = util.root_pattern("*.sln", "*.fsproj", ".git", "*.fsx")
result.filetypes = {"fsharp"}
result.autostart = true
result.handlers = create_handlers()
result.init_options = { AutomaticWorkspaceInit = (auto_init == 1) }
result.on_init = function() fn['fsharp#initialize']() end
return result
end
-- https://github.com/ionide/Ionide-vim/issues/69
local function inject_codelens_refresh(config)
local new_config = tbl_extend("keep", config, {})
new_config.on_attach = function(client, bufnr)
if config.on_attach then
config.on_attach(client, bufnr)
end
vim.lsp.codelens.refresh()
end
return new_config
end
local function autostart_if_needed(m, config)
local auto_setup = (vim.g['fsharp#lsp_auto_setup'] == 1)
if auto_setup and not (config.autostart == false) then
m.autostart()
end
end
local function delegate_to_lspconfig(config)
local lspconfig = require('lspconfig')
local configs = require('lspconfig.configs')
if not (configs['ionide']) then
configs['ionide'] = {
default_config = get_default_config(),
docs = {
description = [[
https://github.com/ionide/Ionide-vim
]],
},
}
end
lspconfig.ionide.setup(config)
end
M.manager = nil
-- partially adopted from neovim/nvim-lspconfig, see lspconfig.LICENSE.md
local function create_manager(config)
validate {
cmd = { config.cmd, "t", true },
root_dir = { config.root_dir, "f", true },
filetypes = { config.filetypes, "t", true },
on_attach = { config.on_attach, "f", true },
on_new_config = { config.on_new_config, "f", true },
}
local default_config = tbl_extend("keep", get_default_config(), util.default_config)
config = tbl_extend("keep", config, default_config)
local trigger
if config.filetypes then
trigger = "FileType " .. table.concat(config.filetypes, ",")
else
trigger = "BufReadPost *"
end
local get_root_dir = config.root_dir
function M.autostart()
local root_dir = get_root_dir(api.nvim_buf_get_name(0), api.nvim_get_current_buf())
if not root_dir then
root_dir = util.path.dirname(api.nvim_buf_get_name(0))
end
if not root_dir then
root_dir = vim.fn.getcwd()
end
root_dir = string.gsub(root_dir, "\\", "/")
api.nvim_command(
string.format(
"autocmd %s lua require'ionide'.manager.try_add_wrapper()",
"BufReadPost " .. root_dir .. "/*"
)
)
for _, bufnr in ipairs(vim.api.nvim_list_bufs()) do
local buf_dir = api.nvim_buf_get_name(bufnr)
if buf_dir:sub(1, root_dir:len()) == root_dir then
M.manager.try_add_wrapper(bufnr)
end
end
end
local reload = false
if M.manager then
for _, client in ipairs(M.manager.clients()) do
client.stop(true)
end
reload = true
M.manager = nil
end
local make_config = function(_root_dir)
local new_config = vim.tbl_deep_extend("keep", vim.empty_dict(), config)
new_config = vim.tbl_deep_extend("keep", new_config, default_config)
new_config.capabilities = new_config.capabilities or lsp.protocol.make_client_capabilities()
new_config.capabilities = vim.tbl_deep_extend("keep", new_config.capabilities, {
workspace = {
configuration = true,
},
})
if config.on_new_config then
pcall(config.on_new_config, new_config, _root_dir)
end
new_config.on_init = util.add_hook_after(new_config.on_init, function(client, _result)
function client.workspace_did_change_configuration(settings)
if not settings then
return
end
if vim.tbl_isempty(settings) then
settings = { [vim.type_idx] = vim.types.dictionary }
end
return client.notify("workspace/didChangeConfiguration", {
settings = settings,
})
end
if not vim.tbl_isempty(new_config.settings) then
client.workspace_did_change_configuration(new_config.settings)
end
end)
new_config._on_attach = new_config.on_attach
new_config.on_attach = vim.schedule_wrap(function(client, bufnr)
if bufnr == api.nvim_get_current_buf() then
M._setup_buffer(client.id, bufnr)
else
api.nvim_command(
string.format(
"autocmd BufEnter <buffer=%d> ++once lua require'ionide'._setup_buffer(%d,%d)",
bufnr,
client.id,
bufnr
)
)
end
end)
new_config.root_dir = _root_dir
return new_config
end
local manager = util.server_per_root_dir_manager(function(_root_dir) return make_config(_root_dir) end)
function manager.try_add(bufnr)
bufnr = bufnr or api.nvim_get_current_buf()
if api.nvim_buf_get_option(bufnr, 'buftype') == 'nofile' then
return
end
local root_dir = get_root_dir(api.nvim_buf_get_name(bufnr), bufnr)
local id = manager.add(root_dir)
if id then
lsp.buf_attach_client(bufnr, id)
end
end
function manager.try_add_wrapper(bufnr)
bufnr = bufnr or api.nvim_get_current_buf()
local buftype = api.nvim_buf_get_option(bufnr, 'filetype')
if buftype == 'fsharp' then
manager.try_add(bufnr)
return
end
end
M.manager = manager
M.make_config = make_config
if reload and not (config.autostart == false) then
for _, bufnr in ipairs(vim.api.nvim_list_bufs()) do
manager.try_add_wrapper(bufnr)
end
else
autostart_if_needed(M, config)
end
end
-- partially adopted from neovim/nvim-lspconfig, see lspconfig.LICENSE.md
function M._setup_buffer(client_id, bufnr)
local client = lsp.get_client_by_id(client_id)
if not client then
return
end
if client.config._on_attach then
client.config._on_attach(client, bufnr)
end
end
function M.setup(config)
local new_config = inject_codelens_refresh(config)
if lspconfig_is_present then
return delegate_to_lspconfig(new_config)
end
return create_manager(new_config)
end
function M.status()
if lspconfig_is_present then
print("* LSP server: handled by nvim-lspconfig")
elseif M.manager ~= nil then
if next(M.manager.clients()) == nil then
print("* LSP server: not started")
else
print("* LSP server: started")
end
else
print("* LSP server: not initialized")
end
end
function M.call(method, params, callback_key)
local handler = function(err, result, ctx, config)
if result ~= nil then
fn['fsharp#resolve_callback'](callback_key, {
result = result,
err = err,
client_id = ctx.client_id,
bufnr = ctx.bufnr
})
end
end
lsp.buf_request(0, method, params, handler)
end
function M.notify(method, params)
lsp.buf_notify(0, method, params)
end
return M