diff options
| author | William Boman <william@redwill.se> | 2021-09-16 15:54:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-16 15:54:30 +0200 |
| commit | d5400767fa44dc549a8fc6b1b1b1c7c233f9b341 (patch) | |
| tree | 6cc37974c1f636187bbef5d44823a8f39f5040c2 /lua/nvim-lsp-installer/servers/texlab/init.lua | |
| parent | ui/status-win: show relative install date next to installed servers (diff) | |
| download | mason-d5400767fa44dc549a8fc6b1b1b1c7c233f9b341.tar mason-d5400767fa44dc549a8fc6b1b1b1c7c233f9b341.tar.gz mason-d5400767fa44dc549a8fc6b1b1b1c7c233f9b341.tar.bz2 mason-d5400767fa44dc549a8fc6b1b1b1c7c233f9b341.tar.lz mason-d5400767fa44dc549a8fc6b1b1b1c7c233f9b341.tar.xz mason-d5400767fa44dc549a8fc6b1b1b1c7c233f9b341.tar.zst mason-d5400767fa44dc549a8fc6b1b1b1c7c233f9b341.zip | |
better error messages (#92)
Diffstat (limited to 'lua/nvim-lsp-installer/servers/texlab/init.lua')
| -rw-r--r-- | lua/nvim-lsp-installer/servers/texlab/init.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lua/nvim-lsp-installer/servers/texlab/init.lua b/lua/nvim-lsp-installer/servers/texlab/init.lua index a28b4273..6415986f 100644 --- a/lua/nvim-lsp-installer/servers/texlab/init.lua +++ b/lua/nvim-lsp-installer/servers/texlab/init.lua @@ -18,7 +18,10 @@ return server.Server:new { name = "texlab", root_dir = root_dir, installer = { - std.ensure_executables { "pdflatex" }, + std.ensure_executables { + { "pdflatex" }, + "A TeX distribution is not installed. Refer to https://www.latex-project.org/get/.", + }, std.untargz_remote(("https://github.com/latex-lsp/texlab/releases/download/%s/%s"):format(VERSION, target)), }, default_options = { |
