From 88238e2109e8340fae1424f693149ff2c334ae1c Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sat, 27 May 2023 23:03:44 +0200 Subject: [PATCH] fix(luasnip): use `echo` instead of `echo -e` for build warning --- lua/lazyvim/plugins/coding.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazyvim/plugins/coding.lua b/lua/lazyvim/plugins/coding.lua index 49599eb6..83ccd20c 100644 --- a/lua/lazyvim/plugins/coding.lua +++ b/lua/lazyvim/plugins/coding.lua @@ -4,7 +4,7 @@ return { { "L3MON4D3/LuaSnip", 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" + and "echo 'NOTE: jsregexp is optional, so not a big deal if it fails to build'; make install_jsregexp" or nil, dependencies = { "rafamadriz/friendly-snippets",