aboutsummaryrefslogtreecommitdiffstats
path: root/lua
Commit message (Collapse)AuthorAgeFilesLines
...
* run autogen_metadata.luaWilliam Boman2022-01-131-1/+1
|
* run autogen_metadata.luaWilliam Boman2022-01-131-1/+1
|
* fix(opencl_ls): update release asset filenamesWilliam Boman2022-01-121-9/+17
| | | | The new 0.2 release uses .tar.gz for Unix dist.
* ui: s/last updated/installed/William Boman2022-01-121-1/+1
| | | | As to not confuse this row with the new version check capabilities.
* run autogen_metadata.luaWilliam Boman2022-01-121-1/+1
|
* fix(angularls): prepend cmd with 'cmd.exe /C' on Windows (#420)William Boman2022-01-121-1/+8
|
* fix(opencl_ls): update release asset filenamesWilliam Boman2022-01-121-9/+3
|
* pylsp: add autocompletion to PylspInstall command (#418)William Boman2022-01-122-0/+21
|
* add pylsp schemaWilliam Boman2022-01-121-0/+3
|
* add opencl_ls (#415)William Boman2022-01-124-0/+46
| | | Closes #393.
* add asm_lsp (#411)William Boman2022-01-125-1/+25
|
* autogen_metadata: use gist registry (#417)William Boman2022-01-122-3/+3
|
* fix(ccls): default to system clang+llvm if no prebuilt dist exist for ↵William Boman2022-01-111-47/+55
| | | | | current OS/arch (#414) Closes #355.
* add rnix (#408)William Boman2022-01-1010-0/+140
|
* Add OpenFOAM language server (#405)Mohammed Elwardi Fadeli2022-01-096-1/+24
|
* fetch: add User-Agent header (#409)William Boman2022-01-092-7/+32
|
* fix(jdtls): redefine cmd in on_new_configWilliam Boman2022-01-091-0/+8
|
* ui: map keybind to update all outdated servers (#407)William Boman2022-01-092-10/+37
| | | | | Previously it'd always update all installed servers. With this change it'll only update servers that are outdated (defaults to all installed servers if no servers are marked as outdated when triggered).
* add nimls (#406)William Boman2022-01-094-0/+37
| | | Co-authored-by: Nikita Bliznyuk <bliznyuknm@gmail.com>
* jdtls: ensure java is installedWilliam Boman2022-01-091-0/+3
|
* run autogen_metadata.luaWilliam Boman2022-01-071-1/+1
|
* add remark_ls (#404)William Boman2022-01-075-2/+21
| | | Closes #401.
* sorbet: add homepageWilliam Boman2022-01-071-0/+1
|
* omnisharp: add support for linux arm64William Boman2022-01-071-1/+7
|
* feat: integrate gh-cli for GitHub API calls (#403)William Boman2022-01-073-4/+27
| | | Closes #248.
* fix(ui): less intrusive version check UI (#402)William Boman2022-01-062-33/+41
|
* fix outdated check for npm packages on Windows (#400)William Boman2022-01-062-2/+3
|
* rerun autogenWilliam Boman2022-01-061-1/+1
|
* feat(ui): display outdated servers (#395)William Boman2022-01-0625-159/+834
|
* rerun autogenWilliam Boman2022-01-062-2/+2
|
* rerun autogenWilliam Boman2022-01-052-1/+2
|
* rerun autogenWilliam Boman2022-01-051-1/+1
|
* rerun autogenWilliam Boman2022-01-051-1/+1
|
* fix(taplo): wrong github-release linux link (#389) (#390)zmtq052022-01-051-1/+1
|
* fix(receipts): register receipt before pinning version number (#388)William Boman2022-01-043-14/+15
|
* write install receipts (#379)William Boman2022-01-0351-199/+522
|
* health: add neovim version checkWilliam Boman2022-01-031-0/+6
|
* leverage PATH for locating local executables (#283)William Boman2022-01-0282-253/+206
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. This is a breaking change for the following servers, which will have to be reinstalled: - ltex - clangd 2. This is a breaking change for users who reach into the default options (for example via server:get_default_options()) to access the `cmd` property. nvim-lsp-installer no longer provides the `cmd` (except in a few instances), but instead provides an amended PATH which allows neovim's LSP client to locate the locally installed executable. To access the `cmd`, simply access it via lspconfig instead, for example like so: local default_config = require("lspconfig.server_configurations.rust_analyzer").default_config print("I can now access the cmd governed by lspconfig:", default_config.cmd) 3. This is a breaking change for 3rd party use cases that makes use of the `executable()` APIs (e.g., `npm.executable(root_dir, "tsserver")`). The recommended usage is to instead to use the canonical name of the command ("tsserver"), while providing an amended PATH, for example: local npm = require("nvim-lsp-installer.installers.npm") local server = server.Server:new { ..., root_dir = root_dir, installer = npm.packages { "tsserver" }, default_options = { cmd = { "tsserver" }, cmd_env = npm.env(root_dir), } }
* fix(texlab): fix installing on windowsWilliam Boman2022-01-021-2/+6
|
* fix(taplo): use github release files instead (#377)William Boman2022-01-023-40/+54
|
* add taplo (#373)William Boman2022-01-026-0/+51
|
* health: add java checkWilliam Boman2021-12-301-1/+2
|
* add solc (#371)William Boman2021-12-305-2/+45
| | | Resolves #368.
* add zk (#345)the continium2021-12-295-1/+65
|
* feat(ui): display interactive server settings schema table (#363)William Boman2021-12-2924-5/+290
|
* fix(arduino_language_server): install clangd, also add docs on how to work ↵William Boman2021-12-272-0/+99
| | | | with FQBN (#364)
* run autogen_metadata.shWilliam Boman2021-12-262-1/+2
|
* feat(ui): sort servers alphabetically, also add language hints (#361)William Boman2021-12-252-7/+66
|
* fix(zls): add chmod +x to binary (#362)William Boman2021-12-251-0/+1
| | | The executable flag seems to have disappeared in 0.9.0.
* add some tests (#360)William Boman2021-12-254-13/+17
|