From 6a68f257996e01f12a88a735cf949e9f07e8a198 Mon Sep 17 00:00:00 2001 From: srdusr Date: Sun, 12 Feb 2023 17:14:15 +0200 Subject: Changed 'utils.lua' and 'local utils' to 'mods.lua' and 'local mods' respectively --- lua/plugins/cmp.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lua/plugins') diff --git a/lua/plugins/cmp.lua b/lua/plugins/cmp.lua index 829a448..edf57de 100644 --- a/lua/plugins/cmp.lua +++ b/lua/plugins/cmp.lua @@ -98,11 +98,11 @@ cmp.setup({ i = function() if cmp.visible() then cmp.abort() - require("user.utils").toggle_completion() + require("user.mods").toggle_completion() require("notify")("completion off") else cmp.complete() - require("user.utils").toggle_completion() + require("user.mods").toggle_completion() require("notify")("completion on") end end, @@ -111,7 +111,7 @@ cmp.setup({ -- i = function(fallback) -- if cmp.visible() then -- cmp.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = false }) - -- require("user.utils").toggle_completion() + -- require("user.mods").toggle_completion() -- else -- fallback() -- end -- cgit v1.2.3