aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/manager.lua
Commit message (Collapse)AuthorAgeFilesLines
* refactor: handle updated signature of lsp.start_client (#3126)Gregory Anders2024-04-261-1/+6
| | | | | | https://github.com/neovim/neovim/pull/28478 changes the signature of start_client to return two values: client_id or nil and error message or nil. start_client no longer calls vim.notify directly, so if there is an error we must call vim.notify ourselves.
* fix: revert to not requiring single_file_mode and root_dir check (#3088)Patricio Serrano2024-03-241-2/+1
|
* refactor: general cleanupLewis Russell2024-03-071-15/+15
|
* fix: update lua types to match latest nightly (#3048)Carlo Sala2024-03-051-5/+5
|
* fix: enforce single file mode check when root_dir differs from client (#2998)Patricio Serrano2024-02-061-1/+2
| | | fixes issue [#2959](https://github.com/neovim/nvim-lspconfig/issues/2959#issue-2068768094)
* refactor: move manager to separate moduleLewis Russell2023-08-221-0/+297
- Move manager logic to own module - Move async logic to own module - Improve type annotations