From 7a19758eb6d0f890e12ba26687c3c0959573b6bb Mon Sep 17 00:00:00 2001 From: borja Date: Tue, 5 Dec 2023 09:22:17 +0100 Subject: [PATCH] test --- plugin/todoer.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/todoer.lua b/plugin/todoer.lua index 6a0f43f..d9e4b9f 100644 --- a/plugin/todoer.lua +++ b/plugin/todoer.lua @@ -36,6 +36,7 @@ local function press_tab() local closedpattern = "%- %[[x]%]" if string.match(current_line, openpattern) or string.match(current_line, closedpattern) then + print("tab pressed, allegedly") vim.api.nvim_feedkeys(">", "n", true) end end