changelog.vim

来自「MSYS在windows下模拟了一个类unix的终端」· VIM 代码 · 共 51 行

VIM
51
字号
" Vim syntax file" Language:	generic ChangeLog file" Maintainer:	Gediminas Paulauskas <menesis@delfi.lt>" Last Change:	Jan 9, 2001" For version 5.x: Clear all syntax items" For version 6.x: Quit when a syntax file was already loadedif version < 600  syntax clearelseif exists("b:current_syntax")  finishendifsyn case ignoresyn match	changelogText	"^\s.*$" contains=changelogMail,changelogFiles,changelogBullet,changelogNumber,changelogMonth,changelogDaysyn match	changelogHeader	"^\S.*$" contains=changelogNumber,changelogMonth,changelogDay,changelogMailsyn match	changelogFiles	"^\s\+[+*]\s\+.\{-}:" contains=changelogBulletsyn match	changelogBullet	contained "^\s\+[+*]\s"syn match	changelogMail	contained "<[A-Za-z0-9\._:+-]\+@[A-Za-z0-9\._-]\+>"syn keyword	changelogMonth	contained jan feb mar apr may jun jul aug sep oct nov decsyn keyword	changelogDay	contained mon tue wed thu fri sat sunsyn match	changelogNumber	contained "[.-]*[0-9]\+"" Define the default highlighting." For version 5.7 and earlier: only when not done already" For version 5.8 and later: only when an item doesn't have highlighting yetif version >= 508 || !exists("did_changelog_syntax_inits")  if version < 508    let did_changelog_syntax_inits = 1    command -nargs=+ HiLink hi link <args>  else    command -nargs=+ HiLink hi def link <args>  endif  HiLink changelogText		Normal  HiLink changelogBullet	Type  HiLink changelogFiles		Comment  HiLink changelogHeader	Statement  HiLink changelogMail		Special  HiLink changelogNumber	Number  HiLink changelogMonth		Number  HiLink changelogDay		Number  delcommand HiLinkendiflet b:current_syntax = "changelog"" vim: ts=8

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?