From d03c34858d20ead5a2a96399b5ecf9e6a49a2b90 Mon Sep 17 00:00:00 2001 From: Michael Flossmann Date: Mon, 9 Sep 2024 14:55:54 +0200 Subject: [PATCH] change the next snippet node keybindings --- plugins/luasnip.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/luasnip.nix b/plugins/luasnip.nix index 5f97d0a..e3ab507 100644 --- a/plugins/luasnip.nix +++ b/plugins/luasnip.nix @@ -10,13 +10,13 @@ _:{ rootOpts.keymaps = [ { mode = "i"; - key = ""; + key = ""; action.__raw = ''function() require("luasnip").jump(1) end''; options.desc = "Jump to next snippet node"; } { mode = "i"; - key = ""; + key = ""; action.__raw = ''function() require("luasnip").jump(-1) end''; options.desc = "Jump to previous snippet node"; }