| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | mason.nvim | William Boman | 2022-07-07 | 1 | -182/+0 |
| | | |||||
| * | docs: remove nvim-lsp-installer.servers helptag (#755) | William Boman | 2022-06-06 | 1 | -1/+0 |
| | | | | | All interactions from userland should preferably go through require("nvim-lsp-installer"). | ||||
| * | chore: further decouple module structure (#685) | William Boman | 2022-05-11 | 1 | -70/+7 |
| | | |||||
| * | chore: remove deprecation notifications | William Boman | 2022-05-11 | 1 | -4/+0 |
| | | | | | | These methods are still deprecated, but will remain until a substitute is implemented and available. | ||||
| * | chore: remove deprecated modules (#682) | William Boman | 2022-05-10 | 1 | -70/+29 |
| | | | | | - https://github.com/williamboman/nvim-lsp-installer/wiki/Async-infrastructure-changes-notice - https://github.com/williamboman/nvim-lsp-installer/discussions/636 | ||||
| * | feat: integrate with lspconfig's on_setup hook (#631) | William Boman | 2022-04-27 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | * feat: integrate with lspconfig's on_setup hook * fix!: don't use aliased installation directories if new .setup() fn is used This makes it so servers are always installed in a directory name that corresponds with the server name. The reason aliased installation directories is supported is lost on me, but it's legacy and complicates things unnecessarily. This is a breaking change for users who previously were using the `.on_server_ready()` hook, and now transitioned to setting up servers directly via lspconfig. These users will need to reinstall the server. * fix: block usage of the deprecated server:setup() method if new setup method is used * fix: allow passing no arg to setup() * docs: ok final.v3 readme | ||||
| * | switch majority of installers to async implementation (#574) | William Boman | 2022-04-06 | 1 | -36/+62 |
| | | |||||
| * | run server installation in async execution context (#525) | William Boman | 2022-03-06 | 1 | -45/+36 |
| | | |||||
| * | feat(ui): display outdated servers (#395) | William Boman | 2022-01-06 | 1 | -3/+20 |
| | | |||||
| * | write install receipts (#379) | William Boman | 2022-01-03 | 1 | -0/+18 |
| | | |||||
| * | leverage PATH for locating local executables (#283) | William Boman | 2022-01-02 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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), } } | ||||
| * | feat(ui): display interactive server settings schema table (#363) | William Boman | 2021-12-29 | 1 | -0/+5 |
| | | |||||
| * | add ccls (#299) | William Boman | 2021-12-05 | 1 | -0/+7 |
| | | |||||
| * | server: always delete the tmp install dir if installation fails | William Boman | 2021-12-02 | 1 | -2/+7 |
| | | |||||
| * | server: add {version} param to server:install() | William Boman | 2021-11-17 | 1 | -2/+3 |
| | | |||||
| * | remove {pre,post}_setup functions (#250) | William Boman | 2021-11-08 | 1 | -13/+1 |
| | | |||||
| * | add language aliases to :LspInstall (#232) | William Boman | 2021-11-06 | 1 | -1/+3 |
| | | |||||
| * | fix attaching servers with no filetypes defined (#237) | William Boman | 2021-11-03 | 1 | -2/+7 |
| | | |||||
| * | server: remove context.install_dir if installation fails | William Boman | 2021-10-31 | 1 | -0/+1 |
| | | |||||
| * | pip3: promote install_dir to server's root dir immediately (#230) | William Boman | 2021-10-31 | 1 | -42/+45 |
| | | |||||
| * | respect autostart setting (#228) | William Boman | 2021-10-31 | 1 | -1/+3 |
| | | | | Fixes #227. | ||||
| * | server: add attach_buffers() method (#220) | William Boman | 2021-10-31 | 1 | -2/+21 |
| | | |||||
| * | fix(server): only manually create final install dir on unix systems | William Boman | 2021-10-30 | 1 | -8/+20 |
| | | |||||
| * | colocate tmpdir with the server's install dir to avoid cross-fs issues (#217) | William Boman | 2021-10-30 | 1 | -26/+26 |
| | | | | Fixes #215. | ||||
| * | server: add :on_ready() method (#214) | William Boman | 2021-10-30 | 1 | -0/+14 |
| | | |||||
| * | more error logging | William Boman | 2021-10-30 | 1 | -0/+1 |
| | | |||||
| * | add more error logs | William Boman | 2021-10-30 | 1 | -0/+8 |
| | | |||||
| * | run installations in tmpdir (#199) | William Boman | 2021-10-30 | 1 | -22/+49 |
| | | | | Resolves #154. | ||||
| * | fix incorrect emmylua docstring | William Boman | 2021-10-28 | 1 | -1/+1 |
| | | |||||
| * | add synchronous variants of commands for better headless interop (#189) | William Boman | 2021-10-26 | 1 | -0/+6 |
| | | |||||
| * | add proper emmylua annotations (#196) | William Boman | 2021-10-25 | 1 | -25/+16 |
| | | |||||
| * | add suggestion to error message | William Boman | 2021-10-20 | 1 | -1/+5 |
| | | |||||
| * | feat: autogen metadata table(s) (#159) | kylo252 | 2021-10-18 | 1 | -0/+10 |
| | | | | Co-authored-by: William Boman <william@redwill.se> | ||||
| * | add eslint, deprecate eslintls (#149) | William Boman | 2021-10-14 | 1 | -0/+1 |
| | | |||||
| * | add keybindings to UI window (#140) | William Boman | 2021-10-10 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | - Allows for expanding servers to view more information about it. - Allows for installing/reinstalling/uninstalling servers. The default keybindings is an attempt to mimic vim-fugitive's :Git maps, and these can be overriden. The keybinding implementation in display.lua is a bit hacky, but it works and the "public" API is at least manageable. This will also open up for adding more metadata in the future, such as filetype information, currently installed version, latest available version, etc. Also there's Cowth Vader. | ||||
| * | lemminx: fix std.rename call | William Boman | 2021-10-06 | 1 | -0/+1 |
| | | |||||
| * | add ltex (#134) | William Boman | 2021-10-05 | 1 | -0/+3 |
| | | |||||
| * | fix newlines in stdout/stderr calls, more robust error handling (#114) | William Boman | 2021-10-01 | 1 | -2/+9 |
| | | |||||
| * | support installing specific version of language servers, defaults to latest ↵ | William Boman | 2021-09-29 | 1 | -3/+3 |
| | | | | | (#106) | ||||
| * | optimize io (70%+ startup speedups) (#93) | William Boman | 2021-09-17 | 1 | -7/+6 |
| | | |||||
| * | eslintls: fix setting up a reinstallation of the server | William Boman | 2021-09-10 | 1 | -3/+8 |
| | | |||||
| * | rewrite some installers for broader cross-platform support (#85) | William Boman | 2021-09-10 | 1 | -28/+15 |
| | | | | | | | | | | | - 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 cleanup | William Boman | 2021-09-07 | 1 | -1/+3 |
| | | |||||
| * | add direct integration with libuv instead of going through termopen, also ↵ | William Boman | 2021-09-07 | 1 | -14/+24 |
| | | | | | | | | | | 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 | ||||
| * | add Windows support (#70) | William Boman | 2021-09-01 | 1 | -1/+1 |
| | | |||||
| * | eslintls: defer registering server definition with lspconfig (#62) | William Boman | 2021-08-23 | 1 | -0/+7 |
| | | | | Resolves #61. | ||||
| * | add new on_server_ready() API (#56) | William Boman | 2021-08-18 | 1 | -0/+2 |
| | | |||||
| * | add tflint (#52) | William Boman | 2021-08-17 | 1 | -0/+9 |
| | | | | | | * add tflint * Update lua/nvim-lsp-installer/servers/tflint/init.lua | ||||
| * | improve messages | William Boman | 2021-08-16 | 1 | -2/+2 |
| | | |||||
| * | fs: assert unsafe operations are run on safe paths only | William Boman | 2021-08-15 | 1 | -1/+1 |
| | | |||||
