From 079df9e5ffec10dee2d3db06862c797fa65c2a7f Mon Sep 17 00:00:00 2001 From: Steven Chiacchira <95985347+Ezuharad@users.noreply.github.com> Date: Wed, 28 May 2025 17:24:44 -0400 Subject: [PATCH] Fixed extra bracket in r.lua Removed square bracket on line 55 of r.lua. This caused my nvim configuration to break when loading r files. --- lua/luasnip_snippets/r.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/luasnip_snippets/r.lua b/lua/luasnip_snippets/r.lua index 106e452..7afea2b 100644 --- a/lua/luasnip_snippets/r.lua +++ b/lua/luasnip_snippets/r.lua @@ -52,7 +52,7 @@ FIELD_TYPES = [ 'logical', 'matrix', 'numeric', -'vector']]] +'vector']] }