mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 20:00:06 +08:00
10 lines
205 B
VimL
10 lines
205 B
VimL
|
|
||
|
function! HtmlListHotfix()
|
||
|
call matchup#util#patch_match_words(
|
||
|
\ '<\@<=[ou]l\>[^>]*\%(>\|$\):<\@<=li\>:<\@<=/[ou]l>',
|
||
|
\ '')
|
||
|
endfunction
|
||
|
|
||
|
let g:matchup_hotfix_html = 'HtmlListHotfix'
|
||
|
|