neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

rcslog.vim (557B)


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