From 24c17f94e0db86b155f1b775c3204a6829be5ee9 Mon Sep 17 00:00:00 2001 From: "Andy K. Massimino" Date: Tue, 30 Jun 2020 22:18:42 -0400 Subject: [PATCH] Don't highlight > for xml re #98 --- after/ftplugin/xml_matchup.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/after/ftplugin/xml_matchup.vim b/after/ftplugin/xml_matchup.vim index 41b6d2b..55d4516 100644 --- a/after/ftplugin/xml_matchup.vim +++ b/after/ftplugin/xml_matchup.vim @@ -14,6 +14,8 @@ set cpo&vim if matchup#util#matchpref('tagnameonly', 0) call matchup#util#patch_match_words('\)\%(', '\)\g{hlend}\%(') call matchup#util#patch_match_words('\)\%(', '\)\g{hlend}\%(') + call matchup#util#patch_match_words('1>', '1\g{hlend}>') + call matchup#util#patch_match_words(':/>', ':/\g{hlend}>') endif let &cpo = s:save_cpo