fix deprecated API usage vim.highlight -> vim.hl

This commit is contained in:
2026-06-25 02:43:51 +02:00
parent 5929cd53d7
commit cb1a941fe1
+1 -1
View File
@@ -38,7 +38,7 @@ create_cmd("TextYankPost", {
desc = "Highlight yanked text",
group = create_group("cmd-highlight-yank", { clear = true }),
callback = function()
vim.highlight.on_yank()
vim.hl.on_yank()
end
})