mirror of
https://github.com/neovim/neovim.git
synced 2026-08-19 02:24:46 -05:00
Problem: Missing help for a function goes unnoticed. Solution: Add a test. (Gary Johnson) https://github.com/vim/vim/commit/6b0e528368415476bfc3a8414c9c70f9852b1517 ---- Test relies on parsing runtime/doc/*.txt and src/evalfunc.c . Error-prone because Vim and Nvim diverged on both documentation and source code in spite of ported Vim patches. Importing src/nvim/eval.lua is an alternative but it uses associatve index such that it's unsorted. Treat it as N/A because I can't rewrite any of its tests under minimal effort. ---- Co-authored-by: Bram Moolenaar <Bram@vim.org>