summaryrefslogtreecommitdiffstatshomepage
path: root/test/functional/plugin/spellfile_spec.lua
AgeCommit message (Collapse)AuthorFiles
2026-02-18test: support running functionaltests in parallel by directory (#37918)zeertzjq1
Define a CMake target for every subdirectory of test/functional that contains functional tests, and a functionaltest_parallel target that depends on all those targets, allowing multiple test runners to run in parallel. On CI, use at most 2 parallel test runners, as using more may increase system load and make tests unstable.
2025-12-06feat(spell): opt-out of confirm when downloading spellfiles #36836Olivia Kinnear1
2025-11-09refactor(spellfile): config() interface, docs #36481Yochem van Rosmalen1
Problem: - Exposing the raw config as table is a pattern not seen anywhere else in the Nvim codebase. - Old spellfile.vim docs still available, no new documentation Solution: - Exposing a `config()` function that both acts as "getter" and "setter" is a much more common idiom (e.g. vim.lsp, vim.diagnostic). - Add new documentation and link old docs to |spellfile.lua| instead of |spellfile.vim|.
2025-10-26refactor(spell): cleanupJustin M. Keyes1
- prefer `stdpath(data)/site/spell` instead of looking for random dirs in 'runtimepath'. - drop unused functions `choose_directory`, `setup`, etc.