change the next snippet node keybindings

This commit is contained in:
Michael Flossmann 2024-09-09 14:55:54 +02:00
parent d0b55f6037
commit d03c34858d

View file

@ -10,13 +10,13 @@ _:{
rootOpts.keymaps = [
{
mode = "i";
key = "<C-g>";
key = "<C-.>";
action.__raw = ''function() require("luasnip").jump(1) end'';
options.desc = "Jump to next snippet node";
}
{
mode = "i";
key = "<C-h>";
key = "<C-,>";
action.__raw = ''function() require("luasnip").jump(-1) end'';
options.desc = "Jump to previous snippet node";
}