From 94288ce806cf6aa8a9e8a8de847bf8292c4b2554 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Wed, 23 Jul 2025 12:17:05 +0100 Subject: [PATCH] Make LuaSnip mapping case consistent --- lua/plugins/snippets.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/plugins/snippets.lua b/lua/plugins/snippets.lua index 870d62b..0eaa8d7 100644 --- a/lua/plugins/snippets.lua +++ b/lua/plugins/snippets.lua @@ -17,17 +17,17 @@ return { luasnip.expand_or_jump() end end, { silent = true }) - vim.keymap.set({ 'i', 's' }, '', function() + vim.keymap.set({ 'i', 's' }, '', function() if luasnip.jumpable(-1) then luasnip.jump(-1) end end, { silent = true }) - vim.keymap.set({ "i", "s" }, "", function() + vim.keymap.set({ "i", "s" }, "", function() if luasnip.choice_active() then luasnip.change_choice(1) end end, { silent = true }) - vim.keymap.set({ "i", "s" }, "", function() + vim.keymap.set({ "i", "s" }, "", function() if luasnip.choice_active() then luasnip.change_choice(-1) end