Updates syntax to meet guidelines of v0.13.0 spec

This commit is contained in:
Brian Evans 2020-06-08 11:39:13 -07:00
parent 726c59ea00
commit 09264eb21d
1 changed files with 5 additions and 2 deletions

View File

@ -32,7 +32,10 @@ syn match gmiLinkUrl /\S\+/ contained nextgroup=gmiLinkTitle skipwhite
syn match gmiLinkTitle /.*$/ contained
" Handle list items
syn match gmiListItem /^\*.*$/
syn match gmiListItem /^\* .*$/
" Handle quotes
syn match gmiQuoteLine /^>.*/
let b:current_syntax = "gmi"
@ -42,4 +45,4 @@ hi def link gmiLinkStart Todo
hi def link gmiLinkUrl Underlined
hi def link gmiLinkTitle String
hi def link gmiListItem Identifier
hi def link gmiQuoteLine Include