文件最后提交记录最后更新时间
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 个月前
fix(tutor): use invalidate field in nvim_buf_set_extmark() #34989 Problem: If users delete a line containing extmark, it will move to the next line, which could highlight the next line in an unwanted way. Solution: - Use invalidate field in nvim_buf_set_extmark() to prevent the extmark from moving. - Also save from "priority" hacking, since we can check if the extmark is valid in nvim_buf_get_extmarks() now.10 个月前