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
|
local Pkg = require "mason.core.package"
local a = require "mason.core.async"
local installer = require "mason.core.installer"
local _ = require "mason.core.functional"
local platform = require "mason.core.platform"
local github = require "mason.core.managers.github"
local path = require "mason.core.path"
local coalesce, when = _.coalesce, _.when
local repo = "valentjn/ltex-ls"
---@async
local function download_platform_dependent()
local ctx = installer.context()
local source = platform.when {
unix = function()
return github.untargz_release_file {
repo = repo,
asset_file = function(version)
local target = coalesce(
when(platform.is_mac, "ltex-ls-%s-mac-x64.tar.gz"),
when(platform.is_linux, "ltex-ls-%s-linux-x64.tar.gz"),
when(platform.is_win, "ltex-ls-%s-windows-x64.zip")
)
return target:format(version)
end,
}
end,
win = function()
return github.unzip_release_file {
repo = repo,
asset_file = function(version)
return ("ltex-ls-%s-windows-x64.zip"):format(version)
end,
}
end,
}
source.with_receipt()
ctx.fs:rename(("ltex-ls-%s"):format(source.release), "ltex-ls")
end
local function download_platform_independent()
local ctx = installer.context()
local source = github.untargz_release_file {
repo = repo,
asset_file = _.format "ltex-ls-%s.tar.gz",
}
source.with_receipt()
ctx.fs:rename(("ltex-ls-%s"):format(source.release), "ltex-ls")
end
return Pkg.new {
name = "ltex-ls",
desc = [[LTeX Language Server: LSP language server for LanguageTool 🔍✔️ with support for LaTeX 🎓, Markdown 📝, and others]],
homepage = "https://valentjn.github.io/ltex/",
languages = { Pkg.Lang.Text, Pkg.Lang.Markdown, Pkg.Lang.LaTeX },
categories = { Pkg.Cat.LSP },
---@async
---@param ctx InstallContext
install = function(ctx)
if vim.in_fast_event() then
a.scheduler()
end
if vim.fn.executable "java" == 1 then
download_platform_independent()
else
download_platform_dependent()
end
ctx:link_bin("ltex-ls", path.concat { "ltex-ls", "bin", platform.is.win and "ltex-ls.bat" or "ltex-ls" })
ctx:link_bin("ltex-cli", path.concat { "ltex-ls", "bin", platform.is.win and "ltex-cli.bat" or "ltex-cli" })
end,
}
|