From 78794265d1e7f10c01986a20447289de92ed76ad Mon Sep 17 00:00:00 2001 From: Joost Agterhoek Date: Wed, 16 Jul 2025 16:34:39 +0200 Subject: [PATCH] changed checkbox cycle keymaps --- lua/plugins/checkbox-cycle.lua | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/lua/plugins/checkbox-cycle.lua b/lua/plugins/checkbox-cycle.lua index 0627d02..e3dcb4a 100644 --- a/lua/plugins/checkbox-cycle.lua +++ b/lua/plugins/checkbox-cycle.lua @@ -6,18 +6,32 @@ return { }, keys = { { - "", + "cn", ":CheckboxCycleNext", desc = "Cycle to next checkbox", ft = { "markdown" }, mode = { "n", "v" }, }, { - "", - ":CheckboxCyclePrevious", + "cp", + ":CheckboxCyclePrev", desc = "Cycle to previous checkbox", ft = { "markdown" }, mode = { "n", "v" }, }, + -- { + -- "", + -- ":CheckboxCycleNext", + -- desc = "Cycle to next checkbox", + -- ft = { "markdown" }, + -- mode = { "n", "v" }, + -- }, + -- { + -- "", + -- ":CheckboxCyclePrevious", + -- desc = "Cycle to previous checkbox", + -- ft = { "markdown" }, + -- mode = { "n", "v" }, + -- }, }, }