aboutsummaryrefslogtreecommitdiffstats
path: root/tests/middleware_spec.lua
Commit message (Collapse)AuthorAgeFilesLines
* mason.nvimWilliam Boman2022-07-071-71/+0
|
* docs: remove nvim-lsp-installer.servers helptag (#755)William Boman2022-06-061-1/+0
| | | | All interactions from userland should preferably go through require("nvim-lsp-installer").
* chore(tests): use assert.same instead of abusing vim.inspect + assert.equalWilliam Boman2022-05-061-2/+2
|
* fix middleware_spec testsWilliam Boman2022-04-291-20/+53
|
* feat: integrate with lspconfig's on_setup hook (#631)William Boman2022-04-271-0/+39
* 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