fix map_complete option

This commit is contained in:
kylo252 2021-08-11 17:39:06 +02:00
parent d512b57918
commit fb388d7ff8

View file

@ -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,