mirror of
https://tildegit.org/sloum/gemini-vim-syntax.git
synced 2024-08-14 22:46:59 +00:00
Updates syntax to meet guidelines of v0.13.0 spec
This commit is contained in:
parent
726c59ea00
commit
09264eb21d
1 changed files with 5 additions and 2 deletions
|
@ -32,7 +32,10 @@ syn match gmiLinkUrl /\S\+/ contained nextgroup=gmiLinkTitle skipwhite
|
||||||
syn match gmiLinkTitle /.*$/ contained
|
syn match gmiLinkTitle /.*$/ contained
|
||||||
|
|
||||||
" Handle list items
|
" Handle list items
|
||||||
syn match gmiListItem /^\*.*$/
|
syn match gmiListItem /^\* .*$/
|
||||||
|
|
||||||
|
" Handle quotes
|
||||||
|
syn match gmiQuoteLine /^>.*/
|
||||||
|
|
||||||
let b:current_syntax = "gmi"
|
let b:current_syntax = "gmi"
|
||||||
|
|
||||||
|
@ -42,4 +45,4 @@ hi def link gmiLinkStart Todo
|
||||||
hi def link gmiLinkUrl Underlined
|
hi def link gmiLinkUrl Underlined
|
||||||
hi def link gmiLinkTitle String
|
hi def link gmiLinkTitle String
|
||||||
hi def link gmiListItem Identifier
|
hi def link gmiListItem Identifier
|
||||||
|
hi def link gmiQuoteLine Include
|
||||||
|
|
Loading…
Reference in a new issue