From f8e8b1ff190cad4c2d2b146b268a9ed764e5d80f Mon Sep 17 00:00:00 2001 From: Ezekiel Warren Date: Fri, 14 Apr 2023 10:27:24 -0700 Subject: [PATCH] fix: remove non-existant function from deep_pesc --- lua/pretty-fold/util.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/pretty-fold/util.lua b/lua/pretty-fold/util.lua index 986b36f..80583b6 100644 --- a/lua/pretty-fold/util.lua +++ b/lua/pretty-fold/util.lua @@ -75,7 +75,7 @@ function util.deep_pesc(ts) if type(s) == 'string' then escaped_ts[i] = vim.pesc(s) elseif type(s) == 'table' then - escaped_ts[i] = util.escape_lua_patterns(s) + escaped_ts[i] = util.deep_pesc(s) end end return escaped_ts