From d0b90a5f384d8bd59d00262e1a415f0675c03287 Mon Sep 17 00:00:00 2001 From: psychhim Date: Sun, 12 Oct 2025 21:40:33 +0530 Subject: [PATCH] Update: Changes message to 'Local changes detected! Delete and overwrite them? (This cannot be undone) (y/N): ' --- lua/update_kickestend.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/update_kickestend.lua b/lua/update_kickestend.lua index a710d68..124368e 100644 --- a/lua/update_kickestend.lua +++ b/lua/update_kickestend.lua @@ -30,7 +30,7 @@ vim.api.nvim_create_user_command('UpdateKickestEnd', function() -- If there are local changes or untracked files, confirm overwrite if dirty then - local answer = vim.fn.input 'Local changes or new files detected! Overwrite and delete them? (y/N): ' + local answer = vim.fn.input 'Local changes detected! Delete and overwrite them? (This cannot be undone) (y/N): ' if answer:lower() ~= 'y' then vim.notify('Update cancelled to preserve your modifications.', vim.log.levels.WARN) return