kylo252 3 роки тому
батько
коміт
fb388d7ff8
1 змінених файлів з 2 додано та 4 видалено
  1. 2 4
      lua/core/autopairs.lua

+ 2 - 4
lua/core/autopairs.lua

@@ -5,8 +5,8 @@ function M.config()
     active = true,
     ---@usage  map <CR> on insert mode
     map_cr = true,
-    ---@usage it will auto insert  after select function or method item,
-    map_complete = map_complete_optional,
+    ---@usage auto insert after select function or method item,
+    map_complete = vim.bo.filetype ~= "tex",
     ---@usage check treesitter
     check_ts = true,
     ts_config = {
@@ -20,7 +20,6 @@ end
 M.setup = function()
   -- skip it, if you use another global object
   _G.MUtils = {}
-  local Log = require "core.log"
   local npairs = require "nvim-autopairs"
   local Rule = require "nvim-autopairs.rule"
 
@@ -38,7 +37,6 @@ M.setup = function()
   end
 
   if package.loaded["compe"] then
-    local map_complete_optional = vim.bo.filetype ~= "tex"
     require("nvim-autopairs.completion.compe").setup {
       map_cr = lvim.builtin.autopairs.map_cr,
       map_complete = lvim.builtin.autopairs.map_complete,