annotate runtime/syntax/upstreamlog.vim @ 18486:9d887cad7315

Added tag v8.1.2237 for changeset 63ee3c2b140fe1b4801389872a8e47aec19d028b
author Bram Moolenaar <Bram@vim.org>
date Thu, 31 Oct 2019 20:00:04 +0100
parents 9521463d4fc1
children
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>
5425
9521463d4fc1 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5277
diff changeset
4 " Latest Revision: 2013-09-19
4992
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:
5277
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
21 syn match upstreamlog_IPaddr /\( \|(\)\zs\d\{1,3}\.\d\{1,3}\.\d\{1,3}\.\d\{1,3}/
4992
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
22 " Profile:
5277
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
23 syn match upstreamlog_Profile /Using default configuration for profile \zs\S\{1,8}\ze/
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
24 syn match upstreamlog_Profile /Now running profile \zs\S\{1,8}\ze/
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
25 syn match upstreamlog_Profile /in profile set \zs\S\{1,8}\ze/
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
26 syn match upstreamlog_Profile /Migrate disk backup from profile \zs\S\{1,8}\ze/
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
27 syn match upstreamlog_Profile /Profileset=\zs\S\{1,8}\ze,/
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
28 syn match upstreamlog_Profile /Vault \(disk\|tape\) backup to vault \d\{1,4} from profile \zs\S\{1,8}\ze/
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
29 syn match upstreamlog_Profile /Profile name \zs\"\S\{1,8}\"/
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
30 syn match upstreamlog_Profile / Profile: \zs\S\{1,8}/
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
31 syn match upstreamlog_Profile / Profile: \zs\S\{1,8}\ze, /
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
32 syn match upstreamlog_Profile /, profile: \zs\S\{1,8}\ze,/
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
33 syn match upstreamlog_Profile /found Profile: \zs\S\{1,8}\ze,/
5425
9521463d4fc1 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5277
diff changeset
34 syn match upstreamlog_Profile /Backup Profile: \zs\S\{1,8}\ze Version date/
9521463d4fc1 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5277
diff changeset
35 syn match upstreamlog_Profile /Backup profile: \zs\S\{1,8}\ze Version date/
5277
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
36 syn match upstreamlog_Profile /Full of \zs\S\{1,8}\ze$/
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
37 syn match upstreamlog_Profile /Incr. of \zs\S\{1,8}\ze$/
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
38 syn match upstreamlog_Profile /Profile=\zs\S\{1,8}\ze,/
4992
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
39 " Target:
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
40 syn region upstreamlog_Target start="Computer: \zs" end="\ze[\]\)]"
5425
9521463d4fc1 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5277
diff changeset
41 syn region upstreamlog_Target start="Computer name \zs\"" end="\"\ze"
5277
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
42 syn region upstreamlog_Target start="request to registered name \zs" end=" "
42bf9264e64e Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 4992
diff changeset
43
4992
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
44
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
45 hi def link upstreamlog_Date Underlined
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
46 hi def link upstreamlog_MsgD Type
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
47 hi def link upstreamlog_MsgE Error
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
48 hi def link upstreamlog_MsgW Constant
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
49 hi def link upstreamlog_Process Statement
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
50 hi def link upstreamlog_IPaddr Identifier
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
51 hi def link upstreamlog_Profile Identifier
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
52 hi def link upstreamlog_Target Identifier
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
53
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
54 let b:current_syntax = "upstreamlog"