blob: 4e9494cbe5a581f6681d4031e62a2934c7cbbcff (
plain) (
blame)
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
|
local configs = require 'lspconfig/configs'
local util = require 'lspconfig/util'
local lsp = vim.lsp
local function reload_workspace(bufnr)
bufnr = util.validate_bufnr(bufnr)
lsp.buf_request(bufnr, 'rust-analyzer/reloadWorkspace', nil,
function(err, _, result, _)
if err then error(tostring(err)) end
vim.notify("Workspace reloaded")
end)
end
configs.rust_analyzer = {
default_config = {
cmd = {"rust-analyzer"};
filetypes = {"rust"};
root_dir = function(fname)
local cargo_metadata = vim.fn.system("cargo metadata --format-version 1")
local cargo_root = nil
if vim.v.shell_error == 0 then
cargo_root = vim.fn.json_decode(cargo_metadata)["workspace_root"]
end
return cargo_root or
util.find_git_ancestor(fname) or
util.root_pattern("rust-project.json")(fname) or
util.root_pattern("Cargo.toml")(fname)
end;
settings = {
["rust-analyzer"] = {}
};
};
commands = {
CargoReload = {
function()
reload_workspace(0)
end;
description = "Reload current workspace"
}
};
docs = {
package_json = "https://raw.githubusercontent.com/rust-analyzer/rust-analyzer/master/editors/code/package.json";
description = [[
https://github.com/rust-analyzer/rust-analyzer
rust-analyzer (aka rls 2.0), a language server for Rust
See [docs](https://github.com/rust-analyzer/rust-analyzer/tree/master/docs/user#settings) for extra settings.
]];
default_config = {
root_dir = [[root_pattern("Cargo.toml", "rust-project.json")]];
};
};
};
configs.rust_analyzer.reload_workspace = reload_workspace
-- vim:et ts=2 sw=2
|