diff --git a/nvim/lua/plugins/cmp.lua b/nvim/lua/plugins/cmp.lua index e3351ec..2acd453 100755 --- a/nvim/lua/plugins/cmp.lua +++ b/nvim/lua/plugins/cmp.lua @@ -66,7 +66,7 @@ return { end end, { "i", "s" }), - -- Mapping for jumping in snippets) + -- Mapping for jumping in snippets [""] = cmp.mapping(function(fallback) if require("luasnip").jumpable() then -- Jump backwards if inside a snippet @@ -75,6 +75,17 @@ return { -- Otherwise, fallback (insert a tab character) fallback() end + end, { "i", "s" }), + + -- Mapping for jumping backwards in snippets + [""] = cmp.mapping(function(fallback) + if require("luasnip").jumpable() then + -- Jump backwards if inside a snippet + require("luasnip").jump() + else + -- Otherwise, fallback (insert a tab character) + fallback() + end end, { "i", "s" }) }),