forked from aniani/vim
		
	
		
			
	
	
		
			33 lines
		
	
	
		
			925 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
		
		
			
		
	
	
			33 lines
		
	
	
		
			925 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
|   | " Vim syntax file | ||
|  | " Language: FreeBSD send-pr file | ||
|  | " Maintainer: Hendrik Scholz <hendrik@scholz.net> | ||
|  | " Last Change: 2002 Mar 21 | ||
|  | " | ||
|  | " http://raisdorf.net/files/misc/send-pr.vim | ||
|  | 
 | ||
|  | " For version 5.x: Clear all syntax items | ||
|  | " For version 6.x: Quit when a syntax file was already loaded | ||
|  | if version < 600 | ||
|  |   syntax clear | ||
|  | elseif exists("b:current_syntax") | ||
|  |   finish | ||
|  | endif | ||
|  | 
 | ||
|  | syn match sendprComment /^SEND-PR:/ | ||
|  | " email address | ||
|  | syn match sendprType /<[a-zA-Z0-9\-\_\.]*@[a-zA-Z0-9\-\_\.]*>/ | ||
|  | " ^> lines | ||
|  | syn match sendprString /^>[a-zA-Z\-]*:/ | ||
|  | syn region sendprLabel start="\[" end="\]" | ||
|  | syn match sendprString /^To:/ | ||
|  | syn match sendprString /^From:/ | ||
|  | syn match sendprString /^Reply-To:/ | ||
|  | syn match sendprString /^Cc:/ | ||
|  | syn match sendprString /^X-send-pr-version:/ | ||
|  | syn match sendprString /^X-GNATS-Notify:/ | ||
|  | 
 | ||
|  | hi def link sendprComment   Comment | ||
|  | hi def link sendprType      Type | ||
|  | hi def link sendprString    String | ||
|  | hi def link sendprLabel     Label |