added missing brackets
This commit is contained in:
@@ -6,7 +6,7 @@ M.autopairs = function()
|
||||
local present1, autopairs = pcall(require, "nvim-autopairs")
|
||||
local present2, cmp = pcall(require, "cmp")
|
||||
|
||||
if not present1 and present2 then
|
||||
if not (present1 and present2) then
|
||||
return
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user