1" Vim syntax file 2" Language: Innovation Data Processing UPSTREAMInstall.log file 3" Maintainer: Rob Owens <[email protected]> 4" Latest Revision: 2013-06-17 5 6" Quit when a syntax file was already loaded 7if exists("b:current_syntax") 8 finish 9endif 10 11" Date: 12syn match upstreaminstalllog_Date /\u\l\l \u\l\l\s\{1,2}\d\{1,2} \d\d:\d\d:\d\d \d\d\d\d/ 13" Msg Types: 14syn match upstreaminstalllog_MsgD /Msg #MSI\d\{4,5}D/ 15syn match upstreaminstalllog_MsgE /Msg #MSI\d\{4,5}E/ 16syn match upstreaminstalllog_MsgI /Msg #MSI\d\{4,5}I/ 17syn match upstreaminstalllog_MsgW /Msg #MSI\d\{4,5}W/ 18" IP Address: 19syn match upstreaminstalllog_IPaddr / \d\{1,3}\.\d\{1,3}\.\d\{1,3}\.\d\{1,3}/ 20 21hi def link upstreaminstalllog_Date Underlined 22hi def link upstreaminstalllog_MsgD Type 23hi def link upstreaminstalllog_MsgE Error 24hi def link upstreaminstalllog_MsgW Constant 25hi def link upstreaminstalllog_IPaddr Identifier 26 27let b:current_syntax = "upstreaminstalllog" 28