Skip to content

Commit

Permalink
fix(luasnip): added note that jsregexp is optional if it fails to build
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Mar 3, 2023
1 parent d285548 commit 04a60e2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lua/lazyvim/plugins/coding.lua
Expand Up @@ -3,7 +3,9 @@ return {
-- snippets
{
"L3MON4D3/LuaSnip",
build = (not jit.os:find("Windows")) and "make install_jsregexp" or nil,
build = (not jit.os:find("Windows"))
and "echo -e 'NOTE: jsregexp is optional, so not a big deal if it fails to build\n'; make install_jsregexp"
or nil,
dependencies = {
"rafamadriz/friendly-snippets",
config = function()
Expand Down

0 comments on commit 04a60e2

Please sign in to comment.