summaryrefslogtreecommitdiffstatshomepage
path: root/test/functional/plugin/lsp/util_spec.lua
AgeCommit message (Collapse)AuthorFiles
2026-04-24test: curbuf initialized in describe-block #39365glepnir1
Problem: curbuf was initialized at describe-block load time before any Nvim session existed. Solution: Replace with 0 directly at call sites.
2026-04-18docs: misc #39045Justin M. Keyes1
2026-04-17test(lsp): extract buf/util parts from lsp_spec.lua #39149Yi Ming1
Problem: `test/functional/plugin/lsp_spec.lua` had grown into a large catch-all file that mixed core LSP client lifecycle coverage, `vim.lsp.buf.*` behavior, and `vim.lsp.util.*` behavior in one place. Solution: Split the large tests into more focused test files without changing test coverage or intended behavior. After this change, `lsp_spec.lua` is more focused on core LSP client/config/dynamic-registration behavior.
2020-01-08test: just say no to hyper-granularityJustin M. Keyes1
- Move plugin/lsp/* to plugin/* - Merge lsp/util_spec.lua into lsp_spec.lua
2019-11-21lualintAshkan Kiani1
2019-11-21UpdatesAshkan Kiani1
- Use correct implementation of text_edits. - Send indent options to rangeFormatting and formatting. - Remove references to vim bindings and filetype from lsp.txt - Add more examples to docs. - Add before_init to allow changing initialize_params.