File: vcscommit.vim

package info (click to toggle)
vim-scripts 7-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,228 kB
  • ctags: 1,793
  • sloc: perl: 109; makefile: 30; sh: 11
file content (14 lines) | stat: -rw-r--r-- 388 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
" Vim syntax file
" Language:	VCS commit file
" Maintainer:	Bob Hiestand (bob.hiestand@gmail.com)
" URL:		http://www.zotikos.com/downloads/cvs.vim
" TODO:  Fix URL and last change
" Last Change:	Sat Nov 24 23:25:11 CET 2001

if exists("b:current_syntax")
  finish
endif

syntax region vcsComment start="^VCS: " end="$"
highlight link vcsComment Comment
let b:current_syntax = "vcscommit"