annotate runtime/makemenu.vim @ 33767:4913b4f5a133 v9.0.2104

patch 9.0.2104: wast filetype should be replaced by wat filetype Commit: https://github.com/vim/vim/commit/bc8f79d36a456054ed29f46585830af6d71f57c8 Author: rhysd <lin90162@yahoo.co.jp> Date: Tue Nov 14 16:46:07 2023 +0100 patch 9.0.2104: wast filetype should be replaced by wat filetype Problem: wast filetype should be replaced by wat filetype Solution: start using the official wat filetype name runtime: rename `wast` filetype to `wat` (Wasm text format) The problem is the name of the current filetype wast. When the plugin was initially created, the file extension for Wasm text format was not fixed and .wast was more popular. However, recently .wat became the official file extension for WebAssembly text (WAT) format and .wast is now a file extension for the unofficial WAST format, which is a superset of .wat for the convenience to describe the Wasm specification conformance tests. https://webassembly.js.org/docs/contrib-wat-vs-wast.html However for now, let's keep using the `wat` filetype even for the .wast extension, so that we at least do not lose the filetype settings and syntax highlighting. This can be adjusted later, if it turns out to have a separate need for. closes: #13533 Signed-off-by: rhysd <lin90162@yahoo.co.jp> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Tue, 14 Nov 2023 17:15:03 +0100
parents d6dde6229b36
children ff27442e7851
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27538
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
1 vim9script
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2
27538
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
3 # Script to define the syntax menu in synmenu.vim
32770
4027cefc2aab Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents: 29312
diff changeset
4 # Maintainer: The Vim Project <https://github.com/vim/vim>
4027cefc2aab Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents: 29312
diff changeset
5 # Last Change: 2023 Aug 10
4027cefc2aab Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents: 29312
diff changeset
6 # Former Maintainer: Bram Moolenaar <Bram@vim.org>
27538
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
7
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
8 # This is used by "make menu" in the src directory.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 edit <sfile>:p:h/synmenu.vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10
27538
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
11 :/The Start Of The Syntax Menu/+1,/The End Of The Syntax Menu/-1d
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
12 var lnum = line(".") - 1
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
13 call append(lnum, "")
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
14 lnum += 1
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15
27538
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
16 # Use the SynMenu command and function to define all menu entries
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
17 command! -nargs=* SynMenu call Syn(<q-args>)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18
27538
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
19 var cur_menu_name = ""
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
20 var cur_menu_nr = 0
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
21 var cur_menu_item = 0
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
22 var cur_menu_char = ""
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23
27538
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
24 def Syn(arg: string)
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
25 # isolate menu name: until the first dot
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
26 var i = match(arg, '\.')
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
27 var menu_name = strpart(arg, 0, i)
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
28 var r = strpart(arg, i + 1, 999)
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
29 # isolate submenu name: until the colon
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
30 i = match(r, ":")
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
31 var submenu_name = strpart(r, 0, i)
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
32 # after the colon is the syntax name
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
33 var syntax_name = strpart(r, i + 1, 999)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34
27538
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
35 if cur_menu_name != menu_name
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
36 cur_menu_name = menu_name
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
37 cur_menu_nr += 10
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
38 cur_menu_item = 100
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
39 cur_menu_char = submenu_name[0]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40 else
27538
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
41 # When starting a new letter, insert a menu separator.
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
42 var c = submenu_name[0]
29312
2715448db31c patch 8.2.5172: "make menu" still uses legacy script
Bram Moolenaar <Bram@vim.org>
parents: 27538
diff changeset
43 if c != cur_menu_char
2715448db31c patch 8.2.5172: "make menu" still uses legacy script
Bram Moolenaar <Bram@vim.org>
parents: 27538
diff changeset
44 exe 'an 50.' .. cur_menu_nr .. '.' .. cur_menu_item .. ' &Syntax.' .. menu_name .. ".-" .. c .. '- <nul>'
27538
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
45 cur_menu_item += 10
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
46 cur_menu_char = c
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
48 endif
29312
2715448db31c patch 8.2.5172: "make menu" still uses legacy script
Bram Moolenaar <Bram@vim.org>
parents: 27538
diff changeset
49 append(lnum, 'an 50.' .. cur_menu_nr .. '.' .. cur_menu_item .. ' &Syntax.' .. menu_name .. "." .. submenu_name .. ' :cal SetSyn("' .. syntax_name .. '")<CR>')
27538
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
50 cur_menu_item += 10
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
51 lnum += 1
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
52 enddef
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
53
799
6beb2c667935 updated for version 7.0b
vimboss
parents: 797
diff changeset
54 SynMenu AB.A2ps\ config:a2ps
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
55 SynMenu AB.Aap:aap
22
cc049b00ee70 updated for version 7.0014
vimboss
parents: 7
diff changeset
56 SynMenu AB.ABAP/4:abap
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
57 SynMenu AB.Abaqus:abaqus
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
58 SynMenu AB.ABC\ music\ notation:abc
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59 SynMenu AB.ABEL:abel
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60 SynMenu AB.AceDB\ model:acedb
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
61 SynMenu AB.Ada:ada
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
62 SynMenu AB.AfLex:aflex
24
8ff7fd162d3c updated for version 7.0016
vimboss
parents: 22
diff changeset
63 SynMenu AB.ALSA\ config:alsaconf
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
64 SynMenu AB.Altera\ AHDL:ahdl
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
65 SynMenu AB.Amiga\ DOS:amiga
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
66 SynMenu AB.AMPL:ampl
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 SynMenu AB.Ant\ build\ file:ant
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 SynMenu AB.ANTLR:antlr
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 SynMenu AB.Apache\ config:apache
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
70 SynMenu AB.Apache-style\ config:apachestyle
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71 SynMenu AB.Applix\ ELF:elf
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
72 SynMenu AB.APT\ config:aptconf
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73 SynMenu AB.Arc\ Macro\ Language:aml
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74 SynMenu AB.Arch\ inventory:arch
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
75 SynMenu AB.Arduino:arduino
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
76 SynMenu AB.ART:art
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
77 SynMenu AB.Ascii\ Doc:asciidoc
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 SynMenu AB.ASP\ with\ VBScript:aspvbs
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79 SynMenu AB.ASP\ with\ Perl:aspperl
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80 SynMenu AB.Assembly.680x0:asm68k
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
81 SynMenu AB.Assembly.AVR:avra
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82 SynMenu AB.Assembly.Flat:fasm
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 SynMenu AB.Assembly.GNU:asm
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84 SynMenu AB.Assembly.GNU\ H-8300:asmh8300
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
85 SynMenu AB.Assembly.Intel\ IA-64:ia64
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86 SynMenu AB.Assembly.Microsoft:masm
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
87 SynMenu AB.Assembly.Netwide:nasm
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88 SynMenu AB.Assembly.PIC:pic
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
89 SynMenu AB.Assembly.Turbo:tasm
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 SynMenu AB.Assembly.VAX\ Macro\ Assembly:vmasm
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91 SynMenu AB.Assembly.Z-80:z8a
33577
d6dde6229b36 runtime: Fix more typos (#13354)
Christian Brabandt <cb@256bit.org>
parents: 33114
diff changeset
92 SynMenu AB.Assembly.xa\ 6502\ cross\ assembler:a65
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93 SynMenu AB.ASN\.1:asn
799
6beb2c667935 updated for version 7.0b
vimboss
parents: 797
diff changeset
94 SynMenu AB.Asterisk\ config:asterisk
6beb2c667935 updated for version 7.0b
vimboss
parents: 797
diff changeset
95 SynMenu AB.Asterisk\ voicemail\ config:asteriskvm
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96 SynMenu AB.Atlas:atlas
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
97 SynMenu AB.Autodoc:autodoc
1186
2de44d8f2cf1 updated for version 7.1b
vimboss
parents: 1118
diff changeset
98 SynMenu AB.AutoHotKey:autohotkey
1118
2b8ff9e3c520 updated for version 7.1a
vimboss
parents: 845
diff changeset
99 SynMenu AB.AutoIt:autoit
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
100 SynMenu AB.Automake:automake
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
101 SynMenu AB.Avenue:ave
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
102 SynMenu AB.Awk:awk
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
103 SynMenu AB.AYacc:ayacc
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
104
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
105 SynMenu AB.B:b
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106 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
107 SynMenu AB.Bash:bash
1118
2b8ff9e3c520 updated for version 7.1a
vimboss
parents: 845
diff changeset
108 SynMenu AB.Basic.FreeBasic:freebasic
2b8ff9e3c520 updated for version 7.1a
vimboss
parents: 845
diff changeset
109 SynMenu AB.Basic.IBasic:ibasic
2b8ff9e3c520 updated for version 7.1a
vimboss
parents: 845
diff changeset
110 SynMenu AB.Basic.QBasic:basic
2b8ff9e3c520 updated for version 7.1a
vimboss
parents: 845
diff changeset
111 SynMenu AB.Basic.Visual\ Basic:vb
2b8ff9e3c520 updated for version 7.1a
vimboss
parents: 845
diff changeset
112 SynMenu AB.Bazaar\ commit\ file:bzr
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
113 SynMenu AB.Bazel:bzl
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
114 SynMenu AB.BC\ calculator:bc
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
115 SynMenu AB.BDF\ font:bdf
845
0fe7765dcb8e updated for version 7.0f03
vimboss
parents: 839
diff changeset
116 SynMenu AB.BibTeX.Bibliography\ database:bib
0fe7765dcb8e updated for version 7.0f03
vimboss
parents: 839
diff changeset
117 SynMenu AB.BibTeX.Bibliography\ Style:bst
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
118 SynMenu AB.BIND.BIND\ config:named
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119 SynMenu AB.BIND.BIND\ zone:bindzone
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120 SynMenu AB.Blank:blank
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
121
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
122 SynMenu C.C:c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
123 SynMenu C.C++:cpp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
124 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
125 SynMenu C.Cabal\ Haskell\ build\ file:cabal
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
126 SynMenu C.Calendar:calendar
1186
2de44d8f2cf1 updated for version 7.1b
vimboss
parents: 1118
diff changeset
127 SynMenu C.Cascading\ Style\ Sheets:css
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
128 SynMenu C.CDL:cdl
1186
2de44d8f2cf1 updated for version 7.1b
vimboss
parents: 1118
diff changeset
129 SynMenu C.Cdrdao\ TOC:cdrtoc
1648
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
130 SynMenu C.Cdrdao\ config:cdrdaoconf
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
131 SynMenu C.Century\ Term:cterm
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
132 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
133 SynMenu C.ChaiScript:chaiscript
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
134 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
135 SynMenu C.CHILL:chill
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
136 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
137 SynMenu C.Chicken:chicken
839
1f3b1021f002 updated for version 7.0e05
vimboss
parents: 836
diff changeset
138 SynMenu C.ChordPro:chordpro
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
139 SynMenu C.Clean:clean
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
140 SynMenu C.Clever:cl
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
141 SynMenu C.Clipper:clipper
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
142 SynMenu C.Clojure:clojure
836
5a7843c57316 updated for version 7.0e02
vimboss
parents: 834
diff changeset
143 SynMenu C.Cmake:cmake
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
144 SynMenu C.Cmod:cmod
1118
2b8ff9e3c520 updated for version 7.1a
vimboss
parents: 845
diff changeset
145 SynMenu C.Cmusrc:cmusrc
1186
2de44d8f2cf1 updated for version 7.1b
vimboss
parents: 1118
diff changeset
146 SynMenu C.Cobol:cobol
1648
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
147 SynMenu C.Coco/R:coco
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
148 SynMenu C.Cold\ Fusion:cf
1186
2de44d8f2cf1 updated for version 7.1b
vimboss
parents: 1118
diff changeset
149 SynMenu C.Conary\ Recipe:conaryrecipe
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
150 SynMenu C.Config.Cfg\ Config\ file:cfg
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
151 SynMenu C.Config.Configure\.in:config
1186
2de44d8f2cf1 updated for version 7.1b
vimboss
parents: 1118
diff changeset
152 SynMenu C.Config.Generic\ Config\ file:conf
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
153 SynMenu C.CRM114:crm
1186
2de44d8f2cf1 updated for version 7.1b
vimboss
parents: 1118
diff changeset
154 SynMenu C.Crontab:crontab
5146
6ec6b7ff2d43 Vim 7.4a BETA release.
Bram Moolenaar <bram@vim.org>
parents: 2488
diff changeset
155 SynMenu C.CSDL:csdl
1186
2de44d8f2cf1 updated for version 7.1b
vimboss
parents: 1118
diff changeset
156 SynMenu C.CSP:csp
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
157 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
158 SynMenu C.Cucumber:cucumber
1648
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
159 SynMenu C.CUDA:cuda
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160 SynMenu C.CUPL.CUPL:cupl
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
161 SynMenu C.CUPL.Simulation:cuplsim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
162 SynMenu C.CVS.commit\ file:cvs
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
163 SynMenu C.CVS.cvsrc:cvsrc
1186
2de44d8f2cf1 updated for version 7.1b
vimboss
parents: 1118
diff changeset
164 SynMenu C.Cyn++:cynpp
2de44d8f2cf1 updated for version 7.1b
vimboss
parents: 1118
diff changeset
165 SynMenu C.Cynlib:cynlib
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
166
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
167 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
168 SynMenu DE.Dart:dart
2488
def0e3934129 Preparations for 7.3d release.
Bram Moolenaar <bram@vim.org>
parents: 2415
diff changeset
169 SynMenu DE.Datascript:datascript
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
170 SynMenu DE.Debian.Debian\ ChangeLog:debchangelog
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
171 SynMenu DE.Debian.Debian\ Control:debcontrol
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
172 SynMenu DE.Debian.Debian\ Copyright:debcopyright
815
c68b7b2b9e07 updated for version 7.0c02
vimboss
parents: 809
diff changeset
173 SynMenu DE.Debian.Debian\ Sources\.list:debsources
1648
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
174 SynMenu DE.Denyhosts:denyhosts
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175 SynMenu DE.Desktop:desktop
799
6beb2c667935 updated for version 7.0b
vimboss
parents: 797
diff changeset
176 SynMenu DE.Dict\ config:dictconf
6beb2c667935 updated for version 7.0b
vimboss
parents: 797
diff changeset
177 SynMenu DE.Dictd\ config:dictdconf
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
178 SynMenu DE.Diff:diff
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
179 SynMenu DE.Digital\ Command\ Lang:dcl
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
180 SynMenu DE.Dircolors:dircolors
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
181 SynMenu DE.Dirpager:dirpager
797
a1a08851eac8 updated for version 7.0232
vimboss
parents: 625
diff changeset
182 SynMenu DE.Django\ template:django
801
67fa3b60422d updated for version 7.0b01
vimboss
parents: 799
diff changeset
183 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
184 SynMenu DE.Dnsmasq\ config:dnsmasq
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
185 SynMenu DE.DocBook.auto-detect:docbk
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
186 SynMenu DE.DocBook.SGML:docbksgml
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
187 SynMenu DE.DocBook.XML:docbkxml
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
188 SynMenu DE.Dockerfile:dockerfile
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 SynMenu DE.Dot:dot
834
5117153003bd updated for version 7.0e
vimboss
parents: 830
diff changeset
190 SynMenu DE.Doxygen.C\ with\ doxygen:c.doxygen
5117153003bd updated for version 7.0e
vimboss
parents: 830
diff changeset
191 SynMenu DE.Doxygen.C++\ with\ doxygen:cpp.doxygen
5117153003bd updated for version 7.0e
vimboss
parents: 830
diff changeset
192 SynMenu DE.Doxygen.IDL\ with\ doxygen:idl.doxygen
5117153003bd updated for version 7.0e
vimboss
parents: 830
diff changeset
193 SynMenu DE.Doxygen.Java\ with\ doxygen:java.doxygen
7013
349e6c01f35d Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5247
diff changeset
194 SynMenu DE.Doxygen.DataScript\ with\ doxygen:datascript.doxygen
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
195 SynMenu DE.Dracula:dracula
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
196 SynMenu DE.DSSSL:dsl
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
197 SynMenu DE.DTD:dtd
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
198 SynMenu DE.DTML\ (Zope):dtml
1648
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
199 SynMenu DE.DTrace:dtrace
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
200 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
201 SynMenu DE.Dune:dune
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
202 SynMenu DE.Dylan.Dylan:dylan
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203 SynMenu DE.Dylan.Dylan\ interface:dylanintr
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204 SynMenu DE.Dylan.Dylan\ lid:dylanlid
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
205
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
206 SynMenu DE.EDIF:edif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
207 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
208 SynMenu DE.Eight:8th
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209 SynMenu DE.Elinks\ config:elinks
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210 SynMenu DE.Elm\ filter\ rules:elmfilt
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211 SynMenu DE.Embedix\ Component\ Description:ecd
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
212 SynMenu DE.ERicsson\ LANGuage:erlang
570
27d1ec742f17 updated for version 7.0162
vimboss
parents: 39
diff changeset
213 SynMenu DE.ESMTP\ rc:esmtprc
27d1ec742f17 updated for version 7.0162
vimboss
parents: 39
diff changeset
214 SynMenu DE.ESQL-C:esqlc
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215 SynMenu DE.Essbase\ script:csc
570
27d1ec742f17 updated for version 7.0162
vimboss
parents: 39
diff changeset
216 SynMenu DE.Esterel:esterel
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
217 SynMenu DE.Eterm\ config:eterm
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
218 SynMenu DE.Euphoria\ 3:euphoria3
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
219 SynMenu DE.Euphoria\ 4:euphoria4
799
6beb2c667935 updated for version 7.0b
vimboss
parents: 797
diff changeset
220 SynMenu DE.Eviews:eviews
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
221 SynMenu DE.Exim\ conf:exim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222 SynMenu DE.Expect:expect
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
223 SynMenu DE.Exports:exports
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
224
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
225 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
226 SynMenu FG.Fantom:fan
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
227 SynMenu FG.Fetchmail:fetchmail
845
0fe7765dcb8e updated for version 7.0f03
vimboss
parents: 839
diff changeset
228 SynMenu FG.FlexWiki:flexwiki
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
229 SynMenu FG.Focus\ Executable:focexec
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
230 SynMenu FG.Focus\ Master:master
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
231 SynMenu FG.FORM:form
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
232 SynMenu FG.Forth:forth
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
233 SynMenu FG.Fortran:fortran
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
234 SynMenu FG.FoxPro:foxpro
1186
2de44d8f2cf1 updated for version 7.1b
vimboss
parents: 1118
diff changeset
235 SynMenu FG.FrameScript:framescript
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
236 SynMenu FG.Fstab:fstab
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
237 SynMenu FG.Fvwm.Fvwm\ configuration:fvwm1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
238 SynMenu FG.Fvwm.Fvwm2\ configuration:fvwm2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
239 SynMenu FG.Fvwm.Fvwm2\ configuration\ with\ M4:fvwm2m4
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
240
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
241 SynMenu FG.GDB\ command\ file:gdb
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
242 SynMenu FG.GDMO:gdmo
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
243 SynMenu FG.Gedcom:gedcom
1648
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
244 SynMenu FG.Git.Output:git
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
245 SynMenu FG.Git.Commit:gitcommit
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
246 SynMenu FG.Git.Config:gitconfig
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
247 SynMenu FG.Git.Rebase:gitrebase
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
248 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
249 SynMenu FG.Gitolite:gitolite
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
250 SynMenu FG.Gkrellmrc:gkrellmrc
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
251 SynMenu FG.Gnash:gnash
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
252 SynMenu FG.Go:go
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
253 SynMenu FG.Godoc:godoc
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
254 SynMenu FG.GP:gp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
255 SynMenu FG.GPG:gpg
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
256 SynMenu FG.Grof:gprof
799
6beb2c667935 updated for version 7.0b
vimboss
parents: 797
diff changeset
257 SynMenu FG.Group\ file:group
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
258 SynMenu FG.Grub:grub
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
259 SynMenu FG.GNU\ Server\ Pages:gsp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
260 SynMenu FG.GNUplot:gnuplot
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
261 SynMenu FG.GrADS\ scripts:grads
625
81fe2ccc1207 updated for version 7.0179
vimboss
parents: 570
diff changeset
262 SynMenu FG.Gretl:gretl
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
263 SynMenu FG.Groff:groff
625
81fe2ccc1207 updated for version 7.0179
vimboss
parents: 570
diff changeset
264 SynMenu FG.Groovy:groovy
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
265 SynMenu FG.GTKrc:gtkrc
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
266
1668
0b796e045c42 updated for version 7.2b-000
vimboss
parents: 1648
diff changeset
267 SynMenu HIJK.Haml:haml
1118
2b8ff9e3c520 updated for version 7.1a
vimboss
parents: 845
diff changeset
268 SynMenu HIJK.Hamster:hamster
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
269 SynMenu HIJK.Haskell.Haskell:haskell
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
270 SynMenu HIJK.Haskell.Haskell-c2hs:chaskell
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
271 SynMenu HIJK.Haskell.Haskell-literate:lhaskell
1648
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
272 SynMenu HIJK.HASTE:haste
1668
0b796e045c42 updated for version 7.2b-000
vimboss
parents: 1648
diff changeset
273 SynMenu HIJK.HASTE\ preproc:hastepreproc
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
274 SynMenu HIJK.Hercules:hercules
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
275 SynMenu HIJK.Hex\ dump.XXD:xxd
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
276 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
277 SynMenu HIJK.Hg\ commit:hgcommit
17758
f2c2f9126a82 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 17372
diff changeset
278 SynMenu HIJK.Hollywood:hollywood
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
279 SynMenu HIJK.HTML.HTML:html
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
280 SynMenu HIJK.HTML.HTML\ with\ M4:htmlm4
570
27d1ec742f17 updated for version 7.0162
vimboss
parents: 39
diff changeset
281 SynMenu HIJK.HTML.HTML\ with\ Ruby\ (eRuby):eruby
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
282 SynMenu HIJK.HTML.Cheetah\ HTML\ template:htmlcheetah
797
a1a08851eac8 updated for version 7.0232
vimboss
parents: 625
diff changeset
283 SynMenu HIJK.HTML.Django\ HTML\ template:htmldjango
17372
b9bc47742df6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 13963
diff changeset
284 SynMenu HIJK.HTML.Vue.js\ HTML\ template:vuejs
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
285 SynMenu HIJK.HTML.HTML/OS:htmlos
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
286 SynMenu HIJK.HTML.XHTML:xhtml
1648
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
287 SynMenu HIJK.Host\.conf:hostconf
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
288 SynMenu HIJK.Hosts\ access:hostsaccess
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
289 SynMenu HIJK.Hyper\ Builder:hb
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
290 SynMenu HIJK.Icewm\ menu:icemenu
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
291 SynMenu HIJK.Icon:icon
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
292 SynMenu HIJK.IDL\Generic\ IDL:idl
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
293 SynMenu HIJK.IDL\Microsoft\ IDL:msidl
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
294 SynMenu HIJK.Indent\ profile:indent
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
295 SynMenu HIJK.Inform:inform
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
296 SynMenu HIJK.Informix\ 4GL:fgl
1118
2b8ff9e3c520 updated for version 7.1a
vimboss
parents: 845
diff changeset
297 SynMenu HIJK.Initng:initng
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
298 SynMenu HIJK.Inittab:inittab
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
299 SynMenu HIJK.Inno\ setup:iss
5146
6ec6b7ff2d43 Vim 7.4a BETA release.
Bram Moolenaar <bram@vim.org>
parents: 2488
diff changeset
300 SynMenu HIJK.Innovation\ Data\ Processing.Upstream\ dat:upstreamdat
6ec6b7ff2d43 Vim 7.4a BETA release.
Bram Moolenaar <bram@vim.org>
parents: 2488
diff changeset
301 SynMenu HIJK.Innovation\ Data\ Processing.Upstream\ log:upstreamlog
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
302 SynMenu HIJK.Innovation\ Data\ Processing.Upstream\ rpt:upstreamrpt
5146
6ec6b7ff2d43 Vim 7.4a BETA release.
Bram Moolenaar <bram@vim.org>
parents: 2488
diff changeset
303 SynMenu HIJK.Innovation\ Data\ Processing.Upstream\ Install\ log:upstreaminstalllog
6ec6b7ff2d43 Vim 7.4a BETA release.
Bram Moolenaar <bram@vim.org>
parents: 2488
diff changeset
304 SynMenu HIJK.Innovation\ Data\ Processing.Usserver\ log:usserverlog
6ec6b7ff2d43 Vim 7.4a BETA release.
Bram Moolenaar <bram@vim.org>
parents: 2488
diff changeset
305 SynMenu HIJK.Innovation\ Data\ Processing.USW2KAgt\ log:usw2kagtlog
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
306 SynMenu HIJK.InstallShield\ script:ishd
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
307 SynMenu HIJK.Interactive\ Data\ Lang:idlang
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
308 SynMenu HIJK.IPfilter:ipfilter
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
309 SynMenu HIJK.J:j
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
310 SynMenu HIJK.JAL:jal
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
311 SynMenu HIJK.JAM:jam
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
312 SynMenu HIJK.Jargon:jargon
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
313 SynMenu HIJK.Java.Java:java
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
314 SynMenu HIJK.Java.JavaCC:javacc
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
315 SynMenu HIJK.Java.Java\ Server\ Pages:jsp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
316 SynMenu HIJK.Java.Java\ Properties:jproperties
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
317 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
318 SynMenu HIJK.JavaScriptReact:javascriptreact
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
319 SynMenu HIJK.Jess:jess
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
320 SynMenu HIJK.Jgraph:jgraph
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
321 SynMenu HIJK.Jovial:jovial
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
322 SynMenu HIJK.JSON:json
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
323 SynMenu HIJK.Kconfig:kconfig
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
324 SynMenu HIJK.KDE\ script:kscript
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
325 SynMenu HIJK.Kimwitu++:kwt
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
326 SynMenu HIJK.Kivy:kivy
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
327 SynMenu HIJK.KixTart:kix
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
328
2358
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.Lace:lace
33577
d6dde6229b36 runtime: Fix more typos (#13354)
Christian Brabandt <cb@256bit.org>
parents: 33114
diff changeset
330 SynMenu L.LambdaProlog:lprolog
2358
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.Latte:latte
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.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
333 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
334 SynMenu L.LDAP.Configuration:ldapconf
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
335 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
336 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
337 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
338 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
339 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
340 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
341 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
342 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
343 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
344 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
345 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
346 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
347 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
348 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
349 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
350 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
351 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
352 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
353 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
354 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
355 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
356 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
357 SynMenu L.Lynx\ config:lynx
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
358
2358
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.M4:m4
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.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
361 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
362 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
363 SynMenu M.Mailcap:mailcap
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
364 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
365 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
366 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
367 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
368 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
369 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
370 SynMenu M.Markdown:markdown
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
371 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
372 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
373 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
374 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
375 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
376 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
377 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
378 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
379 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
380 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
381 SynMenu M.MGL:mgl
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
382 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
383 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
384 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
385 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
386 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
387 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
388 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
389 SynMenu M.Monk:monk
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
390 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
391 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
392 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
393 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
394 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
395 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
396 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
397 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
398 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
399 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
400 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
401 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
402 SynMenu M.MuPAD:mupad
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
403 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
404 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
405 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
406
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
407 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
408 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
409 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
410 SynMenu NO.Natural:natural
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
411 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
412 SynMenu NO.Netrc:netrc
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
413 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
414 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
415 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
416 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
417 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
418 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
419 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
420 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
421 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
422 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
423 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
424 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
425 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
426 SynMenu NO.Oracle\ config:ora
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
427
799
6beb2c667935 updated for version 7.0b
vimboss
parents: 797
diff changeset
428 SynMenu PQ.Packet\ filter\ conf:pf
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
429 SynMenu PQ.Palm\ resource\ compiler:pilrc
799
6beb2c667935 updated for version 7.0b
vimboss
parents: 797
diff changeset
430 SynMenu PQ.Pam\ config:pamconf
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
431 SynMenu PQ.PApp:papp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
432 SynMenu PQ.Pascal:pascal
799
6beb2c667935 updated for version 7.0b
vimboss
parents: 797
diff changeset
433 SynMenu PQ.Password\ file:passwd
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
434 SynMenu PQ.PCCTS:pccts
1648
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
435 SynMenu PQ.PDF:pdf
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
436 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
437 SynMenu PQ.Perl.Perl\ 6:perl6
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
438 SynMenu PQ.Perl.Perl\ POD:pod
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
439 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
440 SynMenu PQ.Perl.Template\ toolkit:tt2
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
441 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
442 SynMenu PQ.Perl.Template\ toolkit\ JS:tt2js
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
443 SynMenu PQ.PHP.PHP\ 3-4:php
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
444 SynMenu PQ.PHP.Phtml\ (PHP\ 2):phtml
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
445 SynMenu PQ.Pike:pike
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
446 SynMenu PQ.Pine\ RC:pine
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
447 SynMenu PQ.Pinfo\ RC:pinfo
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
448 SynMenu PQ.PL/M:plm
570
27d1ec742f17 updated for version 7.0162
vimboss
parents: 39
diff changeset
449 SynMenu PQ.PL/SQL:plsql
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
450 SynMenu PQ.Pli:pli
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
451 SynMenu PQ.PLP:plp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
452 SynMenu PQ.PO\ (GNU\ gettext):po
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
453 SynMenu PQ.Postfix\ main\ config:pfmain
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
454 SynMenu PQ.PostScript.PostScript:postscr
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
455 SynMenu PQ.PostScript.PostScript\ Printer\ Description:ppd
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
456 SynMenu PQ.Povray.Povray\ scene\ descr:pov
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
457 SynMenu PQ.Povray.Povray\ configuration:povini
1648
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
458 SynMenu PQ.PPWizard:ppwiz
570
27d1ec742f17 updated for version 7.0162
vimboss
parents: 39
diff changeset
459 SynMenu PQ.Prescribe\ (Kyocera):prescribe
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
460 SynMenu PQ.Printcap:pcap
1118
2b8ff9e3c520 updated for version 7.1a
vimboss
parents: 845
diff changeset
461 SynMenu PQ.Privoxy:privoxy
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
462 SynMenu PQ.Procmail:procmail
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
463 SynMenu PQ.Product\ Spec\ File:psf
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
464 SynMenu PQ.Progress:progress
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
465 SynMenu PQ.Prolog:prolog
1648
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
466 SynMenu PQ.ProMeLa:promela
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
467 SynMenu PQ.Proto:proto
799
6beb2c667935 updated for version 7.0b
vimboss
parents: 797
diff changeset
468 SynMenu PQ.Protocols:protocols
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
469 SynMenu PQ.Purify\ log:purifylog
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
470 SynMenu PQ.Pyrex:pyrex
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
471 SynMenu PQ.Python:python
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
472 SynMenu PQ.Quake:quake
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
473 SynMenu PQ.Quickfix\ window:qf
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
474
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.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
476 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
477 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
478 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
479 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
480 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
481 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
482 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
483 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
484 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
485 SynMenu R.Rebol:rebol
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
486 SynMenu R.ReDIF:redif
18928
180a1c5175f6 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 18842
diff changeset
487 SynMenu R.Rego:rego
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
488 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
489 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
490 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
491 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
492 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
493 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
494 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
495 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
496 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
497 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
498 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
499 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
500 SynMenu R.ReStructuredText:rst
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
501 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
502 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
503 SynMenu R.Ruby:ruby
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
504 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
505
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.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
507 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
508 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
509 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
510 SynMenu S-Sm.Sather:sather
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
511 SynMenu S-Sm.Sbt:sbt
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
512 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
513 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
514 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
515 SynMenu S-Sm.Screen\ RC:screen
2415
8f017e31750f Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2358
diff changeset
516 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
517 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
518 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
519 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
520 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
521 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
522 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
523 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
524 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
525 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
526 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
527 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
528 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
529 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
530 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
531 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
532 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
533 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
534 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
535 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
536 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
537 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
538 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
539 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
540 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
541 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
542 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
543 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
544 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
545 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
546 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
547 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
548 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
549 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
550 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
551 SynMenu S-Sm.SMITH:smith
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
552
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.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
554 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
555 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
556 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
557 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
558 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
559 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
560 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
561 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
562 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
563 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
564 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
565 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
566 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
567 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
568 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
569 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
570 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
571 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
572 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
573 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
574 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
575 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
576 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
577 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
578 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
579 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
580 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
581 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
582 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
583 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
584 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
585 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
586 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
587 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
588 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
589 SynMenu Sn-Sy.Sysctl\.conf:sysctl
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
590 SynMenu Sn-Sy.Systemd:systemd
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
591 SynMenu Sn-Sy.SystemVerilog:systemverilog
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
592
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.TADS:tads
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.Tags:tags
72a3c2766396 Add a few items to the syntax menu. Split up long submenus.
Bram Moolenaar <bram@vim.org>
parents: 1668
diff changeset
595 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
596 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
597 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
598 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
599 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
600 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
601 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
602 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
603 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
604 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
605 SynMenu T.Terminfo:terminfo
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
606 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
607 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
608 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
609 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
610 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
611 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
612 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
613 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
614 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
615 SynMenu T.Tilde:tilde
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
616 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
617 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
618 SynMenu T.Trasys\ input:trasys
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
619 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
620 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
621 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
622 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
623 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
624 SynMenu T.Typescript:typescript
7547b6eb6b5c patch 8.1.2408: syntax menu and build instructions outdated
Bram Moolenaar <Bram@vim.org>
parents: 17758
diff changeset
625 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
626
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.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
628 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
629 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
630 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
631 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
632 SynMenu UV.Updatedb\.conf:updatedb
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
633 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
634 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
635 SynMenu UV.Vera:vera
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
636 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
637 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
638 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
639 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
640 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
641 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
642 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
643 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
644 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
645 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
646 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
647 SynMenu UV.VRML:vrml
13963
1174611ad715 Vim 8.1 release
Christian Brabandt <cb@256bit.org>
parents: 7013
diff changeset
648 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
649 SynMenu UV.VSE\ JCL:vsejcl
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
650
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
651 SynMenu WXYZ.WEB.CWEB:cweb
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
652 SynMenu WXYZ.WEB.WEB:web
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
653 SynMenu WXYZ.WEB.WEB\ Changes:change
33767
4913b4f5a133 patch 9.0.2104: wast filetype should be replaced by wat filetype
Christian Brabandt <cb@256bit.org>
parents: 33577
diff changeset
654 SynMenu WXYZ.WebAssembly:wat
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
655 SynMenu WXYZ.Webmacro:webmacro
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
656 SynMenu WXYZ.Website\ MetaLanguage:wml
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
657 SynMenu WXYZ.wDiff:wdiff
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
658 SynMenu WXYZ.Wget\ config:wget
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
659 SynMenu WXYZ.Whitespace\ (add):whitespace
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
660 SynMenu WXYZ.WildPackets\ EtherPeek\ Decoder:dcd
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
661 SynMenu WXYZ.WinBatch/Webbatch:winbatch
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
662 SynMenu WXYZ.Windows\ Scripting\ Host:wsh
799
6beb2c667935 updated for version 7.0b
vimboss
parents: 797
diff changeset
663 SynMenu WXYZ.WSML:wsml
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
664 SynMenu WXYZ.WvDial:wvdial
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
665 SynMenu WXYZ.X\ Keyboard\ Extension:xkb
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
666 SynMenu WXYZ.X\ Pixmap:xpm
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
667 SynMenu WXYZ.X\ Pixmap\ (2):xpm2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
668 SynMenu WXYZ.X\ resources:xdefaults
1648
58cad056e608 updated for version 7.2a-00
vimboss
parents: 1186
diff changeset
669 SynMenu WXYZ.XBL:xbl
799
6beb2c667935 updated for version 7.0b
vimboss
parents: 797
diff changeset
670 SynMenu WXYZ.Xinetd\.conf:xinetd
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
671 SynMenu WXYZ.Xmodmap:xmodmap
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
672 SynMenu WXYZ.Xmath:xmath
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
673 SynMenu WXYZ.XML:xml
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
674 SynMenu WXYZ.XML\ Schema\ (XSD):xsd
799
6beb2c667935 updated for version 7.0b
vimboss
parents: 797
diff changeset
675 SynMenu WXYZ.XQuery:xquery
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
676 SynMenu WXYZ.Xslt:xslt
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
677 SynMenu WXYZ.XFree86\ Config:xf86conf
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
678 SynMenu WXYZ.YAML:yaml
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
679 SynMenu WXYZ.Yacc:yacc
5247
09c88160095d Update files for the 7.4b BETA release.
Bram Moolenaar <bram@vim.org>
parents: 5146
diff changeset
680 SynMenu WXYZ.Zimbu:zimbu
33114
0fdb758ceec2 runtime(zserio): add zserio syntax (#13005)
Christian Brabandt <cb@256bit.org>
parents: 32770
diff changeset
681 SynMenu WXYZ.Zserio:zserio
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
682
27538
f37561549ec2 Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents: 18928
diff changeset
683 append(lnum, "")
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
684
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
685 wq