From 28e819018520a2300eaeeec6794ffcd614b25dd2 Mon Sep 17 00:00:00 2001 From: phanium <91544758+phanen@users.noreply.github.com> Date: Sun, 6 Apr 2025 06:56:40 +0800 Subject: fix(vim.hl): nvim_buf_del_extmark on invalid buffer #33331 Problem: nvim_buf_del_extmark error if buffer is destroyed before timer stops Solution: check nvim_buf_is_valid. --- test/functional/lua/hl_spec.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'test/functional/lua') diff --git a/test/functional/lua/hl_spec.lua b/test/functional/lua/hl_spec.lua index f17442912a..a63b004456 100644 --- a/test/functional/lua/hl_spec.lua +++ b/test/functional/lua/hl_spec.lua @@ -222,6 +222,7 @@ describe('vim.hl.on_yank', function() it('does not show errors even if buffer is wiped before timeout', function() command('new') + n.feed('ifoo') -- set '[, '] exec_lua(function() vim.hl.on_yank({ timeout = 10, -- cgit