| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | chore: further decouple module structure (#685) | William Boman | 2022-05-11 | 1 | -316/+0 |
| | | |||||
| * | feat(ui): display installed server version (#520) | William Boman | 2022-03-05 | 1 | -1/+1 |
| | | |||||
| * | async: raise errors instead of returning pcall-style (#521) | William Boman | 2022-03-05 | 1 | -1/+1 |
| | | |||||
| * | leverage PATH for locating local executables (#283) | William Boman | 2022-01-02 | 1 | -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 Boman | 2021-11-25 | 1 | -3/+7 |
| | | |||||
| * | add synchronous variants of commands for better headless interop (#189) | William Boman | 2021-10-26 | 1 | -2/+2 |
| | | |||||
| * | add proper emmylua annotations (#196) | William Boman | 2021-10-25 | 1 | -1/+46 |
| | | |||||
| * | Revert "access environ via vim.loop" | William Boman | 2021-10-22 | 1 | -7/+9 |
| | | | | | | | This reverts commit a2a8c3733b936d6591789eb2ad66c044a33486d7. Apparently this is not available on Windows nvim v0.5.0. | ||||
| * | access environ via vim.loop | William Boman | 2021-10-22 | 1 | -9/+7 |
| | | |||||
| * | installers/context: rename functions (#170) | William Boman | 2021-10-17 | 1 | -1/+1 |
| | | |||||
| * | installers/pip3: add setting for adding extra install args (#151) | William Boman | 2021-10-17 | 1 | -1/+1 |
| | | |||||
| * | process: avoid duplicate env entries (#155) | William Boman | 2021-10-15 | 1 | -4/+6 |
| | | | | Resolves #123. | ||||
| * | windows: attempt all common archiver programs (#136) | William Boman | 2021-10-06 | 1 | -34/+50 |
| | | |||||
| * | attempt curl if wget is not available (#129) | William Boman | 2021-10-05 | 1 | -1/+35 |
| | | |||||
| * | better error messaging | William Boman | 2021-10-05 | 1 | -5/+9 |
| | | |||||
| * | fix debug log in cases with nil args | William Boman | 2021-10-04 | 1 | -1/+7 |
| | | |||||
| * | fix nil error | William Boman | 2021-10-04 | 1 | -1/+1 |
| | | |||||
| * | stylua | William Boman | 2021-10-04 | 1 | -2/+2 |
| | | |||||
| * | sanitize env in debug logs | William Boman | 2021-10-04 | 1 | -2/+32 |
| | | |||||
| * | fix newlines in stdout/stderr calls, more robust error handling (#114) | William Boman | 2021-10-01 | 1 | -1/+1 |
| | | |||||
| * | fix logging at correct level, also add :LspInstallLog command | William Boman | 2021-09-30 | 1 | -5/+5 |
| | | |||||
| * | support installing specific version of language servers, defaults to latest ↵ | William Boman | 2021-09-29 | 1 | -8/+22 |
| | | | | | (#106) | ||||
| * | feat: add a logger based on plenary.log (#99) | kylo252 | 2021-09-25 | 1 | -3/+3 |
| | | |||||
| * | optimize io (70%+ startup speedups) (#93) | William Boman | 2021-09-17 | 1 | -3/+28 |
| | | |||||
| * | rewrite some installers for broader cross-platform support (#85) | William Boman | 2021-09-10 | 1 | -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 fixes | William Boman | 2021-09-07 | 1 | -1/+5 |
| | | |||||
| * | add direct integration with libuv instead of going through termopen, also ↵ | William Boman | 2021-09-07 | 1 | -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 | |||||
