mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
16 lines
517 B
VimL
16 lines
517 B
VimL
" Vim syntax file
|
|
" Language: lsp_markdown
|
|
" Maintainer: Michael Lingelbach <m.j.lbach@gmail.com
|
|
" URL: http://neovim.io
|
|
" Remark: Uses markdown syntax file
|
|
|
|
runtime! syntax/markdown.vim
|
|
|
|
syn cluster mkdNonListItem add=mkdEscape,mkdNbsp
|
|
|
|
syntax region mkdEscape matchgroup=mkdEscape start=/\\\ze[\\\x60*{}\[\]()#+\-,.!_>~|"$%&'\/:;<=?@^ ]/ end=/.\zs/ keepend contains=mkdEscapeCh oneline concealends
|
|
syntax match mkdEscapeCh /./ contained
|
|
syntax match mkdNbsp / / conceal cchar=
|
|
|
|
hi def link mkdEscape special
|