summaryrefslogtreecommitdiffstatshomepage
path: root/test/functional/editor/ftplugin_spec.lua
AgeCommit message (Collapse)AuthorFiles
2026-02-20test: start test runners in Xtest_xdg dir (#37964)zeertzjq1
This is a better way to prevent parallel tests from interfering with each other, as there are many ways files can be created and deleted in tests, so enforcing different file names is hard. Using $TMPDIR can also work in most cases, but 'backipskip' etc. have special defaults for $TMPDIR. Symlink runtime/, src/, test/ and README.md to Xtest_xdg dir to make tests more convenient (and symlinking test/ is required for busted). Also, use README.md instead of test/README.md in the Ex mode inccommand test, as test/README.md no longer contains 'N' char.
2025-05-06fix(runtime): 'includeexpr' with non-Nvim-style Lua modules #33867Phạm Bình An1
Closes #33862
2025-03-17test: cleanup ftplugin_spec.lua #32948Justin M. Keyes1
Problem: - cannot run ftplugin_spec.lua by itself - test leaves foo/ dir Solution: - fix setup and teardown
2025-03-17feat(runtime): Lua ftplugin 'includeexpr' #32719Phạm Bình An1
Problem: Current `'includeexpr'` in runtime/ftplugin/lua.vim doesn't work with Nvim Lua. Solution: Provide an improved 'includeexpr' for Lua in "ftplugin/lua.lua". Closes: https://github.com/neovim/neovim/issues/32490