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