annotate runtime/syntax/upstreamlog.vim @ 5239:11cd8d58372e

Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Wed, 24 Jul 2013 19:53:36 +0200
parents ceb5f21cda79
children 42bf9264e64e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4992
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 " Vim syntax file
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 " Language: Innovation Data Processing upstream.log file
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 " Maintainer: Rob Owens <rowens@fdrinnovation.com>
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
4 " Latest Revision: 2013-06-17
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6 " Quit when a syntax file was already loaded
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 if exists("b:current_syntax")
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8 finish
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 endif
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11 " Date:
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 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/
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13 " Msg Types:
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
14 syn match upstreamlog_MsgD /Msg #\(Agt\|PC\|Srv\)\d\{4,5}D/ nextgroup=upstreamlog_Process skipwhite
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15 syn match upstreamlog_MsgE /Msg #\(Agt\|PC\|Srv\)\d\{4,5}E/ nextgroup=upstreamlog_Process skipwhite
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
16 syn match upstreamlog_MsgI /Msg #\(Agt\|PC\|Srv\)\d\{4,5}I/ nextgroup=upstreamlog_Process skipwhite
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
17 syn match upstreamlog_MsgW /Msg #\(Agt\|PC\|Srv\)\d\{4,5}W/ nextgroup=upstreamlog_Process skipwhite
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
18 " Processes:
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
19 syn region upstreamlog_Process start="(" end=")" contained
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
20 " IP Address:
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
21 syn match upstreamlog_IPaddr / \d\{1,3}\.\d\{1,3}\.\d\{1,3}\.\d\{1,3}/
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
22 " Profile:
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
23 syn region upstreamlog_Profile start="Profile name \zs" end="\"\S\{1,8}\""
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
24 syn region upstreamlog_Profile start=" Profile: \zs" end="\S\{1,8}"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
25 syn region upstreamlog_Profile start=" Profile: \zs" end="\ze, "
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
26 syn region upstreamlog_Profile start="Backup Profile: \zs" end="\ze Version date"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
27 syn region upstreamlog_Profile start="Full of \zs" end="\ze$"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
28 syn region upstreamlog_Profile start="Incr. of \zs" end="\ze$"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
29 " Target:
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
30 syn region upstreamlog_Target start="Computer: \zs" end="\ze[\]\)]"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
31 syn region upstreamlog_Target start="Computer name \zs" end="\ze,"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
32
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
33 hi def link upstreamlog_Date Underlined
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
34 hi def link upstreamlog_MsgD Type
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
35 hi def link upstreamlog_MsgE Error
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
36 hi def link upstreamlog_MsgW Constant
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
37 hi def link upstreamlog_Process Statement
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
38 hi def link upstreamlog_IPaddr Identifier
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
39 hi def link upstreamlog_Profile Identifier
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
40 hi def link upstreamlog_Target Identifier
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
41
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
42 let b:current_syntax = "upstreamlog"