blob: 18f4593c77843ccdd56dda3e4bbd0daaa8c1dfd1 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim syntax file
2" Language: RCS log output
3" Maintainer: Joe Karthauser <joe@freebsd.org>
4" Last Change: 2001 May 09
5
Bram Moolenaar89bcfda2016-08-30 23:26:57 +02006" quit when a syntax file was already loaded
7if exists("b:current_syntax")
Bram Moolenaar071d4272004-06-13 20:20:40 +00008 finish
9endif
10
11syn match rcslogRevision "^revision.*$"
12syn match rcslogFile "^RCS file:.*"
13syn match rcslogDate "^date: .*$"
14
15" Define the default highlighting.
Bram Moolenaar89bcfda2016-08-30 23:26:57 +020016" Only when an item doesn't have highlighting yet
Bram Moolenaar071d4272004-06-13 20:20:40 +000017
Bram Moolenaarf37506f2016-08-31 22:22:10 +020018hi def link rcslogFile Type
19hi def link rcslogRevision Constant
20hi def link rcslogDate Identifier
Bram Moolenaar071d4272004-06-13 20:20:40 +000021
Bram Moolenaar071d4272004-06-13 20:20:40 +000022
23let b:current_syntax = "rcslog"
24
25" vim: ts=8