LuaSnip-snippets.nvim icon indicating copy to clipboard operation
LuaSnip-snippets.nvim copied to clipboard

Neovim plugin that provides snippets for the LuaSnip plugin.

Results 6 LuaSnip-snippets.nvim issues
Sort by recently updated
recently updated
newest added

This fails: ``` luasnip.snippets = require("molleweide/LuaSnip-snippets.nvim").load_snippets() ```

PR #1 contained a partial fix to [this breaking change](https://github.com/L3MON4D3/LuaSnip/issues/81#issuecomment-1064891636) in LuaSnip, but seems to have missed the fact that `user_args` itself needs to be a table. This change fixes...

![image](https://user-images.githubusercontent.com/49930785/166137190-89c2eb88-c7e3-4e14-b3d1-db04593152be.png) installation config ``` use({ 'hrsh7th/nvim-cmp', requires = { 'hrsh7th/cmp-nvim-lsp', -- nvim-cmp source for neovim builtin LSP client { 'L3MON4D3/LuaSnip', config = require("plugin-lsp/luasnip"), requires = { "rafamadriz/friendly-snippets", "molleweide/luasnip_snippets.nvim", }, },...

I installed `LuaSnip` and `LuaSnip-snippets.nvim` by packer. However, it does not work. Here are my config content. ```lua use { "molleweide/LuaSnip-snippets.nvim", }, use { "L3MON4D3/LuaSnip.git", config = function() -- local...