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