From bb73c9a6786b2433550a0b64940f2176a3ad80fa Mon Sep 17 00:00:00 2001 From: Corentin Hervaud <72013831+Curs3W4ll@users.noreply.github.com> Date: Tue, 11 Apr 2023 16:23:07 +0200 Subject: [PATCH] Adding comments in installation examples Adding comments to make it more obvious that the user need to replace `` --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 177f21144..d80b70e0f 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Neovim >= 0.5 (extmarks) use({ "L3MON4D3/LuaSnip", -- follow latest release. - tag = "v.*", + tag = "v.*", -- Replace by the latest released major (first number of latest release) -- install jsregexp (optional!:). run = "make install_jsregexp" }) @@ -44,7 +44,7 @@ Neovim >= 0.5 (extmarks) { "L3MON4D3/LuaSnip", -- follow latest release. - version = ".*", + version = ".*", -- Replace by the latest released major (first number of latest release) -- install jsregexp (optional!). build = "make install_jsregexp" } @@ -52,7 +52,7 @@ Neovim >= 0.5 (extmarks) **vim-plug**: ```vim " follow latest release and install jsregexp. - Plug 'L3MON4D3/LuaSnip', {'tag': 'v.*', 'do': 'make install_jsregexp'} + Plug 'L3MON4D3/LuaSnip', {'tag': 'v.*', 'do': 'make install_jsregexp'} " Replace by the latest released major (first number of latest release) ``` Check the `Releases`-section to the right for the latest major version.