diff --git a/plugin/todoer.lua b/plugin/todoer.lua index c881c5a..aefd441 100644 --- a/plugin/todoer.lua +++ b/plugin/todoer.lua @@ -3,6 +3,7 @@ vim.keymap.set("n", "t", function() end, { desc = "+Todos" }) -- add new todo line when previous is already a todo local function press_enter() + vim.b.minipairs_disable = true local current_line = vim.api.nvim_get_current_line() -- Check if the current line matches the pattern local pattern = "^%- %[[ x]%] .*$"