summaryrefslogtreecommitdiffstatshomepage
path: root/test/functional/api/deprecated_spec.lua
AgeCommit message (Collapse)AuthorFiles
2026-02-10test: move deprecated highlight API tests #37801glepnir1
Problem: Tests for deprecated highlight API were mixed with current API tests. Solution: Move them to deprecated_spec.lua and update highlight_spec.lua to use nvim_get_hl.
2025-02-10fix(api): memory leaks in vim.api.nvim_*get_option #32390Cai Rijun (Richard)1
Problem: `get_option_value` returns caller owned `Object`s but the corresponding C apis do not marked `FUNC_API_RET_ALLOC` properly. Solution: add `FUNC_API_RET_ALLOC` to the C apis.
2025-01-10refactor(api): deprecate nvim_notify #31938Justin M. Keyes1
Problem: The `nvim_notify` API (note: unrelated to `vim.notify()` Lua API) was not given any real motivation in https://github.com/neovim/neovim/pull/13843 There are, and were, idiomatic and ergonomic alternatives already. Solution: Deprecate `nvim_notify`.