aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/process.lua
Commit message (Collapse)AuthorAgeFilesLines
* chore: further decouple module structure (#685)William Boman2022-05-111-316/+0
|
* feat(ui): display installed server version (#520)William Boman2022-03-051-1/+1
|
* async: raise errors instead of returning pcall-style (#521)William Boman2022-03-051-1/+1
|
* leverage PATH for locating local executables (#283)William Boman2022-01-021-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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(windows): unset PSMODULEPATH before invoking powershell scripts (#278)William Boman2021-11-251-3/+7
|
* add synchronous variants of commands for better headless interop (#189)William Boman2021-10-261-2/+2
|
* add proper emmylua annotations (#196)William Boman2021-10-251-1/+46
|
* Revert "access environ via vim.loop"William Boman2021-10-221-7/+9
| | | | | | This reverts commit a2a8c3733b936d6591789eb2ad66c044a33486d7. Apparently this is not available on Windows nvim v0.5.0.
* access environ via vim.loopWilliam Boman2021-10-221-9/+7
|
* installers/context: rename functions (#170)William Boman2021-10-171-1/+1
|
* installers/pip3: add setting for adding extra install args (#151)William Boman2021-10-171-1/+1
|
* process: avoid duplicate env entries (#155)William Boman2021-10-151-4/+6
| | | Resolves #123.
* windows: attempt all common archiver programs (#136)William Boman2021-10-061-34/+50
|
* attempt curl if wget is not available (#129)William Boman2021-10-051-1/+35
|
* better error messagingWilliam Boman2021-10-051-5/+9
|
* fix debug log in cases with nil argsWilliam Boman2021-10-041-1/+7
|
* fix nil errorWilliam Boman2021-10-041-1/+1
|
* styluaWilliam Boman2021-10-041-2/+2
|
* sanitize env in debug logsWilliam Boman2021-10-041-2/+32
|
* fix newlines in stdout/stderr calls, more robust error handling (#114)William Boman2021-10-011-1/+1
|
* fix logging at correct level, also add :LspInstallLog commandWilliam Boman2021-09-301-5/+5
|
* support installing specific version of language servers, defaults to latest ↵William Boman2021-09-291-8/+22
| | | | (#106)
* feat: add a logger based on plenary.log (#99)kylo2522021-09-251-3/+3
|
* optimize io (70%+ startup speedups) (#93)William Boman2021-09-171-3/+28
|
* rewrite some installers for broader cross-platform support (#85)William Boman2021-09-101-2/+2
| | | | | | | | | | - Remove all usage of zx in favour of native Lua (via libuv) - Introduce new set of `std` installers The following servers will have to be reinstalled due to this change: 1. clangd 2. solargraph 3. sumneko_lua 4. tailwindcss
* some fixesWilliam Boman2021-09-071-1/+5
|
* add direct integration with libuv instead of going through termopen, also ↵William Boman2021-09-071-0/+135
implement a UI (#79) * add direct integration with libuv instead of going through termopen, also implement a UI * alleged free perf boosts yo that's free cycles