Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions syntax/markdown.vim
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ if main_syntax ==# 'markdown'
endif

syn match markdownEscape "\\[][\\`*_{}()#+.!-]"
syn match markdownImplicitBreak "\s*\ \ $" containedin=ALL
syn match markdownError "\w\@<=_\w\@="

hi def link markdownH1 htmlH1
Expand Down Expand Up @@ -123,6 +124,7 @@ hi def link markdownBoldItalic htmlBoldItalic
hi def link markdownCodeDelimiter Delimiter

hi def link markdownEscape Special
hi def markdownImplicitBreak ctermbg=darkgreen guibg=lightgreen
hi def link markdownError Error

let b:current_syntax = "markdown"
Expand Down