1" Vim syntax file 2" Language: RCS log output 3" Maintainer: Joe Karthauser <[email protected]> 4" Last Change: 2001 May 09 5 6" quit when a syntax file was already loaded 7if exists("b:current_syntax") 8 finish 9endif 10 11syn match rcslogRevision "^revision.*$" 12syn match rcslogFile "^RCS file:.*" 13syn match rcslogDate "^date: .*$" 14 15" Define the default highlighting. 16" Only when an item doesn't have highlighting yet 17 18hi def link rcslogFile Type 19hi def link rcslogRevision Constant 20hi def link rcslogDate Identifier 21 22 23let b:current_syntax = "rcslog" 24 25" vim: ts=8 26