diff options
author | kylo252 <[email protected]> | 2021-08-11 17:39:06 +0200 |
---|---|---|
committer | kylo252 <[email protected]> | 2021-08-11 17:39:06 +0200 |
commit | fb388d7ff81bdedf6e43c077dbf45e4288d45a49 (patch) | |
tree | 1d25fa226b036578e3092d2d55914e454e8f7785 /lua/core/autopairs.lua | |
parent | d512b57918ead21dec97bf33a7c63e9ea38310c4 (diff) |
fix map_complete option
Diffstat (limited to 'lua/core/autopairs.lua')
-rw-r--r-- | lua/core/autopairs.lua | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lua/core/autopairs.lua b/lua/core/autopairs.lua index 53572a5b..9309bac9 100644 --- a/lua/core/autopairs.lua +++ b/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, |