mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-24 17:58:51 +02:00
fix(luasnip): added note that jsregexp is optional if it fails to build
This commit is contained in:
parent
d285548ae0
commit
04a60e251b
1 changed files with 3 additions and 1 deletions
|
@ -3,7 +3,9 @@ return {
|
||||||
-- snippets
|
-- snippets
|
||||||
{
|
{
|
||||||
"L3MON4D3/LuaSnip",
|
"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 = {
|
dependencies = {
|
||||||
"rafamadriz/friendly-snippets",
|
"rafamadriz/friendly-snippets",
|
||||||
config = function()
|
config = function()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue