Compare commits

..

No commits in common. "3ffda34a29b2a341ff9a735ac619ff48dc83376e" and "b40a9abb5938ddd2498f992fa9634eef1493788b" have entirely different histories.

2 changed files with 10 additions and 0 deletions

4
after/syntax/html.vim Normal file
View File

@ -0,0 +1,4 @@
syn keyword htmlTodo TODO
syn region htmlCommentPart contained start=+--+ end=+--\s*+ contains=htmlTodo,@htmlPreProc,@Spell
hi default link htmlTodo Todo

View File

@ -44,6 +44,12 @@ hi link markdownCheckboxBoldItalicDelimiter markdownCheckboxBoldItalic
hi link markdownCheckboxCode SpecialComment hi link markdownCheckboxCode SpecialComment
hi link markdownCheckboxCodeDelimiter PreProc hi link markdownCheckboxCodeDelimiter PreProc
" Add match for TODO
syn match markdownTodo 'TODO'
hi link markdownTodo Todo
syn cluster markdownInline add=markdownTodo
" yaml frontmatter " yaml frontmatter
syn region markdownFrontmatter matchgroup=markdownFrontmatterDelimiter start='\%^---' keepend end='^---' contains=@markdownHighlightyaml syn region markdownFrontmatter matchgroup=markdownFrontmatterDelimiter start='\%^---' keepend end='^---' contains=@markdownHighlightyaml
hi default link markdownFrontmatterDelimiter Special hi default link markdownFrontmatterDelimiter Special