annotate runtime/syntax/po.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 46763b01cd9a
children d6dde6229b36
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 " Vim syntax file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 " Language: po (gettext)
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
3 " Maintainer: Dwayne Bailey <dwayne@translate.org.za>
6823
0303182665d5 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3496
diff changeset
4 " Last Change: 2015 Jun 07
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 347
diff changeset
5 " Contributors: Dwayne Bailey (Most advanced syntax highlighting)
82b5078be2dd updated for version 7.2a
vimboss
parents: 347
diff changeset
6 " Leonardo Fontenelle (Spell checking)
2587
d0049ff5969e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
7 " Nam SungHyun <namsh@kldp.org> (Original maintainer)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8
10048
43efa4f5a8ea commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
9 " quit when a syntax file was already loaded
43efa4f5a8ea commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
10 if exists("b:current_syntax")
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 finish
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 endif
3496
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2587
diff changeset
13 let s:keepcpo= &cpo
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2587
diff changeset
14 set cpo&vim
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
16 syn sync minlines=10
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
17
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
18 " Identifiers
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 347
diff changeset
19 syn match poStatementMsgCTxt "^msgctxt"
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
20 syn match poStatementMsgidplural "^msgid_plural" contained
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
21 syn match poPluralCaseN "[0-9]" contained
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
22 syn match poStatementMsgstr "^msgstr\(\[[0-9]\]\)" contains=poPluralCaseN
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
23
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
24 " Simple HTML and XML highlighting
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 347
diff changeset
25 syn match poHtml "<\_[^<>]\+>" contains=poHtmlTranslatables,poLineBreak
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
26 syn match poHtmlNot +"<[^<]\+>"+ms=s+1,me=e-1
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 347
diff changeset
27 syn region poHtmlTranslatables start=+\(abbr\|alt\|content\|summary\|standby\|title\)=\\"+ms=e-1 end=+\\"+ contained contains=@Spell
82b5078be2dd updated for version 7.2a
vimboss
parents: 347
diff changeset
28 syn match poLineBreak +"\n"+ contained
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
29
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
30 " Translation blocks
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 347
diff changeset
31 syn region poMsgCTxt matchgroup=poStatementMsgCTxt start=+^msgctxt "+rs=e-1 matchgroup=poStringCTxt end=+^msgid "+me=s-1 contains=poStringCTxt
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
32 syn region poMsgID matchgroup=poStatementMsgid start=+^msgid "+rs=e-1 matchgroup=poStringID end=+^msgstr\(\|\[[\]0\[]\]\) "+me=s-1 contains=poStringID,poStatementMsgidplural,poStatementMsgid
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
33 syn region poMsgSTR matchgroup=poStatementMsgstr start=+^msgstr\(\|\[[\]0\[]\]\) "+rs=e-1 matchgroup=poStringSTR end=+\n\n+me=s-1 contains=poStringSTR,poStatementMsgstr
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 347
diff changeset
34 syn region poStringCTxt start=+"+ skip=+\\\\\|\\"+ end=+"+
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
35 syn region poStringID start=+"+ skip=+\\\\\|\\"+ end=+"+ contained
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 347
diff changeset
36 \ contains=poSpecial,poFormat,poCommentKDE,poPluralKDE,poKDEdesktopFile,poHtml,poAcceleratorId,poHtmlNot,poVariable
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
37 syn region poStringSTR start=+"+ skip=+\\\\\|\\"+ end=+"+ contained
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 347
diff changeset
38 \ contains=@Spell,poSpecial,poFormat,poHeaderItem,poCommentKDEError,poHeaderUndefined,poPluralKDEError,poMsguniqError,poKDEdesktopFile,poHtml,poAcceleratorStr,poHtmlNot,poVariable
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
39
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
40 " Header and Copyright
2587
d0049ff5969e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
41 syn match poHeaderItem "\(Project-Id-Version\|Report-Msgid-Bugs-To\|POT-Creation-Date\|PO-Revision-Date\|Last-Translator\|Language-Team\|Language\|MIME-Version\|Content-Type\|Content-Transfer-Encoding\|Plural-Forms\|X-Generator\): " contained
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 347
diff changeset
42 syn match poHeaderUndefined "\(PACKAGE VERSION\|YEAR-MO-DA HO:MI+ZONE\|FULL NAME <EMAIL@ADDRESS>\|LANGUAGE <LL@li.org>\|CHARSET\|ENCODING\|INTEGER\|EXPRESSION\)" contained
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
43 syn match poCopyrightUnset "SOME DESCRIPTIVE TITLE\|FIRST AUTHOR <EMAIL@ADDRESS>, YEAR\|Copyright (C) YEAR Free Software Foundation, Inc\|YEAR THE PACKAGE\'S COPYRIGHT HOLDER\|PACKAGE" contained
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
44
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
45 " Translation comment block including: translator comment, automatic coments, flags and locations
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
46 syn match poComment "^#.*$"
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
47 syn keyword poFlagFuzzy fuzzy contained
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
48 syn match poCommentTranslator "^# .*$" contains=poCopyrightUnset
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
49 syn match poCommentAutomatic "^#\..*$"
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
50 syn match poCommentSources "^#:.*$"
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
51 syn match poCommentFlags "^#,.*$" contains=poFlagFuzzy
6823
0303182665d5 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3496
diff changeset
52 syn match poDiffOld '\(^#| "[^{]*+}\|{+[^}]*+}\|{+[^}]*\|"$\)' contained
0303182665d5 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3496
diff changeset
53 syn match poDiffNew '\(^#| "[^{]*-}\|{-[^}]*-}\|{-[^}]*\|"$\)' contained
0303182665d5 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 3496
diff changeset
54 syn match poCommentDiff "^#|.*$" contains=poDiffOld,poDiffNew
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
55
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
56 " Translations (also includes header fields as they appear in a translation msgstr)
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
57 syn region poCommentKDE start=+"_: +ms=s+1 end="\\n" end="\"\n^msgstr"me=s-1 contained
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
58 syn region poCommentKDEError start=+"\(\|\s\+\)_:+ms=s+1 end="\\n" end=+"\n\n+me=s-1 contained
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
59 syn match poPluralKDE +"_n: +ms=s+1 contained
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
60 syn region poPluralKDEError start=+"\(\|\s\+\)_n:+ms=s+1 end="\"\n\n"me=s-1 contained
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61 syn match poSpecial contained "\\\(x\x\+\|\o\{1,3}\|.\|$\)"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
62 syn match poFormat "%\(\d\+\$\)\=[-+' #0*]*\(\d*\|\*\|\*\d\+\$\)\(\.\(\d*\|\*\|\*\d\+\$\)\)\=\([hlL]\|ll\)\=\([diuoxXfeEgGcCsSpn]\|\[\^\=.[^]]*\]\)" contained
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63 syn match poFormat "%%" contained
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
64
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
65 " msguniq and msgcat conflicts
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
66 syn region poMsguniqError matchgroup=poMsguniqErrorMarkers start="#-#-#-#-#" end='#\("\n"\|\)-\("\n"\|\)#\("\n"\|\)-\("\n"\|\)#\("\n"\|\)-\("\n"\|\)#\("\n"\|\)-\("\n"\|\)#\("\n"\|\)\\n' contained
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
67
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
68 " Obsolete messages
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
69 syn match poObsolete "^#\~.*$"
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
70
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
71 " KDE Name= handling
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
72 syn match poKDEdesktopFile "\"\(Name\|Comment\|GenericName\|Description\|Keywords\|About\)="ms=s+1,me=e-1
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
73
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
74 " Accelerator keys - this messes up if the preceding or following char is a multibyte unicode char
1621
82b5078be2dd updated for version 7.2a
vimboss
parents: 347
diff changeset
75 syn match poAcceleratorId contained "[^&_~][&_~]\(\a\|\d\)[^:]"ms=s+1,me=e-1
82b5078be2dd updated for version 7.2a
vimboss
parents: 347
diff changeset
76 syn match poAcceleratorStr contained "[^&_~][&_~]\(\a\|\d\)[^:]"ms=s+1,me=e-1 contains=@Spell
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
77
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
78 " Variables simple
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
79 syn match poVariable contained "%\d"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
81 " Define the default highlighting.
10048
43efa4f5a8ea commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents: 6823
diff changeset
82 " Only when an item doesn't have highlighting yet
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83
10051
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
84 hi def link poCommentSources PreProc
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
85 hi def link poComment Comment
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
86 hi def link poCommentAutomatic Comment
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
87 hi def link poCommentTranslator Comment
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
88 hi def link poCommentFlags Special
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
89 hi def link poCommentDiff Comment
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
90 hi def link poCopyrightUnset Todo
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
91 hi def link poFlagFuzzy Todo
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
92 hi def link poDiffOld Todo
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
93 hi def link poDiffNew Special
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
94 hi def link poObsolete Comment
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
95
10051
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
96 hi def link poStatementMsgid Statement
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
97 hi def link poStatementMsgstr Statement
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
98 hi def link poStatementMsgidplural Statement
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
99 hi def link poStatementMsgCTxt Statement
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
100 hi def link poPluralCaseN Constant
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
101
10051
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
102 hi def link poStringCTxt Comment
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
103 hi def link poStringID String
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
104 hi def link poStringSTR String
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
105 hi def link poCommentKDE Comment
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
106 hi def link poCommentKDEError Error
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
107 hi def link poPluralKDE Comment
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
108 hi def link poPluralKDEError Error
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
109 hi def link poHeaderItem Identifier
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
110 hi def link poHeaderUndefined Todo
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
111 hi def link poKDEdesktopFile Identifier
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
112
10051
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
113 hi def link poHtml Identifier
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
114 hi def link poHtmlNot String
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
115 hi def link poHtmlTranslatables String
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
116 hi def link poLineBreak String
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
117
10051
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
118 hi def link poFormat poSpecial
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
119 hi def link poSpecial Special
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
120 hi def link poAcceleratorId Special
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
121 hi def link poAcceleratorStr Special
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
122 hi def link poVariable Special
347
fb380b964d53 updated for version 7.0090
vimboss
parents: 9
diff changeset
123
10051
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
124 hi def link poMsguniqError Special
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
125 hi def link poMsguniqErrorMarkers Comment
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
126
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
127
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
128 let b:current_syntax = "po"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
129
3496
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2587
diff changeset
130 let &cpo = s:keepcpo
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2587
diff changeset
131 unlet s:keepcpo
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2587
diff changeset
132
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
133 " vim:set ts=8 sts=2 sw=2 noet: