From 0897b0d933ae27c5c1b9434340cd2b8c74bb7fcc Mon Sep 17 00:00:00 2001 From: Rubin Bhandari Date: Sun, 12 May 2024 20:55:17 +0545 Subject: [PATCH] Update lua/lazyvim/plugins/extras/editor/refactoring.lua Co-authored-by: Iordanis Petkakis <12776461+dpetka2001@users.noreply.github.com> --- lua/lazyvim/plugins/extras/editor/refactoring.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/lazyvim/plugins/extras/editor/refactoring.lua b/lua/lazyvim/plugins/extras/editor/refactoring.lua index d955364d..bcbb7f35 100644 --- a/lua/lazyvim/plugins/extras/editor/refactoring.lua +++ b/lua/lazyvim/plugins/extras/editor/refactoring.lua @@ -113,8 +113,8 @@ return { printf_statements = {}, print_var_statements = {}, }, - config = function(_, options) - require("refactoring").setup(options) + config = function(_, opts) + require("refactoring").setup(opts) require("telescope").load_extension("refactoring") end, },