LunarVim/lua/lvim/core/autopairs.lua

80 lines
2.5 KiB
Lua
Raw Normal View History

local M = {}
function M.config()
lvim.builtin.autopairs = {
active = true,
on_config_done = nil,
---@usage -- modifies the function or method delimiter by filetypes
map_char = {
all = "(",
tex = "{",
},
enable_check_bracket_line = false,
---@usage check treesitter
check_ts = true,
ts_config = {
lua = { "string" },
javascript = { "template_string" },
java = false,
},
}
2021-07-07 02:42:29 +02:00
end
2021-04-27 07:17:29 +02:00
M.setup = function()
local autopairs = require "nvim-autopairs"
local Rule = require "nvim-autopairs.rule"
2021-09-08 01:23:14 +02:00
local cond = require "nvim-autopairs.conds"
autopairs.setup {
check_ts = lvim.builtin.autopairs.check_ts,
enable_check_bracket_line = lvim.builtin.autopairs.enable_check_bracket_line,
ts_config = lvim.builtin.autopairs.ts_config,
2021-07-05 03:14:01 +02:00
}
2021-09-08 01:23:14 +02:00
-- vim.g.completion_confirm_key = ""
autopairs.add_rule(Rule("$$", "$$", "tex"))
autopairs.add_rules {
Rule("$", "$", { "tex", "latex" }) -- don't add a pair if the next character is %
:with_pair(cond.not_after_regex_check "%%") -- don't add a pair if the previous character is xxx
:with_pair(cond.not_before_regex_check("xxx", 3)) -- don't move right when repeat character
:with_move(cond.none()) -- don't delete if the next character is xx
:with_del(cond.not_after_regex_check "xx") -- disable add newline when press <cr>
:with_cr(cond.none()),
}
autopairs.add_rules {
Rule("$$", "$$", "tex"):with_pair(function(opts)
print(vim.inspect(opts))
if opts.line == "aa $$" then
-- don't add pair on that line
return false
end
end),
}
local cmp_status_ok, cmp = pcall(require, "cmp")
if cmp_status_ok then
-- If you want insert `(` after select function or method item
local cmp_autopairs = require "nvim-autopairs.completion.cmp"
local map_char = lvim.builtin.autopairs.map_char
cmp.event:on("confirm_done", cmp_autopairs.on_confirm_done { map_char = map_char })
2021-09-08 01:23:14 +02:00
end
require("nvim-treesitter.configs").setup { autopairs = { enable = true } }
local ts_conds = require "nvim-autopairs.ts-conds"
-- TODO: can these rules be safely added from "config.lua" ?
-- press % => %% is only inside comment or string
autopairs.add_rules {
Rule("%", "%", "lua"):with_pair(ts_conds.is_ts_node { "string", "comment" }),
Rule("$", "$", "lua"):with_pair(ts_conds.is_not_ts_node { "function" }),
}
if lvim.builtin.autopairs.on_config_done then
lvim.builtin.autopairs.on_config_done(autopairs)
end
end
return M