LuaSnip
LuaSnip copied to clipboard
Snippet Engine for Neovim written in Lua.
I want to change the last few characters if an insert node. It's possible to exit the default select mode, and navigate to the end of the insert node's static...
Hey, thanks for this amazing plugin! When I have this code: ```lua local ls = require('luasnip') vim.keymap.set('i', '', function() ls.expand_or_jump() end) ls.add_snippets('lua', { ls.parser.parse_snippet('foo1', 'foo1($1, $2)'), ls.parser.parse_snippet('foo2', 'foo2(${1:one}, ${2:two})'), },...
Hi @L3MON4D3 I saw this in @tjdevries config, should we upstream it? (In that case it will be the first real "push requests" in history 😄 ) https://github.com/tjdevries/config.nvim/blob/c16bab0565253f862da0cef6a288399640b3c567/lua/custom/snippets.lua#L41
Hi, new nvim user trying to figure out how to use luasnips! I have the following issue when trying to jump out of nested/iterated snippets with a minimal example: ```...