03f944b0创建于 2025年12月5日历史提交
文件最后提交记录最后更新时间
refactor(spellfile): config() interface, docs #36481 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|.6 个月前
build(deps): bump luv to 1.51.0-1 1 年前
refactor(lsp): fix lint 5 个月前
build: add luals check This automatically downloads and uses the correct luals binary for the currently used system. make luals will run luals on all lua files in runtime. We download lua-language-server manually instead of relying on contributors downloading it on their own (like with stylua) as lua-language-server is updated frequently which may cause unnecessary friction. Therefore, we download a pinned version of luals which we then can manually bump when needed. This can be re-evaluated if luals becomes more stable in the future. Currently this is not run when using make lint since cmake style "file caching" doesn't seem possible at the moment. This is because checking a single file doesn't seem to work. Work on https://github.com/neovim/neovim/issues/24563. 1 年前
fix(editorconfig): a custom property is treated as a section (#34445) Problem: A custom property containing a pair of square brackets will be treated as a section. Solution: Change the logic parsing a section, remove the first match regex %b[]. Signed-off-by: fortime <palfortime@gmail.com>11 个月前
fix(man.lua): :Man slow/hangs if MANPAGER is set #36689 Problem: When MANPAGER is set to something like 'nvim +Man!', vim.system({ 'nvim' }) call waits forever for input and times out after 10 seconds in system() and the assert on stdout being not nil fails. Solution: Set MANPAGER=cat when calling system()6 个月前
feat(tui): add nvim_ui_send (#35406) This function allows the Nvim core to write arbitrary data to a TTY connected to a UI's stdout.9 个月前