From bdd6e0cf3738911ebe92b3ed7dcb52d84b7efa98 Mon Sep 17 00:00:00 2001 From: Luc Sinet Date: Mon, 19 Jul 2021 18:12:59 +0200 Subject: Fix reports from luacheck (#1031) --- lua/core/autopairs.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lua/core/autopairs.lua') diff --git a/lua/core/autopairs.lua b/lua/core/autopairs.lua index b8dad5f3..f0111db6 100644 --- a/lua/core/autopairs.lua +++ b/lua/core/autopairs.lua @@ -1,7 +1,7 @@ -- if not package.loaded['nvim-autopairs'] then -- return -- end -local status_ok, autopairs = pcall(require, "nvim-autopairs") +local status_ok, _ = pcall(require, "nvim-autopairs") if not status_ok then return end -- cgit v1.2.3