Skip to content

Commit

Permalink
feat(tags completion): < and > autocomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
daUnknownCoder committed Feb 17, 2024
1 parent 1230b72 commit 928d358
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion lua/NeutronVim/plugins/Coding/autopairs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ return {
if not mini_pairs_status_ok then
print("mini.pairs not found!")
end
pairs.setup()
pairs.setup({
modes = { command = true },
mappings = {
["<"] = { action = "open", pair = "<>", neigh_pattern = "[^\\]." },
[">"] = { action = "close", pair = "<>", neigh_pattern = "[^\\]." },
},
})
end,
}

0 comments on commit 928d358

Please sign in to comment.