upstreaminstalllog.vim 971 B

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