We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
after upgrading the plugin with lazy, it get this error when calling snippets that contain a placeholder:
~/.local/share/nvim/lazy/LuaSnip/lua/luasnip/util/functions.lua:39: nvim_exec2(): Vim(echo):E121: Undefined variable: json
Version: branch master commit 98d9cb5
my plugin configuration:
return { { "L3MON4D3/LuaSnip", build = vim.fn.has "win32" ~= 0 and "make install_jsregexp" or nil, dependencies = { "rafamadriz/friendly-snippets", "benfowler/telescope-luasnip.nvim", "molleweide/LuaSnip-snippets.nvim", }, config = function(_, opts) if opts then require("luasnip").config.setup(opts) end vim.tbl_map( function(type) require("luasnip.loaders.from_" .. type).lazy_load() end, { "vscode", "snipmate" } ) require("luasnip.loaders.from_vscode").lazy_load({ paths = { "./snippets" } }) require("luasnip").filetype_extend("go", { "godoc" }) require("luasnip").filetype_extend("lua", { "luadoc" }) require("luasnip").filetype_extend("python", { "pydoc" }) require("luasnip").filetype_extend("sh", { "shelldoc" }) end, }, }
any help is very much appreciated.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
after upgrading the plugin with lazy, it get this error when calling snippets that contain a placeholder:
~/.local/share/nvim/lazy/LuaSnip/lua/luasnip/util/functions.lua:39: nvim_exec2(): Vim(echo):E121: Undefined variable: json
Version:
branch master
commit 98d9cb5
my plugin configuration:
any help is very much appreciated.
The text was updated successfully, but these errors were encountered: