2014-07-10 21:05:51 -07:00
|
|
|
" Vim syntax file
|
|
|
|
" Language: RCS log output
|
|
|
|
" Maintainer: Joe Karthauser <joe@freebsd.org>
|
|
|
|
" Last Change: 2001 May 09
|
|
|
|
|
2017-04-28 12:06:44 -07:00
|
|
|
" quit when a syntax file was already loaded
|
|
|
|
if exists("b:current_syntax")
|
2014-07-10 21:05:51 -07:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
syn match rcslogRevision "^revision.*$"
|
|
|
|
syn match rcslogFile "^RCS file:.*"
|
|
|
|
syn match rcslogDate "^date: .*$"
|
|
|
|
|
|
|
|
" Define the default highlighting.
|
2017-04-28 12:06:44 -07:00
|
|
|
" Only when an item doesn't have highlighting yet
|
2014-07-10 21:05:51 -07:00
|
|
|
|
2017-04-28 12:14:34 -07:00
|
|
|
hi def link rcslogFile Type
|
|
|
|
hi def link rcslogRevision Constant
|
|
|
|
hi def link rcslogDate Identifier
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
|
|
|
|
let b:current_syntax = "rcslog"
|
|
|
|
|
|
|
|
" vim: ts=8
|