Mercurial > vim
annotate runtime/makemenu.vim @ 17164:7927cf327396 v8.1.1581
patch 8.1.1581: shared functions for testing are disorganised
commit https://github.com/vim/vim/commit/7a39dd7f00239059ce34660611589b26126a550c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jun 23 00:50:15 2019 +0200
patch 8.1.1581: shared functions for testing are disorganised
Problem: Shared functions for testing are disorganised.
Solution: Group finctions in script files. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/4573)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 23 Jun 2019 01:00:05 +0200 |
parents | 1174611ad715 |
children | b9bc47742df6 |
rev | line source |
---|---|
7 | 1 " Script to define the syntax menu in synmenu.vim |
2 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
13963 | 3 " Last Change: 2018 May 17 |
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 | |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
69 SynMenu AB.APT\ config:aptconf |
7 | 70 SynMenu AB.Arc\ Macro\ Language:aml |
71 SynMenu AB.Arch\ inventory:arch | |
13963 | 72 SynMenu AB.Arduino:arduino |
7 | 73 SynMenu AB.ART:art |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
74 SynMenu AB.Ascii\ Doc:asciidoc |
7 | 75 SynMenu AB.ASP\ with\ VBScript:aspvbs |
76 SynMenu AB.ASP\ with\ Perl:aspperl | |
77 SynMenu AB.Assembly.680x0:asm68k | |
13963 | 78 SynMenu AB.Assembly.AVR:avra |
7 | 79 SynMenu AB.Assembly.Flat:fasm |
80 SynMenu AB.Assembly.GNU:asm | |
81 SynMenu AB.Assembly.GNU\ H-8300:asmh8300 | |
82 SynMenu AB.Assembly.Intel\ IA-64:ia64 | |
83 SynMenu AB.Assembly.Microsoft:masm | |
84 SynMenu AB.Assembly.Netwide:nasm | |
85 SynMenu AB.Assembly.PIC:pic | |
86 SynMenu AB.Assembly.Turbo:tasm | |
87 SynMenu AB.Assembly.VAX\ Macro\ Assembly:vmasm | |
88 SynMenu AB.Assembly.Z-80:z8a | |
89 SynMenu AB.Assembly.xa\ 6502\ cross\ assember:a65 | |
90 SynMenu AB.ASN\.1:asn | |
799 | 91 SynMenu AB.Asterisk\ config:asterisk |
92 SynMenu AB.Asterisk\ voicemail\ config:asteriskvm | |
7 | 93 SynMenu AB.Atlas:atlas |
13963 | 94 SynMenu AB.Autodoc:autodoc |
1186 | 95 SynMenu AB.AutoHotKey:autohotkey |
1118 | 96 SynMenu AB.AutoIt:autoit |
7 | 97 SynMenu AB.Automake:automake |
98 SynMenu AB.Avenue:ave | |
99 SynMenu AB.Awk:awk | |
100 SynMenu AB.AYacc:ayacc | |
101 | |
102 SynMenu AB.B:b | |
103 SynMenu AB.Baan:baan | |
1118 | 104 SynMenu AB.Basic.FreeBasic:freebasic |
105 SynMenu AB.Basic.IBasic:ibasic | |
106 SynMenu AB.Basic.QBasic:basic | |
107 SynMenu AB.Basic.Visual\ Basic:vb | |
108 SynMenu AB.Bazaar\ commit\ file:bzr | |
13963 | 109 SynMenu AB.Bazel:bzl |
7 | 110 SynMenu AB.BC\ calculator:bc |
111 SynMenu AB.BDF\ font:bdf | |
845 | 112 SynMenu AB.BibTeX.Bibliography\ database:bib |
113 SynMenu AB.BibTeX.Bibliography\ Style:bst | |
7 | 114 SynMenu AB.BIND.BIND\ config:named |
115 SynMenu AB.BIND.BIND\ zone:bindzone | |
116 SynMenu AB.Blank:blank | |
117 | |
118 SynMenu C.C:c | |
119 SynMenu C.C++:cpp | |
120 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
|
121 SynMenu C.Cabal\ Haskell\ build\ file:cabal |
7 | 122 SynMenu C.Calendar:calendar |
1186 | 123 SynMenu C.Cascading\ Style\ Sheets:css |
7 | 124 SynMenu C.CDL:cdl |
1186 | 125 SynMenu C.Cdrdao\ TOC:cdrtoc |
1648 | 126 SynMenu C.Cdrdao\ config:cdrdaoconf |
7 | 127 SynMenu C.Century\ Term:cterm |
128 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
|
129 SynMenu C.ChaiScript:chaiscript |
7 | 130 SynMenu C.ChangeLog:changelog |
131 SynMenu C.Cheetah\ template:cheetah | |
132 SynMenu C.CHILL:chill | |
839 | 133 SynMenu C.ChordPro:chordpro |
7 | 134 SynMenu C.Clean:clean |
135 SynMenu C.Clever:cl | |
136 SynMenu C.Clipper:clipper | |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
137 SynMenu C.Clojure:clojure |
836 | 138 SynMenu C.Cmake:cmake |
13963 | 139 SynMenu C.Cmod:cmod |
1118 | 140 SynMenu C.Cmusrc:cmusrc |
1186 | 141 SynMenu C.Cobol:cobol |
1648 | 142 SynMenu C.Coco/R:coco |
7 | 143 SynMenu C.Cold\ Fusion:cf |
1186 | 144 SynMenu C.Conary\ Recipe:conaryrecipe |
7 | 145 SynMenu C.Config.Cfg\ Config\ file:cfg |
146 SynMenu C.Config.Configure\.in:config | |
1186 | 147 SynMenu C.Config.Generic\ Config\ file:conf |
7 | 148 SynMenu C.CRM114:crm |
1186 | 149 SynMenu C.Crontab:crontab |
5146 | 150 SynMenu C.CSDL:csdl |
1186 | 151 SynMenu C.CSP:csp |
7 | 152 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
|
153 SynMenu C.Cucumber:cucumber |
1648 | 154 SynMenu C.CUDA:cuda |
7 | 155 SynMenu C.CUPL.CUPL:cupl |
156 SynMenu C.CUPL.Simulation:cuplsim | |
157 SynMenu C.CVS.commit\ file:cvs | |
158 SynMenu C.CVS.cvsrc:cvsrc | |
1186 | 159 SynMenu C.Cyn++:cynpp |
160 SynMenu C.Cynlib:cynlib | |
7 | 161 |
162 SynMenu DE.D:d | |
2488
def0e3934129
Preparations for 7.3d release.
Bram Moolenaar <bram@vim.org>
parents:
2415
diff
changeset
|
163 SynMenu DE.Datascript:datascript |
7 | 164 SynMenu DE.Debian.Debian\ ChangeLog:debchangelog |
165 SynMenu DE.Debian.Debian\ Control:debcontrol | |
13963 | 166 SynMenu DE.Debian.Debian\ Copyright:debcopyright |
815 | 167 SynMenu DE.Debian.Debian\ Sources\.list:debsources |
1648 | 168 SynMenu DE.Denyhosts:denyhosts |
7 | 169 SynMenu DE.Desktop:desktop |
799 | 170 SynMenu DE.Dict\ config:dictconf |
171 SynMenu DE.Dictd\ config:dictdconf | |
7 | 172 SynMenu DE.Diff:diff |
173 SynMenu DE.Digital\ Command\ Lang:dcl | |
174 SynMenu DE.Dircolors:dircolors | |
13963 | 175 SynMenu DE.Dirpager:dirpager |
797 | 176 SynMenu DE.Django\ template:django |
801 | 177 SynMenu DE.DNS/BIND\ zone:bindzone |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
178 SynMenu DE.Dnsmasq\ config:dnsmasq |
7 | 179 SynMenu DE.DocBook.auto-detect:docbk |
180 SynMenu DE.DocBook.SGML:docbksgml | |
181 SynMenu DE.DocBook.XML:docbkxml | |
13963 | 182 SynMenu DE.Dockerfile:dockerfile |
7 | 183 SynMenu DE.Dot:dot |
834 | 184 SynMenu DE.Doxygen.C\ with\ doxygen:c.doxygen |
185 SynMenu DE.Doxygen.C++\ with\ doxygen:cpp.doxygen | |
186 SynMenu DE.Doxygen.IDL\ with\ doxygen:idl.doxygen | |
187 SynMenu DE.Doxygen.Java\ with\ doxygen:java.doxygen | |
7013 | 188 SynMenu DE.Doxygen.DataScript\ with\ doxygen:datascript.doxygen |
7 | 189 SynMenu DE.Dracula:dracula |
190 SynMenu DE.DSSSL:dsl | |
191 SynMenu DE.DTD:dtd | |
192 SynMenu DE.DTML\ (Zope):dtml | |
1648 | 193 SynMenu DE.DTrace:dtrace |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
194 SynMenu DE.Dts/dtsi:dts |
7 | 195 SynMenu DE.Dylan.Dylan:dylan |
196 SynMenu DE.Dylan.Dylan\ interface:dylanintr | |
197 SynMenu DE.Dylan.Dylan\ lid:dylanlid | |
198 | |
199 SynMenu DE.EDIF:edif | |
200 SynMenu DE.Eiffel:eiffel | |
201 SynMenu DE.Elinks\ config:elinks | |
202 SynMenu DE.Elm\ filter\ rules:elmfilt | |
203 SynMenu DE.Embedix\ Component\ Description:ecd | |
204 SynMenu DE.ERicsson\ LANGuage:erlang | |
570 | 205 SynMenu DE.ESMTP\ rc:esmtprc |
206 SynMenu DE.ESQL-C:esqlc | |
7 | 207 SynMenu DE.Essbase\ script:csc |
570 | 208 SynMenu DE.Esterel:esterel |
7 | 209 SynMenu DE.Eterm\ config:eterm |
13963 | 210 SynMenu DE.Euphoria\ 3:euphoria3 |
211 SynMenu DE.Euphoria\ 4:euphoria4 | |
799 | 212 SynMenu DE.Eviews:eviews |
7 | 213 SynMenu DE.Exim\ conf:exim |
214 SynMenu DE.Expect:expect | |
215 SynMenu DE.Exports:exports | |
216 | |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
217 SynMenu FG.Falcon:falcon |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
218 SynMenu FG.Fantom:fan |
7 | 219 SynMenu FG.Fetchmail:fetchmail |
845 | 220 SynMenu FG.FlexWiki:flexwiki |
7 | 221 SynMenu FG.Focus\ Executable:focexec |
222 SynMenu FG.Focus\ Master:master | |
223 SynMenu FG.FORM:form | |
224 SynMenu FG.Forth:forth | |
225 SynMenu FG.Fortran:fortran | |
226 SynMenu FG.FoxPro:foxpro | |
1186 | 227 SynMenu FG.FrameScript:framescript |
7 | 228 SynMenu FG.Fstab:fstab |
229 SynMenu FG.Fvwm.Fvwm\ configuration:fvwm1 | |
230 SynMenu FG.Fvwm.Fvwm2\ configuration:fvwm2 | |
231 SynMenu FG.Fvwm.Fvwm2\ configuration\ with\ M4:fvwm2m4 | |
232 | |
233 SynMenu FG.GDB\ command\ file:gdb | |
234 SynMenu FG.GDMO:gdmo | |
235 SynMenu FG.Gedcom:gedcom | |
1648 | 236 SynMenu FG.Git.Output:git |
237 SynMenu FG.Git.Commit:gitcommit | |
238 SynMenu FG.Git.Config:gitconfig | |
239 SynMenu FG.Git.Rebase:gitrebase | |
240 SynMenu FG.Git.Send\ Email:gitsendemail | |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
241 SynMenu FG.Gitolite:gitolite |
7 | 242 SynMenu FG.Gkrellmrc:gkrellmrc |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
243 SynMenu FG.Gnash:gnash |
13963 | 244 SynMenu FG.Go:go |
245 SynMenu FG.Godoc:godoc | |
7 | 246 SynMenu FG.GP:gp |
247 SynMenu FG.GPG:gpg | |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
248 SynMenu FG.Grof:gprof |
799 | 249 SynMenu FG.Group\ file:group |
7 | 250 SynMenu FG.Grub:grub |
251 SynMenu FG.GNU\ Server\ Pages:gsp | |
252 SynMenu FG.GNUplot:gnuplot | |
253 SynMenu FG.GrADS\ scripts:grads | |
625 | 254 SynMenu FG.Gretl:gretl |
7 | 255 SynMenu FG.Groff:groff |
625 | 256 SynMenu FG.Groovy:groovy |
7 | 257 SynMenu FG.GTKrc:gtkrc |
258 | |
1668 | 259 SynMenu HIJK.Haml:haml |
1118 | 260 SynMenu HIJK.Hamster:hamster |
7 | 261 SynMenu HIJK.Haskell.Haskell:haskell |
262 SynMenu HIJK.Haskell.Haskell-c2hs:chaskell | |
263 SynMenu HIJK.Haskell.Haskell-literate:lhaskell | |
1648 | 264 SynMenu HIJK.HASTE:haste |
1668 | 265 SynMenu HIJK.HASTE\ preproc:hastepreproc |
7 | 266 SynMenu HIJK.Hercules:hercules |
267 SynMenu HIJK.Hex\ dump.XXD:xxd | |
268 SynMenu HIJK.Hex\ dump.Intel\ MCS51:hex | |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
269 SynMenu HIJK.Hg\ commit:hgcommit |
7 | 270 SynMenu HIJK.HTML.HTML:html |
271 SynMenu HIJK.HTML.HTML\ with\ M4:htmlm4 | |
570 | 272 SynMenu HIJK.HTML.HTML\ with\ Ruby\ (eRuby):eruby |
7 | 273 SynMenu HIJK.HTML.Cheetah\ HTML\ template:htmlcheetah |
797 | 274 SynMenu HIJK.HTML.Django\ HTML\ template:htmldjango |
7 | 275 SynMenu HIJK.HTML.HTML/OS:htmlos |
276 SynMenu HIJK.HTML.XHTML:xhtml | |
1648 | 277 SynMenu HIJK.Host\.conf:hostconf |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
278 SynMenu HIJK.Hosts\ access:hostsaccess |
7 | 279 SynMenu HIJK.Hyper\ Builder:hb |
280 SynMenu HIJK.Icewm\ menu:icemenu | |
281 SynMenu HIJK.Icon:icon | |
282 SynMenu HIJK.IDL\Generic\ IDL:idl | |
283 SynMenu HIJK.IDL\Microsoft\ IDL:msidl | |
284 SynMenu HIJK.Indent\ profile:indent | |
285 SynMenu HIJK.Inform:inform | |
286 SynMenu HIJK.Informix\ 4GL:fgl | |
1118 | 287 SynMenu HIJK.Initng:initng |
7 | 288 SynMenu HIJK.Inittab:inittab |
289 SynMenu HIJK.Inno\ setup:iss | |
5146 | 290 SynMenu HIJK.Innovation\ Data\ Processing.Upstream\ dat:upstreamdat |
291 SynMenu HIJK.Innovation\ Data\ Processing.Upstream\ log:upstreamlog | |
13963 | 292 SynMenu HIJK.Innovation\ Data\ Processing.Upstream\ rpt:upstreamrpt |
5146 | 293 SynMenu HIJK.Innovation\ Data\ Processing.Upstream\ Install\ log:upstreaminstalllog |
294 SynMenu HIJK.Innovation\ Data\ Processing.Usserver\ log:usserverlog | |
295 SynMenu HIJK.Innovation\ Data\ Processing.USW2KAgt\ log:usw2kagtlog | |
7 | 296 SynMenu HIJK.InstallShield\ script:ishd |
297 SynMenu HIJK.Interactive\ Data\ Lang:idlang | |
298 SynMenu HIJK.IPfilter:ipfilter | |
13963 | 299 SynMenu HIJK.J:j |
7 | 300 SynMenu HIJK.JAL:jal |
301 SynMenu HIJK.JAM:jam | |
302 SynMenu HIJK.Jargon:jargon | |
303 SynMenu HIJK.Java.Java:java | |
304 SynMenu HIJK.Java.JavaCC:javacc | |
305 SynMenu HIJK.Java.Java\ Server\ Pages:jsp | |
306 SynMenu HIJK.Java.Java\ Properties:jproperties | |
307 SynMenu HIJK.JavaScript:javascript | |
308 SynMenu HIJK.Jess:jess | |
309 SynMenu HIJK.Jgraph:jgraph | |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
310 SynMenu HIJK.Jovial:jovial |
13963 | 311 SynMenu HIJK.JSON:json |
826 | 312 SynMenu HIJK.Kconfig:kconfig |
7 | 313 SynMenu HIJK.KDE\ script:kscript |
314 SynMenu HIJK.Kimwitu++:kwt | |
13963 | 315 SynMenu HIJK.Kivy:kivy |
7 | 316 SynMenu HIJK.KixTart:kix |
317 | |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
318 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
|
319 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
|
320 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
|
321 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
|
322 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
|
323 SynMenu L.LDAP.Configuration:ldapconf |
13963 | 324 SynMenu L.Less:less |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
325 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
|
326 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
|
327 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
|
328 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
|
329 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
|
330 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
|
331 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
|
332 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
|
333 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
|
334 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
|
335 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
|
336 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
|
337 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
|
338 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
|
339 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
|
340 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
|
341 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
|
342 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
|
343 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
|
344 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
|
345 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
|
346 SynMenu L.Lynx\ config:lynx |
7 | 347 |
2358
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.M4:m4 |
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.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
|
350 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
|
351 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
|
352 SynMenu M.Mailcap:mailcap |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
353 SynMenu M.Mallard:mallard |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
354 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
|
355 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
|
356 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
|
357 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
|
358 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
|
359 SynMenu M.Markdown:markdown |
13963 | 360 SynMenu M.Markdown\ with\ R\ statements:rmd |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
361 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
|
362 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
|
363 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
|
364 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
|
365 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
|
366 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
|
367 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
|
368 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
|
369 SynMenu M.MGL:mgl |
13963 | 370 SynMenu M.MIX:mix |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
371 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
|
372 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
|
373 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
|
374 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
|
375 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
|
376 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
|
377 SynMenu M.Monk:monk |
13963 | 378 SynMenu M.Motorola\ S-Record:srec |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
379 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
|
380 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
|
381 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
|
382 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
|
383 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
|
384 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
|
385 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
|
386 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
|
387 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
|
388 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
|
389 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
|
390 SynMenu M.MuPAD:mupad |
13963 | 391 SynMenu M.Murphi:murphi |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
392 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
|
393 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
|
394 |
13963 | 395 SynMenu NO.N1QL:n1ql |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
396 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
|
397 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
|
398 SynMenu NO.Natural:natural |
13963 | 399 SynMenu NO.NeoMutt\ setup\ files:neomuttrc |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
400 SynMenu NO.Netrc:netrc |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
401 SynMenu NO.Ninja:ninja |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
402 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
|
403 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
|
404 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
|
405 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
|
406 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
|
407 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
|
408 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
|
409 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
|
410 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
|
411 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
|
412 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
|
413 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
|
414 SynMenu NO.Oracle\ config:ora |
7 | 415 |
799 | 416 SynMenu PQ.Packet\ filter\ conf:pf |
7 | 417 SynMenu PQ.Palm\ resource\ compiler:pilrc |
799 | 418 SynMenu PQ.Pam\ config:pamconf |
7 | 419 SynMenu PQ.PApp:papp |
420 SynMenu PQ.Pascal:pascal | |
799 | 421 SynMenu PQ.Password\ file:passwd |
7 | 422 SynMenu PQ.PCCTS:pccts |
1648 | 423 SynMenu PQ.PDF:pdf |
7 | 424 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
|
425 SynMenu PQ.Perl.Perl\ 6:perl6 |
7 | 426 SynMenu PQ.Perl.Perl\ POD:pod |
427 SynMenu PQ.Perl.Perl\ XS:xs | |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
428 SynMenu PQ.Perl.Template\ toolkit:tt2 |
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
429 SynMenu PQ.Perl.Template\ toolkit\ Html:tt2html |
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
430 SynMenu PQ.Perl.Template\ toolkit\ JS:tt2js |
7 | 431 SynMenu PQ.PHP.PHP\ 3-4:php |
432 SynMenu PQ.PHP.Phtml\ (PHP\ 2):phtml | |
433 SynMenu PQ.Pike:pike | |
434 SynMenu PQ.Pine\ RC:pine | |
435 SynMenu PQ.Pinfo\ RC:pinfo | |
436 SynMenu PQ.PL/M:plm | |
570 | 437 SynMenu PQ.PL/SQL:plsql |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
438 SynMenu PQ.Pli:pli |
7 | 439 SynMenu PQ.PLP:plp |
440 SynMenu PQ.PO\ (GNU\ gettext):po | |
441 SynMenu PQ.Postfix\ main\ config:pfmain | |
442 SynMenu PQ.PostScript.PostScript:postscr | |
443 SynMenu PQ.PostScript.PostScript\ Printer\ Description:ppd | |
444 SynMenu PQ.Povray.Povray\ scene\ descr:pov | |
445 SynMenu PQ.Povray.Povray\ configuration:povini | |
1648 | 446 SynMenu PQ.PPWizard:ppwiz |
570 | 447 SynMenu PQ.Prescribe\ (Kyocera):prescribe |
7 | 448 SynMenu PQ.Printcap:pcap |
1118 | 449 SynMenu PQ.Privoxy:privoxy |
7 | 450 SynMenu PQ.Procmail:procmail |
451 SynMenu PQ.Product\ Spec\ File:psf | |
452 SynMenu PQ.Progress:progress | |
453 SynMenu PQ.Prolog:prolog | |
1648 | 454 SynMenu PQ.ProMeLa:promela |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
455 SynMenu PQ.Proto:proto |
799 | 456 SynMenu PQ.Protocols:protocols |
7 | 457 SynMenu PQ.Purify\ log:purifylog |
458 SynMenu PQ.Pyrex:pyrex | |
459 SynMenu PQ.Python:python | |
460 SynMenu PQ.Quake:quake | |
461 SynMenu PQ.Quickfix\ window:qf | |
462 | |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
463 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
|
464 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
|
465 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
|
466 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
|
467 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
|
468 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
|
469 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
|
470 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
|
471 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
|
472 SynMenu R.Rebol:rebol |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
473 SynMenu R.ReDIF:redif |
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
474 SynMenu R.Relax\ NG:rng |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
475 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
|
476 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
|
477 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
|
478 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
|
479 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
|
480 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
|
481 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
|
482 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
|
483 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
|
484 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
|
485 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
|
486 SynMenu R.ReStructuredText:rst |
13963 | 487 SynMenu M.ReStructuredText\ with\ R\ statements:rrst |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
488 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
|
489 SynMenu R.Ruby:ruby |
13963 | 490 SynMenu R.Rust:rust |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
491 |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
492 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
|
493 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
|
494 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
|
495 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
|
496 SynMenu S-Sm.Sather:sather |
13963 | 497 SynMenu S-Sm.Sbt:sbt |
498 SynMenu S-Sm.Scala:scala | |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
499 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
|
500 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
|
501 SynMenu S-Sm.Screen\ RC:screen |
2415 | 502 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
|
503 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
|
504 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
|
505 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
|
506 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
|
507 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
|
508 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
|
509 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
|
510 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
|
511 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
|
512 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
|
513 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
|
514 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
|
515 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
|
516 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
|
517 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
|
518 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
|
519 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
|
520 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
|
521 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
|
522 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
|
523 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
|
524 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
|
525 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
|
526 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
|
527 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
|
528 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
|
529 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
|
530 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
|
531 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
|
532 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
|
533 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
|
534 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
|
535 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
|
536 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
|
537 SynMenu S-Sm.SMITH:smith |
7 | 538 |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
539 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
|
540 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
|
541 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
|
542 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
|
543 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
|
544 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
|
545 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
|
546 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
|
547 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
|
548 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
|
549 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
|
550 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
|
551 SynMenu Sn-Sy.Squid\ config:squid |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
552 SynMenu Sn-Sy.SQL.SAP\ HANA:sqlhana |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
553 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
|
554 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
|
555 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
|
556 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
|
557 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
|
558 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
|
559 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
|
560 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
|
561 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
|
562 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
|
563 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
|
564 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
|
565 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
|
566 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
|
567 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
|
568 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
|
569 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
|
570 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
|
571 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
|
572 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
|
573 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
|
574 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
|
575 SynMenu Sn-Sy.Sysctl\.conf:sysctl |
13963 | 576 SynMenu Sn-Sy.Systemd:systemd |
577 SynMenu Sn-Sy.SystemVerilog:systemverilog | |
7 | 578 |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
579 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
|
580 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
|
581 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
|
582 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
|
583 SynMenu T.TAK.TAK\ output:takout |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
584 SynMenu T.Tar\ listing:tar |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
585 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
|
586 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
|
587 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
|
588 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
|
589 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
|
590 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
|
591 SynMenu T.Terminfo:terminfo |
13963 | 592 SynMenu T.Tera\ Term:teraterm |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
593 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
|
594 SynMenu T.TeX.plain\ TeX:plaintex |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
595 SynMenu T.TeX.Initex:initex |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
596 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
|
597 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
|
598 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
|
599 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
|
600 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
|
601 SynMenu T.Tilde:tilde |
13963 | 602 SynMenu T.Tmux\ configuration:tmux |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
603 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
|
604 SynMenu T.Trasys\ input:trasys |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
605 SynMenu T.Treetop:treetop |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
606 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
|
607 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
|
608 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
|
609 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
|
610 |
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
611 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
|
612 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
|
613 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
|
614 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
|
615 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
|
616 SynMenu UV.Updatedb\.conf:updatedb |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
617 SynMenu UV.Upstart:upstart |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
618 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
|
619 SynMenu UV.Vera:vera |
13963 | 620 SynMenu UV.Verbose\ TAP\ Output:tap |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
621 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
|
622 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
|
623 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
|
624 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
|
625 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
|
626 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
|
627 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
|
628 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
|
629 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
|
630 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
|
631 SynMenu UV.VRML:vrml |
13963 | 632 SynMenu UV.Vroom:vroom |
2358
72a3c2766396
Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents:
1668
diff
changeset
|
633 SynMenu UV.VSE\ JCL:vsejcl |
7 | 634 |
635 SynMenu WXYZ.WEB.CWEB:cweb | |
636 SynMenu WXYZ.WEB.WEB:web | |
637 SynMenu WXYZ.WEB.WEB\ Changes:change | |
638 SynMenu WXYZ.Webmacro:webmacro | |
639 SynMenu WXYZ.Website\ MetaLanguage:wml | |
640 SynMenu WXYZ.wDiff:wdiff | |
641 SynMenu WXYZ.Wget\ config:wget | |
642 SynMenu WXYZ.Whitespace\ (add):whitespace | |
643 SynMenu WXYZ.WildPackets\ EtherPeek\ Decoder:dcd | |
644 SynMenu WXYZ.WinBatch/Webbatch:winbatch | |
645 SynMenu WXYZ.Windows\ Scripting\ Host:wsh | |
799 | 646 SynMenu WXYZ.WSML:wsml |
7 | 647 SynMenu WXYZ.WvDial:wvdial |
648 SynMenu WXYZ.X\ Keyboard\ Extension:xkb | |
649 SynMenu WXYZ.X\ Pixmap:xpm | |
650 SynMenu WXYZ.X\ Pixmap\ (2):xpm2 | |
651 SynMenu WXYZ.X\ resources:xdefaults | |
1648 | 652 SynMenu WXYZ.XBL:xbl |
799 | 653 SynMenu WXYZ.Xinetd\.conf:xinetd |
7 | 654 SynMenu WXYZ.Xmodmap:xmodmap |
655 SynMenu WXYZ.Xmath:xmath | |
656 SynMenu WXYZ.XML:xml | |
657 SynMenu WXYZ.XML\ Schema\ (XSD):xsd | |
799 | 658 SynMenu WXYZ.XQuery:xquery |
7 | 659 SynMenu WXYZ.Xslt:xslt |
660 SynMenu WXYZ.XFree86\ Config:xf86conf | |
661 SynMenu WXYZ.YAML:yaml | |
662 SynMenu WXYZ.Yacc:yacc | |
5247
09c88160095d
Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents:
5146
diff
changeset
|
663 SynMenu WXYZ.Zimbu:zimbu |
7 | 664 |
665 call append(s:lnum, "") | |
666 | |
667 wq |