mirror of
https://github.com/chenasraf/vim-matchup.git
synced 2026-05-18 01:38:57 +00:00
Adds the match preferences
let g:matchup_matchpref = {}
let g:matchup_matchpref.vue = {'tagnameonly': 1}
let g:matchup_matchpref.html = {'tagnameonly': 1}
Closes #30.
23 lines
514 B
Vue
23 lines
514 B
Vue
|
|
<tag class="something" attr="attr and class is nicely highlighted">
|
|
item
|
|
</tag>
|
|
|
|
<tag class="something" keyattr="attr and class has no highlight anymore">
|
|
item
|
|
</tag>
|
|
|
|
<ul class="something" keyattr="attr and class has no highlight anymore">
|
|
<li class="something" keyattr="linebreaks">text</li>
|
|
</ul>
|
|
|
|
<ul class="something" keyattr="attr and class has no highlight anymore">
|
|
<li class="workaround"
|
|
keyattr="linebreaks">text</li>
|
|
</ul>
|
|
|
|
<dl>
|
|
<dt class='list-item'>Question 1</dt>
|
|
</dl>
|
|
|