From b034d461bc31dfd41b009a39f133ce21b92c5680 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Fri, 21 Feb 2025 09:05:26 +0100 Subject: [PATCH] Fix jump behaviour --- nvim/lua/plugins/cmp.lua | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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" }) }),