Mercurial > vim
annotate runtime/makemenu.vim @ 4744:a62695305e03 v7.3.1119
updated for version 7.3.1119
Problem: Flags in 'cpo' are search for several times.
Solution: Store the result and re-use the flags.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 05 Jun 2013 12:43:09 +0200 |
parents | def0e3934129 |
children | 6ec6b7ff2d43 |
rev | line source |
---|---|
7 | 1 " Script to define the syntax menu in synmenu.vim |
2 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
2488
def0e3934129
Preparations for 7.3d release.
Bram Moolenaar <bram@vim.org>
parents:
2415
diff
changeset
|
3 " Last Change: 2010 Aug 04 |
7 | 4 |
5 " This is used by "make menu" in the src directory. | |
6 edit <sfile>:p:h/synmenu.vim | |
7 | |
8 /The Start Of The Syntax Menu/+1,/The End Of The Syntax Menu/-1d | |
9 let s:lnum = line(".") - 1 | |
10 call append(s:lnum, "") | |
11 let s:lnum = s:lnum + 1 | |
12 | |
13 " Use the SynMenu command and function to define all menu entries | |
14 command! -nargs=* SynMenu call <SID>Syn(<q-args>) | |
15 | |
16 let s:cur_menu_name = "" | |
17 let s:cur_menu_nr = 0 | |
18 let s:cur_menu_item = 0 | |
19 let s:cur_menu_char = "" | |
20 | |
21 fun! <SID>Syn(arg) | |
22 " isolate menu name: until the first dot | |
23 let i = match(a:arg, '\.') | |
24 let menu_name = strpart(a:arg, 0, i) | |
25 let r = strpart(a:arg, i + 1, 999) | |
26 " isolate submenu name: until the colon | |
27 let i = match(r, ":") | |
28 let submenu_name = strpart(r, 0, i) | |
29 " after the colon is the syntax name | |
30 let syntax_name = strpart(r, i + 1, 999) | |
31 | |
32 if s:cur_menu_name != menu_name | |
33 let s:cur_menu_name = menu_name | |
34 let s:cur_menu_nr = s:cur_menu_nr + 10 | |
35 let s:cur_menu_item = 100 | |
36 let s:cur_menu_char = submenu_name[0] | |
37 else | |
38 " When starting a new letter, insert a menu separator. | |
39 let c = submenu_name[0] | |
40 if c != s:cur_menu_char | |
41 exe 'an 50.' . s:cur_menu_nr . '.' . s:cur_menu_item . ' &Syntax.' . menu_name . ".-" . c . '- <nul>' | |
42 let s:cur_menu_item = s:cur_menu_item + 10 | |
43 let s:cur_menu_char = c | |
44 endif | |
45 endif | |
46 call append(s:lnum, 'an 50.' . s:cur_menu_nr . '.' . s:cur_menu_item . ' &Syntax.' . menu_name . "." . submenu_name . ' :cal SetSyn("' . syntax_name . '")<CR>') | |
47 let s:cur_menu_item = s:cur_menu_item + 10 | |
48 let s:lnum = s:lnum + 1 | |
49 endfun | |
50 | |
799 | 51 SynMenu AB.A2ps\ config:a2ps |
7 | 52 SynMenu AB.Aap:aap |
22 | 53 SynMenu AB.ABAP/4:abap |
7 | 54 SynMenu AB.Abaqus:abaqus |
55 SynMenu AB.ABC\ music\ notation:abc | |
56 SynMenu AB.ABEL:abel | |
57 SynMenu AB.AceDB\ model:acedb | |
58 SynMenu AB.Ada:ada | |
59 SynMenu AB.AfLex:aflex | |
24 | 60 SynMenu AB.ALSA\ config:alsaconf |
7 | 61 SynMenu AB.Altera\ AHDL:ahdl |
62 SynMenu AB.Amiga\ DOS:amiga | |
63 SynMenu AB.AMPL:ampl | |
64 SynMenu AB.Ant\ build\ file:ant | |
65 SynMenu AB.ANTLR:antlr | |
66 SynMenu AB.Apache\ config:apache | |
67 SynMenu AB.Apache-style\ config:apachestyle | |
68 SynMenu AB.Applix\ ELF:elf | |
69 SynMenu AB.Arc\ Macro\ Language:aml | |
70 SynMenu AB.Arch\ inventory:arch | |
71 SynMenu AB.ART:art | |
72 SynMenu AB.ASP\ with\ VBScript:aspvbs | |
73 SynMenu AB.ASP\ with\ Perl:aspperl | |
74 SynMenu AB.Assembly.680x0:asm68k | |
75 SynMenu AB.Assembly.Flat:fasm | |
76 SynMenu AB.Assembly.GNU:asm | |
77 SynMenu AB.Assembly.GNU\ H-8300:asmh8300 | |
78 SynMenu AB.Assembly.Intel\ IA-64:ia64 | |
79 SynMenu AB.Assembly.Microsoft:masm | |
80 SynMenu AB.Assembly.Netwide:nasm | |
81 SynMenu AB.Assembly.PIC:pic | |
82 SynMenu AB.Assembly.Turbo:tasm | |
83 SynMenu AB.Assembly.VAX\ Macro\ Assembly:vmasm | |
84 SynMenu AB.Assembly.Z-80:z8a | |
85 SynMenu AB.Assembly.xa\ 6502\ cross\ assember:a65 | |
86 SynMenu AB.ASN\.1:asn | |
799 | 87 SynMenu AB.Asterisk\ config:asterisk |
88 SynMenu AB.Asterisk\ voicemail\ config:asteriskvm | |
7 | 89 SynMenu AB.Atlas:atlas |
1186 | 90 SynMenu AB.AutoHotKey:autohotkey |
1118 | 91 SynMenu AB.AutoIt:autoit |
7 | 92 SynMenu AB.Automake:automake |
93 SynMenu AB.Avenue:ave | |
94 SynMenu AB.Awk:awk | |
95 SynMenu AB.AYacc:ayacc | |
96 | |
97 SynMenu AB.B:b | |
98 SynMenu AB.Baan:baan | |
1118 | 99 SynMenu AB.Basic.FreeBasic:freebasic |
100 SynMenu AB.Basic.IBasic:ibasic | |
101 SynMenu AB.Basic.QBasic:basic | |
102 SynMenu AB.Basic.Visual\ Basic:vb | |
103 SynMenu AB.Bazaar\ commit\ file:bzr | |
7 | 104 SynMenu AB.BC\ calculator:bc |
105 SynMenu AB.BDF\ font:bdf | |
845 | 106 SynMenu AB.BibTeX.Bibliography\ database:bib |
107 SynMenu AB.BibTeX.Bibliography\ Style:bst | |
7 | 108 SynMenu AB.BIND.BIND\ config:named |
109 SynMenu AB.BIND.BIND\ zone:bindzone | |
110 SynMenu AB.Blank:blank | |
111 | |
112 SynMenu C.C:c | |
113 SynMenu C.C++:cpp | |
114 SynMenu C.C#:cs | |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
115 SynMenu C.Cabal\ Haskell\ build\ file:cabal |
7 | 116 SynMenu C.Calendar:calendar |
1186 | 117 SynMenu C.Cascading\ Style\ Sheets:css |
7 | 118 SynMenu C.CDL:cdl |
1186 | 119 SynMenu C.Cdrdao\ TOC:cdrtoc |
1648 | 120 SynMenu C.Cdrdao\ config:cdrdaoconf |
7 | 121 SynMenu C.Century\ Term:cterm |
122 SynMenu C.CH\ script:ch | |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
123 SynMenu C.ChaiScript:chaiscript |
7 | 124 SynMenu C.ChangeLog:changelog |
125 SynMenu C.Cheetah\ template:cheetah | |
126 SynMenu C.CHILL:chill | |
839 | 127 SynMenu C.ChordPro:chordpro |
7 | 128 SynMenu C.Clean:clean |
129 SynMenu C.Clever:cl | |
130 SynMenu C.Clipper:clipper | |
836 | 131 SynMenu C.Cmake:cmake |
1118 | 132 SynMenu C.Cmusrc:cmusrc |
1186 | 133 SynMenu C.Cobol:cobol |
1648 | 134 SynMenu C.Coco/R:coco |
7 | 135 SynMenu C.Cold\ Fusion:cf |
1186 | 136 SynMenu C.Conary\ Recipe:conaryrecipe |
7 | 137 SynMenu C.Config.Cfg\ Config\ file:cfg |
138 SynMenu C.Config.Configure\.in:config | |
1186 | 139 SynMenu C.Config.Generic\ Config\ file:conf |
7 | 140 SynMenu C.CRM114:crm |
1186 | 141 SynMenu C.Crontab:crontab |
142 SynMenu C.CSP:csp | |
7 | 143 SynMenu C.Ctrl-H:ctrlh |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
144 SynMenu C.Cucumber:cucumber |
1648 | 145 SynMenu C.CUDA:cuda |
7 | 146 SynMenu C.CUPL.CUPL:cupl |
147 SynMenu C.CUPL.Simulation:cuplsim | |
148 SynMenu C.CVS.commit\ file:cvs | |
149 SynMenu C.CVS.cvsrc:cvsrc | |
1186 | 150 SynMenu C.Cyn++:cynpp |
151 SynMenu C.Cynlib:cynlib | |
7 | 152 |
153 SynMenu DE.D:d | |
2488
def0e3934129
Preparations for 7.3d release.
Bram Moolenaar <bram@vim.org>
parents:
2415
diff
changeset
|
154 SynMenu DE.Datascript:datascript |
7 | 155 SynMenu DE.Debian.Debian\ ChangeLog:debchangelog |
156 SynMenu DE.Debian.Debian\ Control:debcontrol | |
815 | 157 SynMenu DE.Debian.Debian\ Sources\.list:debsources |
1648 | 158 SynMenu DE.Denyhosts:denyhosts |
7 | 159 SynMenu DE.Desktop:desktop |
799 | 160 SynMenu DE.Dict\ config:dictconf |
161 SynMenu DE.Dictd\ config:dictdconf | |
7 | 162 SynMenu DE.Diff:diff |
163 SynMenu DE.Digital\ Command\ Lang:dcl | |
164 SynMenu DE.Dircolors:dircolors | |
797 | 165 SynMenu DE.Django\ template:django |
801 | 166 SynMenu DE.DNS/BIND\ zone:bindzone |
7 | 167 SynMenu DE.DocBook.auto-detect:docbk |
168 SynMenu DE.DocBook.SGML:docbksgml | |
169 SynMenu DE.DocBook.XML:docbkxml | |
170 SynMenu DE.Dot:dot | |
834 | 171 SynMenu DE.Doxygen.C\ with\ doxygen:c.doxygen |
172 SynMenu DE.Doxygen.C++\ with\ doxygen:cpp.doxygen | |
173 SynMenu DE.Doxygen.IDL\ with\ doxygen:idl.doxygen | |
174 SynMenu DE.Doxygen.Java\ with\ doxygen:java.doxygen | |
7 | 175 SynMenu DE.Dracula:dracula |
176 SynMenu DE.DSSSL:dsl | |
177 SynMenu DE.DTD:dtd | |
178 SynMenu DE.DTML\ (Zope):dtml | |
1648 | 179 SynMenu DE.DTrace:dtrace |
7 | 180 SynMenu DE.Dylan.Dylan:dylan |
181 SynMenu DE.Dylan.Dylan\ interface:dylanintr | |
182 SynMenu DE.Dylan.Dylan\ lid:dylanlid | |
183 | |
184 SynMenu DE.EDIF:edif | |
185 SynMenu DE.Eiffel:eiffel | |
186 SynMenu DE.Elinks\ config:elinks | |
187 SynMenu DE.Elm\ filter\ rules:elmfilt | |
188 SynMenu DE.Embedix\ Component\ Description:ecd | |
189 SynMenu DE.ERicsson\ LANGuage:erlang | |
570 | 190 SynMenu DE.ESMTP\ rc:esmtprc |
191 SynMenu DE.ESQL-C:esqlc | |
7 | 192 SynMenu DE.Essbase\ script:csc |
570 | 193 SynMenu DE.Esterel:esterel |
7 | 194 SynMenu DE.Eterm\ config:eterm |
799 | 195 SynMenu DE.Eviews:eviews |
7 | 196 SynMenu DE.Exim\ conf:exim |
197 SynMenu DE.Expect:expect | |
198 SynMenu DE.Exports:exports | |
199 | |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
200 SynMenu FG.Fantom:fan |
7 | 201 SynMenu FG.Fetchmail:fetchmail |
845 | 202 SynMenu FG.FlexWiki:flexwiki |
7 | 203 SynMenu FG.Focus\ Executable:focexec |
204 SynMenu FG.Focus\ Master:master | |
205 SynMenu FG.FORM:form | |
206 SynMenu FG.Forth:forth | |
207 SynMenu FG.Fortran:fortran | |
208 SynMenu FG.FoxPro:foxpro | |
1186 | 209 SynMenu FG.FrameScript:framescript |
7 | 210 SynMenu FG.Fstab:fstab |
211 SynMenu FG.Fvwm.Fvwm\ configuration:fvwm1 | |
212 SynMenu FG.Fvwm.Fvwm2\ configuration:fvwm2 | |
213 SynMenu FG.Fvwm.Fvwm2\ configuration\ with\ M4:fvwm2m4 | |
214 | |
215 SynMenu FG.GDB\ command\ file:gdb | |
216 SynMenu FG.GDMO:gdmo | |
217 SynMenu FG.Gedcom:gedcom | |
1648 | 218 SynMenu FG.Git.Output:git |
219 SynMenu FG.Git.Commit:gitcommit | |
220 SynMenu FG.Git.Config:gitconfig | |
221 SynMenu FG.Git.Rebase:gitrebase | |
222 SynMenu FG.Git.Send\ Email:gitsendemail | |
7 | 223 SynMenu FG.Gkrellmrc:gkrellmrc |
224 SynMenu FG.GP:gp | |
225 SynMenu FG.GPG:gpg | |
799 | 226 SynMenu FG.Group\ file:group |
7 | 227 SynMenu FG.Grub:grub |
228 SynMenu FG.GNU\ Server\ Pages:gsp | |
229 SynMenu FG.GNUplot:gnuplot | |
230 SynMenu FG.GrADS\ scripts:grads | |
625 | 231 SynMenu FG.Gretl:gretl |
7 | 232 SynMenu FG.Groff:groff |
625 | 233 SynMenu FG.Groovy:groovy |
7 | 234 SynMenu FG.GTKrc:gtkrc |
235 | |
1668 | 236 SynMenu HIJK.Haml:haml |
1118 | 237 SynMenu HIJK.Hamster:hamster |
7 | 238 SynMenu HIJK.Haskell.Haskell:haskell |
239 SynMenu HIJK.Haskell.Haskell-c2hs:chaskell | |
240 SynMenu HIJK.Haskell.Haskell-literate:lhaskell | |
1648 | 241 SynMenu HIJK.HASTE:haste |
1668 | 242 SynMenu HIJK.HASTE\ preproc:hastepreproc |
7 | 243 SynMenu HIJK.Hercules:hercules |
244 SynMenu HIJK.Hex\ dump.XXD:xxd | |
245 SynMenu HIJK.Hex\ dump.Intel\ MCS51:hex | |
246 SynMenu HIJK.HTML.HTML:html | |
247 SynMenu HIJK.HTML.HTML\ with\ M4:htmlm4 | |
570 | 248 SynMenu HIJK.HTML.HTML\ with\ Ruby\ (eRuby):eruby |
7 | 249 SynMenu HIJK.HTML.Cheetah\ HTML\ template:htmlcheetah |
797 | 250 SynMenu HIJK.HTML.Django\ HTML\ template:htmldjango |
7 | 251 SynMenu HIJK.HTML.HTML/OS:htmlos |
252 SynMenu HIJK.HTML.XHTML:xhtml | |
1648 | 253 SynMenu HIJK.Host\.conf:hostconf |
7 | 254 SynMenu HIJK.Hyper\ Builder:hb |
255 SynMenu HIJK.Icewm\ menu:icemenu | |
256 SynMenu HIJK.Icon:icon | |
257 SynMenu HIJK.IDL\Generic\ IDL:idl | |
258 SynMenu HIJK.IDL\Microsoft\ IDL:msidl | |
259 SynMenu HIJK.Indent\ profile:indent | |
260 SynMenu HIJK.Inform:inform | |
261 SynMenu HIJK.Informix\ 4GL:fgl | |
1118 | 262 SynMenu HIJK.Initng:initng |
7 | 263 SynMenu HIJK.Inittab:inittab |
264 SynMenu HIJK.Inno\ setup:iss | |
265 SynMenu HIJK.InstallShield\ script:ishd | |
266 SynMenu HIJK.Interactive\ Data\ Lang:idlang | |
267 SynMenu HIJK.IPfilter:ipfilter | |
268 SynMenu HIJK.JAL:jal | |
269 SynMenu HIJK.JAM:jam | |
270 SynMenu HIJK.Jargon:jargon | |
271 SynMenu HIJK.Java.Java:java | |
272 SynMenu HIJK.Java.JavaCC:javacc | |
273 SynMenu HIJK.Java.Java\ Server\ Pages:jsp | |
274 SynMenu HIJK.Java.Java\ Properties:jproperties | |
275 SynMenu HIJK.JavaScript:javascript | |
276 SynMenu HIJK.Jess:jess | |
277 SynMenu HIJK.Jgraph:jgraph | |
826 | 278 SynMenu HIJK.Kconfig:kconfig |
7 | 279 SynMenu HIJK.KDE\ script:kscript |
280 SynMenu HIJK.Kimwitu++:kwt | |
281 SynMenu HIJK.KixTart:kix | |
282 | |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
283 SynMenu L.Lace:lace |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
284 SynMenu L.LamdaProlog:lprolog |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
285 SynMenu L.Latte:latte |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
286 SynMenu L.Ld\ script:ld |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
287 SynMenu L.LDAP.LDIF:ldif |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
288 SynMenu L.LDAP.Configuration:ldapconf |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
289 SynMenu L.Lex:lex |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
290 SynMenu L.LFTP\ config:lftp |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
291 SynMenu L.Libao:libao |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
292 SynMenu L.LifeLines\ script:lifelines |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
293 SynMenu L.Lilo:lilo |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
294 SynMenu L.Limits\ config:limits |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
295 SynMenu L.Linden\ scripting:lsl |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
296 SynMenu L.Liquid:liquid |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
297 SynMenu L.Lisp:lisp |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
298 SynMenu L.Lite:lite |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
299 SynMenu L.LiteStep\ RC:litestep |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
300 SynMenu L.Locale\ Input:fdcc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
301 SynMenu L.Login\.access:loginaccess |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
302 SynMenu L.Login\.defs:logindefs |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
303 SynMenu L.Logtalk:logtalk |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
304 SynMenu L.LOTOS:lotos |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
305 SynMenu L.LotusScript:lscript |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
306 SynMenu L.Lout:lout |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
307 SynMenu L.LPC:lpc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
308 SynMenu L.Lua:lua |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
309 SynMenu L.Lynx\ Style:lss |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
310 SynMenu L.Lynx\ config:lynx |
7 | 311 |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
312 SynMenu M.M4:m4 |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
313 SynMenu M.MaGic\ Point:mgp |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
314 SynMenu M.Mail:mail |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
315 SynMenu M.Mail\ aliases:mailaliases |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
316 SynMenu M.Mailcap:mailcap |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
317 SynMenu M.Makefile:make |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
318 SynMenu M.MakeIndex:ist |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
319 SynMenu M.Man\ page:man |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
320 SynMenu M.Man\.conf:manconf |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
321 SynMenu M.Maple\ V:maple |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
322 SynMenu M.Markdown:markdown |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
323 SynMenu M.Mason:mason |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
324 SynMenu M.Mathematica:mma |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
325 SynMenu M.Matlab:matlab |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
326 SynMenu M.Maxima:maxima |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
327 SynMenu M.MEL\ (for\ Maya):mel |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
328 SynMenu M.Messages\ (/var/log):messages |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
329 SynMenu M.Metafont:mf |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
330 SynMenu M.MetaPost:mp |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
331 SynMenu M.MGL:mgl |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
332 SynMenu M.MMIX:mmix |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
333 SynMenu M.Modconf:modconf |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
334 SynMenu M.Model:model |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
335 SynMenu M.Modsim\ III:modsim3 |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
336 SynMenu M.Modula\ 2:modula2 |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
337 SynMenu M.Modula\ 3:modula3 |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
338 SynMenu M.Monk:monk |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
339 SynMenu M.Mplayer\ config:mplayerconf |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
340 SynMenu M.MOO:moo |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
341 SynMenu M.Mrxvtrc:mrxvtrc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
342 SynMenu M.MS-DOS/Windows.4DOS\ \.bat\ file:btm |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
343 SynMenu M.MS-DOS/Windows.\.bat\/\.cmd\ file:dosbatch |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
344 SynMenu M.MS-DOS/Windows.\.ini\ file:dosini |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
345 SynMenu M.MS-DOS/Windows.Message\ text:msmessages |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
346 SynMenu M.MS-DOS/Windows.Module\ Definition:def |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
347 SynMenu M.MS-DOS/Windows.Registry:registry |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
348 SynMenu M.MS-DOS/Windows.Resource\ file:rc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
349 SynMenu M.Msql:msql |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
350 SynMenu M.MuPAD:mupad |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
351 SynMenu M.MUSHcode:mush |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
352 SynMenu M.Muttrc:muttrc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
353 |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
354 SynMenu NO.Nanorc:nanorc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
355 SynMenu NO.Nastran\ input/DMAP:nastran |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
356 SynMenu NO.Natural:natural |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
357 SynMenu NO.Netrc:netrc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
358 SynMenu NO.Novell\ NCF\ batch:ncf |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
359 SynMenu NO.Not\ Quite\ C\ (LEGO):nqc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
360 SynMenu NO.Nroff:nroff |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
361 SynMenu NO.NSIS\ script:nsis |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
362 SynMenu NO.Obj\ 3D\ wavefront:obj |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
363 SynMenu NO.Objective\ C:objc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
364 SynMenu NO.Objective\ C++:objcpp |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
365 SynMenu NO.OCAML:ocaml |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
366 SynMenu NO.Occam:occam |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
367 SynMenu NO.Omnimark:omnimark |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
368 SynMenu NO.OpenROAD:openroad |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
369 SynMenu NO.Open\ Psion\ Lang:opl |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
370 SynMenu NO.Oracle\ config:ora |
7 | 371 |
799 | 372 SynMenu PQ.Packet\ filter\ conf:pf |
7 | 373 SynMenu PQ.Palm\ resource\ compiler:pilrc |
799 | 374 SynMenu PQ.Pam\ config:pamconf |
7 | 375 SynMenu PQ.PApp:papp |
376 SynMenu PQ.Pascal:pascal | |
799 | 377 SynMenu PQ.Password\ file:passwd |
7 | 378 SynMenu PQ.PCCTS:pccts |
1648 | 379 SynMenu PQ.PDF:pdf |
7 | 380 SynMenu PQ.Perl.Perl:perl |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
381 SynMenu PQ.Perl.Perl\ 6:perl6 |
7 | 382 SynMenu PQ.Perl.Perl\ POD:pod |
383 SynMenu PQ.Perl.Perl\ XS:xs | |
384 SynMenu PQ.PHP.PHP\ 3-4:php | |
385 SynMenu PQ.PHP.Phtml\ (PHP\ 2):phtml | |
386 SynMenu PQ.Pike:pike | |
387 SynMenu PQ.Pine\ RC:pine | |
388 SynMenu PQ.Pinfo\ RC:pinfo | |
389 SynMenu PQ.PL/M:plm | |
570 | 390 SynMenu PQ.PL/SQL:plsql |
7 | 391 SynMenu PQ.PLP:plp |
392 SynMenu PQ.PO\ (GNU\ gettext):po | |
393 SynMenu PQ.Postfix\ main\ config:pfmain | |
394 SynMenu PQ.PostScript.PostScript:postscr | |
395 SynMenu PQ.PostScript.PostScript\ Printer\ Description:ppd | |
396 SynMenu PQ.Povray.Povray\ scene\ descr:pov | |
397 SynMenu PQ.Povray.Povray\ configuration:povini | |
1648 | 398 SynMenu PQ.PPWizard:ppwiz |
570 | 399 SynMenu PQ.Prescribe\ (Kyocera):prescribe |
7 | 400 SynMenu PQ.Printcap:pcap |
1118 | 401 SynMenu PQ.Privoxy:privoxy |
7 | 402 SynMenu PQ.Procmail:procmail |
403 SynMenu PQ.Product\ Spec\ File:psf | |
404 SynMenu PQ.Progress:progress | |
405 SynMenu PQ.Prolog:prolog | |
1648 | 406 SynMenu PQ.ProMeLa:promela |
799 | 407 SynMenu PQ.Protocols:protocols |
7 | 408 SynMenu PQ.Purify\ log:purifylog |
409 SynMenu PQ.Pyrex:pyrex | |
410 SynMenu PQ.Python:python | |
411 SynMenu PQ.Quake:quake | |
412 SynMenu PQ.Quickfix\ window:qf | |
413 | |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
414 SynMenu R.R.R:r |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
415 SynMenu R.R.R\ help:rhelp |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
416 SynMenu R.R.R\ noweb:rnoweb |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
417 SynMenu R.Racc\ input:racc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
418 SynMenu R.Radiance:radiance |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
419 SynMenu R.Ratpoison:ratpoison |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
420 SynMenu R.RCS.RCS\ log\ output:rcslog |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
421 SynMenu R.RCS.RCS\ file:rcs |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
422 SynMenu R.Readline\ config:readline |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
423 SynMenu R.Rebol:rebol |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
424 SynMenu R.Remind:remind |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
425 SynMenu R.Relax\ NG\ compact:rnc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
426 SynMenu R.Renderman.Renderman\ Shader\ Lang:sl |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
427 SynMenu R.Renderman.Renderman\ Interface\ Bytestream:rib |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
428 SynMenu R.Resolv\.conf:resolv |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
429 SynMenu R.Reva\ Forth:reva |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
430 SynMenu R.Rexx:rexx |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
431 SynMenu R.Robots\.txt:robots |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
432 SynMenu R.RockLinux\ package\ desc\.:desc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
433 SynMenu R.Rpcgen:rpcgen |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
434 SynMenu R.RPL/2:rpl |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
435 SynMenu R.ReStructuredText:rst |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
436 SynMenu R.RTF:rtf |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
437 SynMenu R.Ruby:ruby |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
438 |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
439 SynMenu S-Sm.S-Lang:slang |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
440 SynMenu S-Sm.Samba\ config:samba |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
441 SynMenu S-Sm.SAS:sas |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
442 SynMenu S-Sm.Sass:sass |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
443 SynMenu S-Sm.Sather:sather |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
444 SynMenu S-Sm.Scheme:scheme |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
445 SynMenu S-Sm.Scilab:scilab |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
446 SynMenu S-Sm.Screen\ RC:screen |
2415 | 447 SynMenu S-Sm.SCSS:scss |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
448 SynMenu S-Sm.SDC\ Synopsys\ Design\ Constraints:sdc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
449 SynMenu S-Sm.SDL:sdl |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
450 SynMenu S-Sm.Sed:sed |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
451 SynMenu S-Sm.Sendmail\.cf:sm |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
452 SynMenu S-Sm.Send-pr:sendpr |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
453 SynMenu S-Sm.Sensors\.conf:sensors |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
454 SynMenu S-Sm.Service\ Location\ config:slpconf |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
455 SynMenu S-Sm.Service\ Location\ registration:slpreg |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
456 SynMenu S-Sm.Service\ Location\ SPI:slpspi |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
457 SynMenu S-Sm.Services:services |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
458 SynMenu S-Sm.Setserial\ config:setserial |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
459 SynMenu S-Sm.SGML.SGML\ catalog:catalog |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
460 SynMenu S-Sm.SGML.SGML\ DTD:sgml |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
461 SynMenu S-Sm.SGML.SGML\ Declaration:sgmldecl |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
462 SynMenu S-Sm.SGML.SGML-linuxdoc:sgmllnx |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
463 SynMenu S-Sm.Shell\ script.sh\ and\ ksh:sh |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
464 SynMenu S-Sm.Shell\ script.csh:csh |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
465 SynMenu S-Sm.Shell\ script.tcsh:tcsh |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
466 SynMenu S-Sm.Shell\ script.zsh:zsh |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
467 SynMenu S-Sm.SiCAD:sicad |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
468 SynMenu S-Sm.Sieve:sieve |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
469 SynMenu S-Sm.Simula:simula |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
470 SynMenu S-Sm.Sinda.Sinda\ compare:sindacmp |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
471 SynMenu S-Sm.Sinda.Sinda\ input:sinda |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
472 SynMenu S-Sm.Sinda.Sinda\ output:sindaout |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
473 SynMenu S-Sm.SiSU:sisu |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
474 SynMenu S-Sm.SKILL.SKILL:skill |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
475 SynMenu S-Sm.SKILL.SKILL\ for\ Diva:diva |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
476 SynMenu S-Sm.Slice:slice |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
477 SynMenu S-Sm.SLRN.Slrn\ rc:slrnrc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
478 SynMenu S-Sm.SLRN.Slrn\ score:slrnsc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
479 SynMenu S-Sm.SmallTalk:st |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
480 SynMenu S-Sm.Smarty\ Templates:smarty |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
481 SynMenu S-Sm.SMIL:smil |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
482 SynMenu S-Sm.SMITH:smith |
7 | 483 |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
484 SynMenu Sn-Sy.SNMP\ MIB:mib |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
485 SynMenu Sn-Sy.SNNS.SNNS\ network:snnsnet |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
486 SynMenu Sn-Sy.SNNS.SNNS\ pattern:snnspat |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
487 SynMenu Sn-Sy.SNNS.SNNS\ result:snnsres |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
488 SynMenu Sn-Sy.Snobol4:snobol4 |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
489 SynMenu Sn-Sy.Snort\ Configuration:hog |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
490 SynMenu Sn-Sy.SPEC\ (Linux\ RPM):spec |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
491 SynMenu Sn-Sy.Specman:specman |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
492 SynMenu Sn-Sy.Spice:spice |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
493 SynMenu Sn-Sy.Spyce:spyce |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
494 SynMenu Sn-Sy.Speedup:spup |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
495 SynMenu Sn-Sy.Splint:splint |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
496 SynMenu Sn-Sy.Squid\ config:squid |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
497 SynMenu Sn-Sy.SQL.ESQL-C:esqlc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
498 SynMenu Sn-Sy.SQL.MySQL:mysql |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
499 SynMenu Sn-Sy.SQL.PL/SQL:plsql |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
500 SynMenu Sn-Sy.SQL.SQL\ Anywhere:sqlanywhere |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
501 SynMenu Sn-Sy.SQL.SQL\ (automatic):sql |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
502 SynMenu Sn-Sy.SQL.SQL\ (Oracle):sqloracle |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
503 SynMenu Sn-Sy.SQL.SQL\ Forms:sqlforms |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
504 SynMenu Sn-Sy.SQL.SQLJ:sqlj |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
505 SynMenu Sn-Sy.SQL.SQL-Informix:sqlinformix |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
506 SynMenu Sn-Sy.SQR:sqr |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
507 SynMenu Sn-Sy.Ssh.ssh_config:sshconfig |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
508 SynMenu Sn-Sy.Ssh.sshd_config:sshdconfig |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
509 SynMenu Sn-Sy.Standard\ ML:sml |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
510 SynMenu Sn-Sy.Stata.SMCL:smcl |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
511 SynMenu Sn-Sy.Stata.Stata:stata |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
512 SynMenu Sn-Sy.Stored\ Procedures:stp |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
513 SynMenu Sn-Sy.Strace:strace |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
514 SynMenu Sn-Sy.Streaming\ descriptor\ file:sd |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
515 SynMenu Sn-Sy.Subversion\ commit:svn |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
516 SynMenu Sn-Sy.Sudoers:sudoers |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
517 SynMenu Sn-Sy.SVG:svg |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
518 SynMenu Sn-Sy.Symbian\ meta-makefile:mmp |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
519 SynMenu Sn-Sy.Sysctl\.conf:sysctl |
7 | 520 |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
521 SynMenu T.TADS:tads |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
522 SynMenu T.Tags:tags |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
523 SynMenu T.TAK.TAK\ compare:takcmp |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
524 SynMenu T.TAK.TAK\ input:tak |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
525 SynMenu T.TAK.TAK\ output:takout |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
526 SynMenu T.Task\ data:taskdata |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
527 SynMenu T.Task\ 42\ edit:taskedit |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
528 SynMenu T.Tcl/Tk:tcl |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
529 SynMenu T.TealInfo:tli |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
530 SynMenu T.Telix\ Salt:tsalt |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
531 SynMenu T.Termcap/Printcap:ptcap |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
532 SynMenu T.Terminfo:terminfo |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
533 SynMenu T.TeX.TeX/LaTeX:tex |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
534 SynMenu T.TeX.plain\ TeX:plaintex |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
535 SynMenu T.TeX.ConTeXt:context |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
536 SynMenu T.TeX.TeX\ configuration:texmf |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
537 SynMenu T.TeX.Texinfo:texinfo |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
538 SynMenu T.TF\ mud\ client:tf |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
539 SynMenu T.Tidy\ configuration:tidy |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
540 SynMenu T.Tilde:tilde |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
541 SynMenu T.TPP:tpp |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
542 SynMenu T.Trasys\ input:trasys |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
543 SynMenu T.Trustees:trustees |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
544 SynMenu T.TSS.Command\ Line:tsscl |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
545 SynMenu T.TSS.Geometry:tssgm |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
546 SynMenu T.TSS.Optics:tssop |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
547 |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
548 SynMenu UV.Udev\ config:udevconf |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
549 SynMenu UV.Udev\ permissions:udevperm |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
550 SynMenu UV.Udev\ rules:udevrules |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
551 SynMenu UV.UIT/UIL:uil |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
552 SynMenu UV.UnrealScript:uc |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
553 SynMenu UV.Updatedb\.conf:updatedb |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
554 SynMenu UV.Valgrind:valgrind |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
555 SynMenu UV.Vera:vera |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
556 SynMenu UV.Verilog-AMS\ HDL:verilogams |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
557 SynMenu UV.Verilog\ HDL:verilog |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
558 SynMenu UV.Vgrindefs:vgrindefs |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
559 SynMenu UV.VHDL:vhdl |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
560 SynMenu UV.Vim.Vim\ help\ file:help |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
561 SynMenu UV.Vim.Vim\ script:vim |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
562 SynMenu UV.Vim.Viminfo\ file:viminfo |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
563 SynMenu UV.Virata\ config:virata |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
564 SynMenu UV.Visual\ Basic:vb |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
565 SynMenu UV.VOS\ CM\ macro:voscm |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
566 SynMenu UV.VRML:vrml |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
567 SynMenu UV.VSE\ JCL:vsejcl |
7 | 568 |
569 SynMenu WXYZ.WEB.CWEB:cweb | |
570 SynMenu WXYZ.WEB.WEB:web | |
571 SynMenu WXYZ.WEB.WEB\ Changes:change | |
572 SynMenu WXYZ.Webmacro:webmacro | |
573 SynMenu WXYZ.Website\ MetaLanguage:wml | |
574 SynMenu WXYZ.wDiff:wdiff | |
575 SynMenu WXYZ.Wget\ config:wget | |
576 SynMenu WXYZ.Whitespace\ (add):whitespace | |
577 SynMenu WXYZ.WildPackets\ EtherPeek\ Decoder:dcd | |
578 SynMenu WXYZ.WinBatch/Webbatch:winbatch | |
579 SynMenu WXYZ.Windows\ Scripting\ Host:wsh | |
799 | 580 SynMenu WXYZ.WSML:wsml |
7 | 581 SynMenu WXYZ.WvDial:wvdial |
582 SynMenu WXYZ.X\ Keyboard\ Extension:xkb | |
583 SynMenu WXYZ.X\ Pixmap:xpm | |
584 SynMenu WXYZ.X\ Pixmap\ (2):xpm2 | |
585 SynMenu WXYZ.X\ resources:xdefaults | |
1648 | 586 SynMenu WXYZ.XBL:xbl |
799 | 587 SynMenu WXYZ.Xinetd\.conf:xinetd |
7 | 588 SynMenu WXYZ.Xmodmap:xmodmap |
589 SynMenu WXYZ.Xmath:xmath | |
590 SynMenu WXYZ.XML:xml | |
591 SynMenu WXYZ.XML\ Schema\ (XSD):xsd | |
799 | 592 SynMenu WXYZ.XQuery:xquery |
7 | 593 SynMenu WXYZ.Xslt:xslt |
594 SynMenu WXYZ.XFree86\ Config:xf86conf | |
595 SynMenu WXYZ.YAML:yaml | |
596 SynMenu WXYZ.Yacc:yacc | |
597 | |
598 call append(s:lnum, "") | |
599 | |
600 wq |