mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	 a98a6996c2
			
		
	
	a98a6996c2
	
	
	
		
			
			Vim runtime files based on 7.4.384 / hg changeset 7090d7f160f7
Excluding:
  Amiga icons (*.info, icons/)
  doc/hangulin.txt
  tutor/
  spell/
  lang/ (only used for menu translations)
  macros/maze/, macros/hanoi/, macros/life/, macros/urm/
      These were used to test vi compatibility.
  termcap
      "Demonstration of a termcap file (for the Amiga and Archimedes)"
Helped-by: Rich Wareham <rjw57@cam.ac.uk>
Helped-by: John <john.schmidt.h@gmail.com>
Helped-by: Yann <yann@yann-salaun.com>
Helped-by: Christophe Badoit <c.badoit@lesiteimmo.com>
Helped-by: drasill <github@tof2k.com>
Helped-by: Tae Sandoval Murgan <taecilla@gmail.com>
Helped-by: Lowe Thiderman <lowe.thiderman@gmail.com>
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			VimL
		
	
	
	
	
	
| " Vim syntax file
 | |
| " Language:             Innovation Data Processing upstream.log file
 | |
| " Maintainer:           Rob Owens <rowens@fdrinnovation.com>
 | |
| " Latest Revision:      2013-09-19
 | |
| 
 | |
| " Quit when a syntax file was already loaded
 | |
| if exists("b:current_syntax")
 | |
|   finish
 | |
| endif
 | |
| 
 | |
| " Date:
 | |
| syn match upstreamlog_Date /\u\l\l \u\l\l\s\{1,2}\d\{1,2} \d\d:\d\d:\d\d \d\d\d\d/
 | |
| " Msg Types:
 | |
| syn match upstreamlog_MsgD /Msg #\(Agt\|PC\|Srv\)\d\{4,5}D/ nextgroup=upstreamlog_Process skipwhite
 | |
| syn match upstreamlog_MsgE /Msg #\(Agt\|PC\|Srv\)\d\{4,5}E/ nextgroup=upstreamlog_Process skipwhite
 | |
| syn match upstreamlog_MsgI /Msg #\(Agt\|PC\|Srv\)\d\{4,5}I/ nextgroup=upstreamlog_Process skipwhite
 | |
| syn match upstreamlog_MsgW /Msg #\(Agt\|PC\|Srv\)\d\{4,5}W/ nextgroup=upstreamlog_Process skipwhite
 | |
| " Processes:
 | |
| syn region upstreamlog_Process start="(" end=")" contained
 | |
| " IP Address:
 | |
| syn match upstreamlog_IPaddr /\( \|(\)\zs\d\{1,3}\.\d\{1,3}\.\d\{1,3}\.\d\{1,3}/
 | |
| " Profile:
 | |
| syn match upstreamlog_Profile /Using default configuration for profile \zs\S\{1,8}\ze/
 | |
| syn match upstreamlog_Profile /Now running profile \zs\S\{1,8}\ze/
 | |
| syn match upstreamlog_Profile /in profile set \zs\S\{1,8}\ze/
 | |
| syn match upstreamlog_Profile /Migrate disk backup from profile \zs\S\{1,8}\ze/
 | |
| syn match upstreamlog_Profile /Profileset=\zs\S\{1,8}\ze,/
 | |
| syn match upstreamlog_Profile /Vault \(disk\|tape\) backup to vault \d\{1,4} from profile \zs\S\{1,8}\ze/
 | |
| syn match upstreamlog_Profile /Profile name \zs\"\S\{1,8}\"/
 | |
| syn match upstreamlog_Profile / Profile: \zs\S\{1,8}/
 | |
| syn match upstreamlog_Profile /  Profile: \zs\S\{1,8}\ze, /
 | |
| syn match upstreamlog_Profile /, profile: \zs\S\{1,8}\ze,/
 | |
| syn match upstreamlog_Profile /found Profile: \zs\S\{1,8}\ze,/
 | |
| syn match upstreamlog_Profile /Backup Profile: \zs\S\{1,8}\ze Version date/
 | |
| syn match upstreamlog_Profile /Backup profile: \zs\S\{1,8}\ze  Version date/
 | |
| syn match upstreamlog_Profile /Full of \zs\S\{1,8}\ze$/
 | |
| syn match upstreamlog_Profile /Incr. of \zs\S\{1,8}\ze$/
 | |
| syn match upstreamlog_Profile /Profile=\zs\S\{1,8}\ze,/
 | |
| " Target:
 | |
| syn region upstreamlog_Target start="Computer: \zs" end="\ze[\]\)]" 
 | |
| syn region upstreamlog_Target start="Computer name \zs\"" end="\"\ze" 
 | |
| syn region upstreamlog_Target start="request to registered name \zs" end=" "
 | |
| 
 | |
| 
 | |
| hi def link upstreamlog_Date	Underlined
 | |
| hi def link upstreamlog_MsgD	Type
 | |
| hi def link upstreamlog_MsgE	Error
 | |
| hi def link upstreamlog_MsgW	Constant
 | |
| hi def link upstreamlog_Process	Statement
 | |
| hi def link upstreamlog_IPaddr	Identifier
 | |
| hi def link upstreamlog_Profile	Identifier
 | |
| hi def link upstreamlog_Target	Identifier
 | |
| 
 | |
| let b:current_syntax = "upstreamlog"
 |