From c7df721b7218dc71413ee6aff7b28beec0ec02e9 Mon Sep 17 00:00:00 2001 From: "Gustavo L de Mello (Guz)" Date: Sun, 8 Dec 2024 19:46:11 -0300 Subject: [PATCH] fix(tweaks,grip): use QuitPre instead of Quit event --- lua/dot013/tweaks.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/dot013/tweaks.lua b/lua/dot013/tweaks.lua index 987dcdf..08d0486 100644 --- a/lua/dot013/tweaks.lua +++ b/lua/dot013/tweaks.lua @@ -41,7 +41,7 @@ vim.api.nvim_create_user_command("GripStop", function() end end, {}) -vim.api.nvim_create_autocmd("Quit", { +vim.api.nvim_create_autocmd("QuitPre", { callback = function() if grip_channel then vim.fn.jobstop(grip_channel)