From 5cab6466dd2e4f92a8c9e5cdeb2276ea65eb22e1 Mon Sep 17 00:00:00 2001 From: voidarc Date: Sun, 16 Aug 2026 09:42:20 +0100 Subject: [PATCH] added I to list of insert commands --- lua/config/binds.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/config/binds.lua b/lua/config/binds.lua index a35145f..55b4934 100644 --- a/lua/config/binds.lua +++ b/lua/config/binds.lua @@ -13,7 +13,7 @@ Keymap("n", "bd", function() -- delete buffer vim.cmd("echo 'Buffer deleted'") end) -for _, bind in ipairs({ "i", "a", "A" }) do +for _, bind in ipairs({ "i", "a", "A", "I" }) do -- Pass { expr = true } as the fourth argument Keymap("n", bind, function() if vim.fn.getline("."):match("^%s*$") then