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