annotate runtime/syntax/shared/context-data-interfaces.vim @ 34018:d81556766132

runtime(context): update ConTeXt keywords and other minor fixes (#13778) Commit: https://github.com/vim/vim/commit/0bca4a00188ccde335e0d6a7b7c093998e09182f Author: Lifepillar <lifepillar@users.noreply.github.com> Date: Wed Dec 27 18:49:50 2023 +0100 runtime(context): update ConTeXt keywords and other minor fixes (https://github.com/vim/vim/issues/13778) Update to the ConTeXt runtime files. Changes: 1. shared syntax files updated with `mtxrun --script interface --vim` using the latest ConTeXt LMTX. 2. fixed reference to `make` tag in the help file. 3. added `keepend` to mitigate issues with embedded Lua syntax (see below). 4. the latest revision date of each ConTeXt runtime file has been updated to the date of this commit. The issue about embedded Lua was reported by a user: >Take the following valid ConTeXt file: > \starttext > \ctxlua{context("Text generated from Lua.")} > \ctxlua{context("Another text generated from Lua.")} > \stoptext >On my Vim installation (including when I start Vim with `--clean`), the >closing bracket and curly braces on line 2 are highlighted red and the >syntax highlighting after that is off. >I was trying to dig a little bit into what was going on, using the >`synID()` and `synIDattr()` functions. It appears that the closing >bracket on line 2 is matched as a `luaParentError` instead of the end >of the `luaParen` region. Therefore, the `luaParen` region continues >all the way to the end of the file. The closing curly brace on line >2 is matched as a `luaError`, the 2nd `\ctxlua` on line 3 as >`luaParen`, etc. >This issue doesn't occur in a plain Lua file, where the closing bracket >is correctly matched as the end of the `luaParen` region. So it seems >that something goes wrong when the Lua syntax file is included in the >ConTeXt one. By adding `keepend`, the right parenthesis for some reason is still highlighted as a `luaParenError`, but at least the right curly brace should correctly end the Lua block. From what I've seen, I think it is very difficult to embed Lua syntax properly without help from the Lua syntax file (that is, without patching it). It has global rules such as: syn match luaParenError ")" syn match luaError "}" which make it difficult, if not impossible, to contain Lua syntax without `keepend` (and its limitations). Signed-off-by: Lifepillar <lifepillar@lifepillar.me> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 27 Dec 2023 19:00:06 +0100
parents b15334beeaa4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
29840
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 vim9script
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 # Vim syntax file
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 # Language: ConTeXt
34018
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
5 # Automatically generated by mtx-interface (2023-12-26 16:40)
29840
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 syn keyword contextCommon AEacute AEligature AEmacron AMSTEX Aacute contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 syn keyword contextCommon Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehook contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 syn keyword contextCommon Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 syn keyword contextCommon Acircumflexgrave Acircumflexhook Acircumflextilde Adiaeresis Adiaeresismacron contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 syn keyword contextCommon Adotaccent Adotaccentmacron Adotbelow Adoublegrave AfterPar contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 syn keyword contextCommon Agrave Ahook Ainvertedbreve Alpha Alphabeticnumerals contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 syn keyword contextCommon AmSTeX Amacron And Angstrom Aogonek contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 syn keyword contextCommon Aring Aringacute Arrowvert Astroke Atilde contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 syn keyword contextCommon BeforePar Beta Bhook Big Bigg contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 syn keyword contextCommon Biggl Biggm Biggr Bigl Bigm contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 syn keyword contextCommon Bigr Box Bumpeq CONTEXT Cacute contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 syn keyword contextCommon Cap Caps Ccaron Ccedilla Ccircumflex contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 syn keyword contextCommon Cdotaccent Character Characters Chi Chook contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 syn keyword contextCommon ConTeXt Context ConvertConstantAfter ConvertToConstant Cstroke contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 syn keyword contextCommon Cup DAYLONG DAYSHORT DZcaronligature DZligature contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22 syn keyword contextCommon Dafrican Dcaron Dd Ddownarrow Delta contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 syn keyword contextCommon Dhook Doteq Downarrow Dstroke Dzcaronligature contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 syn keyword contextCommon Dzligature ETEX Eacute Ebreve Ecaron contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25 syn keyword contextCommon Ecedilla Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26 syn keyword contextCommon Ecircumflexhook Ecircumflextilde Ediaeresis Edotaccent Edotbelow contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 syn keyword contextCommon Edoublegrave Egrave Ehook Einvertedbreve Emacron contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 syn keyword contextCommon Eogonek Epsilon Eta Eth Etilde contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
29 syn keyword contextCommon Eulerconst EveryLine EveryPar Fhook Finv contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
30 syn keyword contextCommon Gacute Game Gamma Gbreve Gcaron contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
31 syn keyword contextCommon Gcircumflex Gcommaaccent Gdotaccent GetPar Ghook contained
34018
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
32 syn keyword contextCommon GotoPar Greeknumerals Gstroke Hcaron Hcircumflex contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
33 syn keyword contextCommon Hstroke IJligature INRSTEX Iacute Ibreve contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
34 syn keyword contextCommon Icaron Icircumflex Idiaeresis Idotaccent Idotbelow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
35 syn keyword contextCommon Idoublegrave Igrave Ihook Iinvertedbreve Im contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
36 syn keyword contextCommon Imacron Iogonek Iota Istroke Itilde contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
37 syn keyword contextCommon JScode JSpreamble Jcircumflex Join Kappa contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
38 syn keyword contextCommon Kcaron Kcommaaccent Khook LAMSTEX LATEX contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
39 syn keyword contextCommon LJligature LUA LUAJITTEX LUAMETATEX LUATEX contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
40 syn keyword contextCommon LaTeX Lacute LamSTeX Lambda Lbar contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
41 syn keyword contextCommon Lcaron Lcommaaccent Ldotmiddle Ldsh Leftarrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
42 syn keyword contextCommon Leftrightarrow Ljligature Lleftarrow Longleftarrow Longleftrightarrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
43 syn keyword contextCommon Longmapsfrom Longmapsto Longrightarrow Lsh Lstroke contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
44 syn keyword contextCommon Lua LuaMetaTeX LuaTeX LuajitTeX METAFONT contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
45 syn keyword contextCommon METAFUN METAPOST MKII MKIV MKIX contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
46 syn keyword contextCommon MKLX MKVI MKXI MKXL MONTH contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
47 syn keyword contextCommon MONTHLONG MONTHSHORT MP MPII MPIV contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
48 syn keyword contextCommon MPLX MPVI MPXL MPanchor MPbetex contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
49 syn keyword contextCommon MPc MPclip MPcode MPcolor MPcoloronly contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
50 syn keyword contextCommon MPcolumn MPd MPdefinitions MPdrawing MPenvironment contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
51 syn keyword contextCommon MPextensions MPfontsizehskip MPgetmultipars MPgetmultishape MPgetposboxes contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
52 syn keyword contextCommon MPh MPinclusions MPinitializations MPleftskip MPll contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
53 syn keyword contextCommon MPlr MPls MPmenubuttons MPn MPoptions contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
54 syn keyword contextCommon MPoverlayanchor MPp MPpage MPpardata MPplus contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
55 syn keyword contextCommon MPpos MPpositiongraphic MPpositionmethod MPposset MPr contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
56 syn keyword contextCommon MPrawvar MPregion MPrest MPrightskip MPrs contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
57 syn keyword contextCommon MPrun MPstring MPtext MPtransparency MPul contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
58 syn keyword contextCommon MPur MPv MPvar MPvariable MPvv contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
59 syn keyword contextCommon MPw MPwhd MPx MPxy MPxywhd contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
60 syn keyword contextCommon MPy Mapsfrom Mapsto MetaFont MetaFun contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
61 syn keyword contextCommon MetaPost Mu NJligature Nacute Ncaron contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
62 syn keyword contextCommon Ncommaaccent Nearrow Neng Ngrave Njligature contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
63 syn keyword contextCommon NormalizeFontHeight NormalizeFontWidth NormalizeTextHeight NormalizeTextWidth Ntilde contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
64 syn keyword contextCommon Nu Numbers Nwarrow OEligature Oacute contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
65 syn keyword contextCommon Obreve Ocaron Ocircumflex Ocircumflexacute Ocircumflexdotbelow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
66 syn keyword contextCommon Ocircumflexgrave Ocircumflexhook Ocircumflextilde Odiaeresis Odiaeresismacron contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
67 syn keyword contextCommon Odotaccent Odotaccentmacron Odotbelow Odoublegrave Ograve contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
68 syn keyword contextCommon Ohook Ohorn Ohornacute Ohorndotbelow Ohorngrave contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
69 syn keyword contextCommon Ohornhook Ohorntilde Ohungarumlaut Oinvertedbreve Omacron contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
70 syn keyword contextCommon Omega Omicron Oogonek Oogonekmacron Ostroke contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
71 syn keyword contextCommon Ostrokeacute Otilde Otildemacron P PARSEDXML contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
72 syn keyword contextCommon PDFETEX PDFTEX PDFcolor PICTEX PPCHTEX contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
73 syn keyword contextCommon PPCHTeX PRAGMA Phi Phook Pi contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
74 syn keyword contextCommon PiCTeX Plankconst PointsToBigPoints PointsToReal PointsToWholeBigPoints contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
75 syn keyword contextCommon PropertyLine Psi PtToCm Racute Rcaron contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
76 syn keyword contextCommon Rcommaaccent Rdoublegrave Rdsh Re ReadFile contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
77 syn keyword contextCommon Relbar Rho Rightarrow Rinvertedbreve Romannumerals contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
78 syn keyword contextCommon Rrightarrow Rsh S Sacute ScaledPointsToBigPoints contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
79 syn keyword contextCommon ScaledPointsToWholeBigPoints Scaron Scedilla Schwa Scircumflex contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
80 syn keyword contextCommon Scommaaccent Searrow Sigma Smallcapped Subset contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
81 syn keyword contextCommon Supset Swarrow TABLE TABLEbody TABLEfoot contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
82 syn keyword contextCommon TABLEhead TABLEnested TABLEnext TC TD contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
83 syn keyword contextCommon TDs TEX TEXpage TH TN contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
84 syn keyword contextCommon TR TRs TX TY TaBlE contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
85 syn keyword contextCommon Tau Tcaron Tcedilla Tcommaaccent TeX contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
86 syn keyword contextCommon TheNormalizedFontSize Theta Thook Thorn TransparencyHack contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
87 syn keyword contextCommon Tstroke Uacute Ubreve Ucaron Ucircumflex contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
88 syn keyword contextCommon Udiaeresis Udiaeresisacute Udiaeresiscaron Udiaeresisgrave Udiaeresismacron contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
89 syn keyword contextCommon Udotbelow Udoublegrave Ugrave Uhook Uhorn contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
90 syn keyword contextCommon Uhornacute Uhorndotbelow Uhorngrave Uhornhook Uhorntilde contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
91 syn keyword contextCommon Uhungarumlaut Uinvertedbreve Umacron Uogonek Uparrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
92 syn keyword contextCommon Updownarrow Upsilon Uring Utilde Uuparrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
93 syn keyword contextCommon VDash Vdash VerboseNumber Vert Vhook contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
94 syn keyword contextCommon Vvdash WEEKDAY WORD WORDS Wcircumflex contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
95 syn keyword contextCommon WidthSpanningText Word Words XETEX XML contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
96 syn keyword contextCommon XeTeX Xi Yacute Ycircumflex Ydiaeresis contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
97 syn keyword contextCommon Ydotbelow Ygrave Yhook Ymacron Ytilde contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
98 syn keyword contextCommon Zacute Zcaron Zdotaccent Zeta Zhook contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
99 syn keyword contextCommon Zstroke aacute abbreviation abjadnaivenumerals abjadnodotnumerals contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
100 syn keyword contextCommon abjadnumerals about abreve abreveacute abrevedotbelow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
101 syn keyword contextCommon abrevegrave abrevehook abrevetilde acaron acircumflex contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
102 syn keyword contextCommon acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhook acircumflextilde contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
103 syn keyword contextCommon activatespacehandler actualday actualmonth actualyear actuarial contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
104 syn keyword contextCommon acute acwopencirclearrow adaptcollector adaptfontfeature adaptlayout contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
105 syn keyword contextCommon adaptpapersize addfeature addtoJSpreamble addtocommalist addvalue contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
106 syn keyword contextCommon adiaeresis adiaeresismacron adotaccent adotaccentmacron adotbelow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
107 syn keyword contextCommon adoublegrave aeacute aeligature aemacron afghanicurrency contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
108 syn keyword contextCommon aftersplitstring aftertestandsplitstring agrave ahook ainvertedbreve contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
109 syn keyword contextCommon aleph align alignbottom aligned alignedbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
110 syn keyword contextCommon alignedline alignhere alignment alignmentcharacter allinputpaths contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
111 syn keyword contextCommon allmodes alpha alphabeticnumerals alwayscitation alwayscite contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
112 syn keyword contextCommon amacron amalg ampersand anchor angle contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
113 syn keyword contextCommon aogonek appendetoks appendgvalue appendices appendtocommalist contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
114 syn keyword contextCommon appendtoks appendtoksonce appendvalue apply applyalternativestyle contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
115 syn keyword contextCommon applyfunction applyprocessor applytocharacters applytofirstcharacter applytosplitstringchar contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
116 syn keyword contextCommon applytosplitstringcharspaced applytosplitstringline applytosplitstringlinespaced applytosplitstringword applytosplitstringwordspaced contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
117 syn keyword contextCommon applytowords approx approxEq approxeq approxnEq contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
118 syn keyword contextCommon arabicakbar arabicalayhe arabicallah arabicallallahou arabicasterisk contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
119 syn keyword contextCommon arabicbasmalah arabiccomma arabiccuberoot arabicdateseparator arabicdecimals contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
120 syn keyword contextCommon arabicdisputedendofayah arabicendofayah arabicexnumerals arabicfootnotemarker arabicfourthroot contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
121 syn keyword contextCommon arabichighain arabichighalayheassallam arabichigheqala arabichighesala arabichighfootnotemarker contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
122 syn keyword contextCommon arabichighjeem arabichighlamalef arabichighmadda arabichighmeemlong arabichighmeemshort contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
123 syn keyword contextCommon arabichighnisf arabichighnoon arabichighnoonkasra arabichighqaf arabichighqif contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
124 syn keyword contextCommon arabichighradiallahouanhu arabichighrahmatullahalayhe arabichighrubc arabichighsad arabichighsajda contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
125 syn keyword contextCommon arabichighsakta arabichighsallallahou arabichighseen arabichighsmallsafha arabichightah contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
126 syn keyword contextCommon arabichightakhallus arabichighthalatha arabichighwaqf arabichighyeh arabichighzain contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
127 syn keyword contextCommon arabicjallajalalouhou arabiclettermark arabiclowmeemlong arabiclownoonkasra arabiclowseen contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
128 syn keyword contextCommon arabicmisra arabicmuhammad arabicnumber arabicnumberabove arabicnumerals contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
129 syn keyword contextCommon arabicparenleft arabicparenright arabicpercent arabicperiod arabicpermille contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
130 syn keyword contextCommon arabicpertenthousand arabicpoeticverse arabicqala arabicquestion arabicrasoul contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
131 syn keyword contextCommon arabicray arabicrialsign arabicsafha arabicsajdah arabicsalla contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
132 syn keyword contextCommon arabicsamvat arabicsanah arabicsemicolon arabicshighthreedots arabicslcm contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
133 syn keyword contextCommon arabicstartofrubc arabictripledot arabicvowelwaw arabicvowelyeh arabicwasallam contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
134 syn keyword contextCommon arg aring aringacute arrangedpages asciimode contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
135 syn keyword contextCommon asciistr aside assignalfadimension assigndimen assigndimension contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
136 syn keyword contextCommon assignifempty assigntranslation assignvalue assignwidth assumelongusagecs contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
137 syn keyword contextCommon ast astype asymp at atilde contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
138 syn keyword contextCommon atleftmargin atpage atrightmargin attachment autocap contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
139 syn keyword contextCommon autodirhbox autodirvbox autodirvtop autoinsertnextspace autointegral contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
140 syn keyword contextCommon automathematics autoorientation autopagestaterealpage autopagestaterealpageorder autorule contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
141 syn keyword contextCommon autosetups availablehsize averagecharwidth backepsilon background contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
142 syn keyword contextCommon backgroundimage backgroundimagefill backgroundline backmatter backprime contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
143 syn keyword contextCommon backsim backslash bar barleftarrow barleftarrowrightarrowbar contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
144 syn keyword contextCommon barovernorthwestarrow barwedge basegrid baselinebottom baselineleftbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
145 syn keyword contextCommon baselinemiddlebox baselinerightbox bbordermatrix bbox because contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
146 syn keyword contextCommon beforesplitstring beforetestandsplitstring beta beth between contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
147 syn keyword contextCommon bhook big bigbodyfont bigcap bigcirc contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
148 syn keyword contextCommon bigcircle bigcup bigdiamond bigg bigger contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
149 syn keyword contextCommon biggl biggm biggr bigl bigm contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
150 syn keyword contextCommon bigodot bigoplus bigotimes bigr bigskip contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
151 syn keyword contextCommon bigsqcap bigsqcup bigsquare bigstar bigtimes contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
152 syn keyword contextCommon bigtriangledown bigtriangleup bigudot biguplus bigvee contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
153 syn keyword contextCommon bigwedge binom bitmapimage blacklozenge blackrule contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
154 syn keyword contextCommon blackrules blacksquare blacktriangle blacktriangledown blacktriangleleft contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
155 syn keyword contextCommon blacktriangleright blank blap bleed bleedheight contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
156 syn keyword contextCommon bleedwidth blockligatures blockquote blocksynctexfile blockuservariable contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
157 syn keyword contextCommon bodyfontenvironmentlist bodyfontsize bodymatter bold boldface contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
158 syn keyword contextCommon bolditalic boldslanted bookmark booleanmodevalue bordermatrix contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
159 syn keyword contextCommon bot bottombox bottomleftbox bottomrightbox bowtie contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
160 syn keyword contextCommon boxcursor boxdot boxedcolumns boxmarker boxminus contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
161 syn keyword contextCommon boxofsize boxplus boxreference boxtimes bpos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
162 syn keyword contextCommon breakablethinspace breakhere breve bstroke btxabbreviatedjournal contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
163 syn keyword contextCommon btxaddjournal btxalwayscitation btxauthorfield btxdetail btxdirect contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
164 syn keyword contextCommon btxdoif btxdoifcombiinlistelse btxdoifelse btxdoifelsecombiinlist btxdoifelsesameasprevious contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
165 syn keyword contextCommon btxdoifelsesameaspreviouschecked btxdoifelseuservariable btxdoifnot btxdoifsameaspreviouscheckedelse btxdoifsameaspreviouselse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
166 syn keyword contextCommon btxdoifuservariableelse btxexpandedjournal btxfield btxfieldname btxfieldtype contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
167 syn keyword contextCommon btxfirstofrange btxflush btxflushauthor btxflushauthorinverted btxflushauthorinvertedshort contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
168 syn keyword contextCommon btxflushauthorname btxflushauthornormal btxflushauthornormalshort btxflushsuffix btxfoundname contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
169 syn keyword contextCommon btxfoundtype btxhiddencitation btxhybridcite btxlabellanguage btxlabeltext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
170 syn keyword contextCommon btxlistcitation btxloadjournalist btxoneorrange btxremapauthor btxrenderingdefinitions contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
171 syn keyword contextCommon btxsavejournalist btxsetup btxsingularorplural btxsingularplural btxtextcitation contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
172 syn keyword contextCommon buffer buildmathaccent buildtextaccent buildtextbottomcomma buildtextbottomdot contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
173 syn keyword contextCommon buildtextcedilla buildtextgrave buildtextmacron buildtextognek bullet contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
174 syn keyword contextCommon button cacute calligraphic camel cap contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
175 syn keyword contextCommon capital carriagereturn cases catcodetable catcodetablename contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
176 syn keyword contextCommon cbox ccaron ccedilla ccircumflex ccurl contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
177 syn keyword contextCommon cdot cdotaccent cdotp cdots centeraligned contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
178 syn keyword contextCommon centerbox centerdot centeredbox centeredlastline centerednextbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
179 syn keyword contextCommon centerline cfrac chapter character characteralign contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
180 syn keyword contextCommon characters chardescription charwidthlanguage check checkcharacteralign contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
181 syn keyword contextCommon checkedblank checkedchar checkedfences checkedfiller checkedstrippedcsname contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
182 syn keyword contextCommon checkinjector checkmark checknextindentation checknextinjector checkpage contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
183 syn keyword contextCommon checkparameters checkpreviousinjector checksoundtrack checktwopassdata checkvariables contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
184 syn keyword contextCommon chem chemical chemicalbottext chemicalmidtext chemicalsymbol contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
185 syn keyword contextCommon chemicaltext chemicaltoptext chi chineseallnumerals chinesecapnumerals contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
186 syn keyword contextCommon chinesenumerals chook circ circeq circlearrowleft contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
187 syn keyword contextCommon circlearrowright circledR circledS circledast circledcirc contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
188 syn keyword contextCommon circleddash circledequals circleonrightarrow citation cite contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
189 syn keyword contextCommon clap classfont cldcommand cldcontext cldloadfile contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
190 syn keyword contextCommon cldprocessfile cleftarrow clip clippedoverlayimage clonefield contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
191 syn keyword contextCommon clubsuit collect collectedtext collectexpanded collecting contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
192 syn keyword contextCommon colon coloncolonequals colonequals color colorbar contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
193 syn keyword contextCommon colorcomponents colored colorintent coloronly colorset contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
194 syn keyword contextCommon colorvalue column columnbreak columns columnset contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
195 syn keyword contextCommon columnsetspan columnsetspanwidth combination combinepages commalistelement contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
196 syn keyword contextCommon commalistsentence commalistsize comment comparecolorgroup comparedimension contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
197 syn keyword contextCommon comparedimensioneps comparepalet complement completebtxrendering completecontent contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
198 syn keyword contextCommon completeindex completelist completelistofabbreviations completelistofchemicals completelistoffigures contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
199 syn keyword contextCommon completelistofgraphics completelistofintermezzi completelistoflogos completelistofpublications completelistofsorts contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
200 syn keyword contextCommon completelistofsynonyms completelistoftables completepagenumber completeregister complexes contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
201 syn keyword contextCommon complexorsimple complexorsimpleempty component composedcollector composedlayer contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
202 syn keyword contextCommon compounddiscretionary compresult cong constantdimen constantdimenargument contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
203 syn keyword contextCommon constantemptyargument constantnumber constantnumberargument contentreference contextcode contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
204 syn keyword contextCommon contextdefinitioncode continuednumber continueifinputfile convertargument convertcommand contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
205 syn keyword contextCommon convertedcounter converteddimen convertedsubcounter convertmonth convertnumber contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
206 syn keyword contextCommon convertvalue convertvboxtohbox coprod copyboxfromcache copybtxlabeltext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
207 syn keyword contextCommon copyfield copyheadtext copylabeltext copymathlabeltext copyoperatortext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
208 syn keyword contextCommon copypages copyparameters copyposition copyprefixtext copyright contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
209 syn keyword contextCommon copysetups copysuffixtext copytaglabeltext copyunittext correctwhitespace contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
210 syn keyword contextCommon countersubs counttoken counttokens cramped crampedclap contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
211 syn keyword contextCommon crampedllap crampedrlap crightarrow crightoverleftarrow crlf contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
212 syn keyword contextCommon crlfplaceholder cstroke ctop ctxcommand ctxdirectcommand contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
213 syn keyword contextCommon ctxdirectlua ctxfunction ctxfunctiondefinition ctxlatecommand ctxlatelua contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
214 syn keyword contextCommon ctxloadluafile ctxlua ctxluabuffer ctxluacode ctxreport contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
215 syn keyword contextCommon ctxsprint cup curlyeqprec curlyeqsucc curlyvee contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
216 syn keyword contextCommon curlywedge currentassignmentlistkey currentassignmentlistvalue currentbtxuservariable currentcolor contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
217 syn keyword contextCommon currentcommalistitem currentcomponent currentdate currentenvironment currentfeaturetest contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
218 syn keyword contextCommon currentheadnumber currentinterface currentlanguage currentlistentrydestinationattribute currentlistentrylimitedtext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
219 syn keyword contextCommon currentlistentrynumber currentlistentrypagenumber currentlistentryreferenceattribute currentlistentrytitle currentlistentrytitlerendered contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
220 syn keyword contextCommon currentlistentrywrapper currentlistsymbol currentmainlanguage currentmessagetext currentmoduleparameter contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
221 syn keyword contextCommon currentoutputstream currentproduct currentproject currentregime currentregisterpageuserdata contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
222 syn keyword contextCommon currentresponses currenttime currentvalue currentxtablecolumn currentxtablerow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
223 syn keyword contextCommon curvearrowleft curvearrowright cwopencirclearrow cyrillicA cyrillicAE contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
224 syn keyword contextCommon cyrillicAbreve cyrillicAdiaeresis cyrillicB cyrillicBIGYUS cyrillicBIGYUSiotified contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
225 syn keyword contextCommon cyrillicC cyrillicCH cyrillicCHEDC cyrillicCHEDCabkhasian cyrillicCHEabkhasian contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
226 syn keyword contextCommon cyrillicCHEdiaeresis cyrillicCHEkhakassian cyrillicCHEvertstroke cyrillicD cyrillicDASIAPNEUMATA contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
227 syn keyword contextCommon cyrillicDJE cyrillicDZE cyrillicDZEabkhasian cyrillicDZHE cyrillicE contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
228 syn keyword contextCommon cyrillicELtail cyrillicEMtail cyrillicENDC cyrillicENGHE cyrillicENhook contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
229 syn keyword contextCommon cyrillicENtail cyrillicEREV cyrillicERY cyrillicERtick cyrillicEbreve contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
230 syn keyword contextCommon cyrillicEdiaeresis cyrillicEgrave cyrillicEiotified cyrillicF cyrillicFITA contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
231 syn keyword contextCommon cyrillicG cyrillicGHEmidhook cyrillicGHEstroke cyrillicGHEupturn cyrillicGJE contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
232 syn keyword contextCommon cyrillicH cyrillicHA cyrillicHADC cyrillicHRDSN cyrillicI contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
233 syn keyword contextCommon cyrillicIE cyrillicII cyrillicISHRT cyrillicISHRTtail cyrillicIZHITSA contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
234 syn keyword contextCommon cyrillicIZHITSAdoublegrave cyrillicIdiaeresis cyrillicIgrave cyrillicImacron cyrillicJE contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
235 syn keyword contextCommon cyrillicK cyrillicKADC cyrillicKAbashkir cyrillicKAhook cyrillicKAstroke contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
236 syn keyword contextCommon cyrillicKAvertstroke cyrillicKJE cyrillicKOPPA cyrillicKSI cyrillicL contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
237 syn keyword contextCommon cyrillicLITTLEYUS cyrillicLITTLEYUSiotified cyrillicLJE cyrillicM cyrillicN contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
238 syn keyword contextCommon cyrillicNJE cyrillicO cyrillicOMEGA cyrillicOMEGAround cyrillicOMEGAtitlo contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
239 syn keyword contextCommon cyrillicOT cyrillicObarred cyrillicObarreddiaeresis cyrillicOdiaeresis cyrillicP contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
240 syn keyword contextCommon cyrillicPALATALIZATION cyrillicPALOCHKA cyrillicPEmidhook cyrillicPSI cyrillicPSILIPNEUMATA contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
241 syn keyword contextCommon cyrillicR cyrillicS cyrillicSCHWA cyrillicSCHWAdiaeresis cyrillicSDSC contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
242 syn keyword contextCommon cyrillicSEMISOFT cyrillicSFTSN cyrillicSH cyrillicSHCH cyrillicSHHA contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
243 syn keyword contextCommon cyrillicT cyrillicTEDC cyrillicTETSE cyrillicTITLO cyrillicTSHE contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
244 syn keyword contextCommon cyrillicU cyrillicUK cyrillicUSHRT cyrillicUdiaeresis cyrillicUdoubleacute contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
245 syn keyword contextCommon cyrillicUmacron cyrillicV cyrillicYA cyrillicYAT cyrillicYERUdiaeresis contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
246 syn keyword contextCommon cyrillicYI cyrillicYO cyrillicYU cyrillicYstr cyrillicYstrstroke contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
247 syn keyword contextCommon cyrillicZ cyrillicZDSC cyrillicZEdiaeresis cyrillicZH cyrillicZHEbreve contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
248 syn keyword contextCommon cyrillicZHEdescender cyrillicZHEdiaeresis cyrillica cyrillicabreve cyrillicadiaeresis contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
249 syn keyword contextCommon cyrillicae cyrillicb cyrillicbigyus cyrillicbigyusiotified cyrillicc contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
250 syn keyword contextCommon cyrillicch cyrilliccheabkhasian cyrillicchedc cyrillicchedcabkhasian cyrillicchediaeresis contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
251 syn keyword contextCommon cyrillicchekhakassian cyrillicchevertstroke cyrillicd cyrillicdje cyrillicdze contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
252 syn keyword contextCommon cyrillicdzeabkhasian cyrillicdzhe cyrillice cyrillicebreve cyrillicediaeresis contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
253 syn keyword contextCommon cyrillicegrave cyrilliceiotified cyrilliceltail cyrillicemtail cyrillicendc contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
254 syn keyword contextCommon cyrillicenghe cyrillicenhook cyrillicentail cyrillicerev cyrillicertick contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
255 syn keyword contextCommon cyrillicery cyrillicf cyrillicfita cyrillicg cyrillicghemidhook contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
256 syn keyword contextCommon cyrillicghestroke cyrillicgheupturn cyrillicgje cyrillich cyrillicha contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
257 syn keyword contextCommon cyrillichadc cyrillichrdsn cyrillici cyrillicidiaeresis cyrillicie contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
258 syn keyword contextCommon cyrillicigrave cyrillicii cyrillicimacron cyrillicishrt cyrillicishrttail contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
259 syn keyword contextCommon cyrillicizhitsa cyrillicizhitsadoublegrave cyrillicje cyrillick cyrillickabashkir contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
260 syn keyword contextCommon cyrillickadc cyrillickahook cyrillickastroke cyrillickavertstroke cyrillickje contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
261 syn keyword contextCommon cyrillickoppa cyrillicksi cyrillicl cyrilliclittleyus cyrilliclittleyusiotified contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
262 syn keyword contextCommon cyrilliclje cyrillicm cyrillicn cyrillicnje cyrillico contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
263 syn keyword contextCommon cyrillicobarred cyrillicobarreddiaeresis cyrillicodiaeresis cyrillicomega cyrillicomegaround contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
264 syn keyword contextCommon cyrillicomegatitlo cyrillicot cyrillicp cyrillicpemidhook cyrillicpsi contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
265 syn keyword contextCommon cyrillicr cyrillics cyrillicschwa cyrillicschwadiaeresis cyrillicsdsc contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
266 syn keyword contextCommon cyrillicsemisoft cyrillicsftsn cyrillicsh cyrillicshch cyrillicshha contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
267 syn keyword contextCommon cyrillict cyrillictedc cyrillictetse cyrillictshe cyrillicu contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
268 syn keyword contextCommon cyrillicudiaeresis cyrillicudoubleacute cyrillicuk cyrillicumacron cyrillicushrt contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
269 syn keyword contextCommon cyrillicv cyrillicya cyrillicyat cyrillicyerudiaeresis cyrillicyi contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
270 syn keyword contextCommon cyrillicyo cyrillicystr cyrillicystrstroke cyrillicyu cyrillicz contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
271 syn keyword contextCommon cyrilliczdsc cyrilliczediaeresis cyrilliczh cyrilliczhebreve cyrilliczhedescender contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
272 syn keyword contextCommon cyrilliczhediaeresis d dag dagger daleth contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
273 syn keyword contextCommon dasharrow dashedleftarrow dashedrightarrow dashv datasetvariable contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
274 syn keyword contextCommon date daylong dayoftheweek dayshort dayspermonth contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
275 syn keyword contextCommon dbinom dcaron dcurl dd ddag contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
276 syn keyword contextCommon ddagger dddot ddot ddots decrement contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
277 syn keyword contextCommon decrementcounter decrementedcounter decrementpagenumber decrementsubpagenumber decrementvalue contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
278 syn keyword contextCommon defaultinterface defaultobjectpage defaultobjectreference defcatcodecommand defconvertedargument contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
279 syn keyword contextCommon defconvertedcommand defconvertedvalue define defineMPinstance defineTABLEsetup contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
280 syn keyword contextCommon defineaccent defineactivecharacter definealternativestyle defineanchor defineattachment contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
281 syn keyword contextCommon defineattribute definebackground definebar defineblock definebodyfont contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
282 syn keyword contextCommon definebodyfontenvironment definebodyfontswitch definebreakpoint definebreakpoints definebtx contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
283 syn keyword contextCommon definebtxdataset definebtxregister definebtxrendering definebuffer definebutton contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
284 syn keyword contextCommon definecapitals definecharacter definecharacterkerning definecharacterspacing definechemical contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
285 syn keyword contextCommon definechemicals definechemicalsymbol definecollector definecolor definecolorgroup contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
286 syn keyword contextCommon definecolumnbreak definecolumnset definecolumnsetarea definecolumnsetspan definecombination contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
287 syn keyword contextCommon definecombinedlist definecommand definecomment definecomplexorsimple definecomplexorsimpleempty contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
288 syn keyword contextCommon defineconversion defineconversionset definecounter definedataset definedate contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
289 syn keyword contextCommon definedelimitedtext definedeq definedescription definedfont definedocument contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
290 syn keyword contextCommon defineeffect defineenumeration defineexpandable defineexpansion defineexternalfigure contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
291 syn keyword contextCommon definefacingfloat definefallbackfamily definefield definefieldbody definefieldbodyset contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
292 syn keyword contextCommon definefieldcategory definefieldstack definefiguresymbol definefileconstant definefilefallback contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
293 syn keyword contextCommon definefilesynonym definefiller definefirstline definefittingpage definefloat contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
294 syn keyword contextCommon definefont definefontalternative definefontfallback definefontfamily definefontfamilypreset contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
295 syn keyword contextCommon definefontfeature definefontfile definefontsize definefontsolution definefontstyle contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
296 syn keyword contextCommon definefontsynonym defineformula defineformulaalternative defineformulaframed defineframed contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
297 syn keyword contextCommon defineframedcontent defineframedtable defineframedtext definefrozenfont defineglobalcolor contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
298 syn keyword contextCommon definegraphictypesynonym definegridsnapping definehbox definehead defineheadalternative contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
299 syn keyword contextCommon definehelp definehigh definehighlight definehspace definehyphenationfeatures contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
300 syn keyword contextCommon defineindentedtext defineindenting defineinitial defineinsertion defineinteraction contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
301 syn keyword contextCommon defineinteractionbar defineinteractionmenu defineinterfaceconstant defineinterfaceelement defineinterfacevariable contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
302 syn keyword contextCommon defineinterlinespace defineintermediatecolor defineitemgroup defineitems definelabel contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
303 syn keyword contextCommon definelabelclass definelayer definelayerpreset definelayout definelinefiller contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
304 syn keyword contextCommon definelinenote definelinenumbering definelines definelist definelistalternative contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
305 syn keyword contextCommon definelistextra definelow definelowhigh definelowmidhigh definemakeup contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
306 syn keyword contextCommon definemarginblock definemargindata definemarker definemarking definemathaccent contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
307 syn keyword contextCommon definemathalignment definemathcases definemathcommand definemathdouble definemathdoubleextensible contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
308 syn keyword contextCommon definemathematics definemathextensible definemathfence definemathfraction definemathframed contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
309 syn keyword contextCommon definemathmatrix definemathornament definemathover definemathoverextensible definemathovertextextensible contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
310 syn keyword contextCommon definemathradical definemathstackers definemathstyle definemathtriplet definemathunder contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
311 syn keyword contextCommon definemathunderextensible definemathundertextextensible definemathunstacked definemeasure definemessageconstant contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
312 syn keyword contextCommon definemixedcolumns definemode definemulticolumns definemultitonecolor definenamedcolor contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
313 syn keyword contextCommon definenamespace definenarrower definenote defineorientation defineornament contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
314 syn keyword contextCommon defineoutputroutine defineoutputroutinecommand defineoverlay definepage definepagebreak contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
315 syn keyword contextCommon definepagechecker definepagecolumns definepageinjection definepageinjectionalternative definepageshift contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
316 syn keyword contextCommon definepagestate definepairedbox definepalet definepapersize defineparagraph contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
317 syn keyword contextCommon defineparagraphs defineparallel defineparbuilder defineperiodkerning defineplaceholder contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
318 syn keyword contextCommon defineplacement definepositioning defineprefixset defineprocesscolor defineprocessor contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
319 syn keyword contextCommon defineprofile defineprogram definepushbutton definepushsymbol definereference contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
320 syn keyword contextCommon definereferenceformat defineregister definerenderingwindow defineresetset defineruby contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
321 syn keyword contextCommon definescale definescript definesection definesectionblock definesectionlevels contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
322 syn keyword contextCommon defineselector defineseparatorset defineshift definesidebar definesort contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
323 syn keyword contextCommon definesorting definespotcolor definestartstop definestyle definestyleinstance contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
324 syn keyword contextCommon definesubfield definesubformula definesymbol definesynonym definesynonyms contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
325 syn keyword contextCommon definesystemattribute definesystemconstant definesystemvariable definetabletemplate definetabulate contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
326 syn keyword contextCommon definetext definetextbackground definetextflow definetextnote definetokenlist contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
327 syn keyword contextCommon definetooltip definetransparency definetwopasslist definetype definetypeface contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
328 syn keyword contextCommon definetypescriptprefix definetypescriptsynonym definetypesetting definetyping defineunit contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
329 syn keyword contextCommon defineuserdata defineuserdataalternative defineviewerlayer definevspace definevspacing contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
330 syn keyword contextCommon definevspacingamount definextable defrostparagraphproperties delimited delimitedtext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
331 syn keyword contextCommon delta depthofstring depthonlybox depthspanningtext depthstrut contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
332 syn keyword contextCommon determineheadnumber determinelistcharacteristics determinenoflines determineregistercharacteristics devanagarinumerals contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
333 syn keyword contextCommon dfrac dhook diameter diamond diamondsuit contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
334 syn keyword contextCommon differentialD differentiald digamma digits dimensiontocount contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
335 syn keyword contextCommon directboxfromcache directcolor directcolored directconvertedcounter directcopyboxfromcache contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
336 syn keyword contextCommon directdummyparameter directgetboxllx directgetboxlly directhighlight directlocalframed contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
337 syn keyword contextCommon directluacode directparwrapper directselect directsetbar directsetup contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
338 syn keyword contextCommon directsymbol directvspacing dis disabledirectives disableexperiments contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
339 syn keyword contextCommon disablemode disableoutputstream disableparpositions disableregime disabletrackers contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
340 syn keyword contextCommon displaymath displaymathematics displaymessage disposeluatable distributedhsize contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
341 syn keyword contextCommon div dividedsize divideontimes divides dmath contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
342 syn keyword contextCommon doadaptleftskip doadaptrightskip doaddfeature doassign doassignempty contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
343 syn keyword contextCommon doboundtext docheckassignment docheckedpair document documentvariable contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
344 syn keyword contextCommon dodoubleargument dodoubleargumentwithset dodoubleempty dodoubleemptywithset dodoublegroupempty contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
345 syn keyword contextCommon doeassign doexpandedrecurse dofastloopcs dogetattribute dogetattributeid contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
346 syn keyword contextCommon dogetcommacommandelement dogobbledoubleempty dogobblesingleempty dohyphens doif contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
347 syn keyword contextCommon doifMPgraphicelse doifallcommon doifallcommonelse doifalldefinedelse doifallmodes contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
348 syn keyword contextCommon doifallmodeselse doifassignmentelse doifassignmentelsecs doifblackelse doifbothsides contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
349 syn keyword contextCommon doifbothsidesoverruled doifboxelse doifbufferelse doifcheckedpagestate doifcolor contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
350 syn keyword contextCommon doifcolorelse doifcommandhandler doifcommandhandlerelse doifcommon doifcommonelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
351 syn keyword contextCommon doifcontent doifconversiondefinedelse doifconversionnumberelse doifcounter doifcounterelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
352 syn keyword contextCommon doifcurrentfonthasfeatureelse doifdefined doifdefinedcounter doifdefinedcounterelse doifdefinedelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
353 syn keyword contextCommon doifdimensionelse doifdimenstringelse doifdocumentargument doifdocumentargumentelse doifdocumentfilename contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
354 syn keyword contextCommon doifdocumentfilenameelse doifdocumentvariable doifdocumentvariableelse doifdrawingblackelse doifelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
355 syn keyword contextCommon doifelseMPgraphic doifelseallcommon doifelsealldefined doifelseallmodes doifelseassignment contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
356 syn keyword contextCommon doifelseassignmentcs doifelseblack doifelsebox doifelseboxincache doifelsebuffer contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
357 syn keyword contextCommon doifelsecolor doifelsecommandhandler doifelsecommon doifelseconversiondefined doifelseconversionnumber contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
358 syn keyword contextCommon doifelsecounter doifelsecurrentfonthasfeature doifelsecurrentsortingused doifelsecurrentsynonymshown doifelsecurrentsynonymused contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
359 syn keyword contextCommon doifelsedefined doifelsedefinedcounter doifelsedimension doifelsedimenstring doifelsedocumentargument contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
360 syn keyword contextCommon doifelsedocumentfilename doifelsedocumentvariable doifelsedrawingblack doifelseempty doifelseemptyvalue contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
361 syn keyword contextCommon doifelseemptyvariable doifelseenv doifelsefastoptionalcheck doifelsefastoptionalcheckcs doifelsefieldbody contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
362 syn keyword contextCommon doifelsefieldcategory doifelsefigure doifelsefile doifelsefiledefined doifelsefileexists contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
363 syn keyword contextCommon doifelsefirstchar doifelseflagged doifelsefontchar doifelsefontfeature doifelsefontpresent contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
364 syn keyword contextCommon doifelsefontsynonym doifelseframed doifelsehasspace doifelsehelp doifelseincsname contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
365 syn keyword contextCommon doifelseindented doifelseinelement doifelseinputfile doifelseinsertion doifelseinset contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
366 syn keyword contextCommon doifelseinstring doifelseinsymbolset doifelseintoks doifelseintwopassdata doifelseitalic contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
367 syn keyword contextCommon doifelselanguage doifelselayerdata doifelselayoutdefined doifelselayoutsomeline doifelselayouttextline contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
368 syn keyword contextCommon doifelseleapyear doifelselist doifelselocation doifelselocfile doifelsemainfloatbody contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
369 syn keyword contextCommon doifelsemarkedcontent doifelsemarkedpage doifelsemarking doifelsemeaning doifelsemessage contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
370 syn keyword contextCommon doifelsemode doifelsenextbgroup doifelsenextbgroupcs doifelsenextchar doifelsenextoptional contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
371 syn keyword contextCommon doifelsenextoptionalcs doifelsenextparenthesis doifelsenonzeropositive doifelsenoteonsamepage doifelsenothing contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
372 syn keyword contextCommon doifelsenumber doifelseobjectfound doifelseobjectreferencefound doifelseoddpage doifelseoddpagefloat contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
373 syn keyword contextCommon doifelseoldercontext doifelseolderversion doifelseorientation doifelseoverlapping doifelseoverlay contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
374 syn keyword contextCommon doifelseparallel doifelseparentfile doifelseparwrapper doifelsepath doifelsepathexists contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
375 syn keyword contextCommon doifelsepatterns doifelseposition doifelsepositionaction doifelsepositiononpage doifelsepositionsonsamepage contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
376 syn keyword contextCommon doifelsepositionsonthispage doifelsepositionsused doifelsereferencefound doifelserightpage doifelserightpagefloat contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
377 syn keyword contextCommon doifelserighttoleftinbox doifelsesamelinereference doifelsesamestring doifelsesetups doifelsesomebackground contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
378 syn keyword contextCommon doifelsesomespace doifelsesomething doifelsesometoks doifelsestringinstring doifelsestructurelisthasnumber contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
379 syn keyword contextCommon doifelsestructurelisthaspage doifelsesymboldefined doifelsesymbolset doifelsetext doifelsetextflow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
380 syn keyword contextCommon doifelsetextflowcollector doifelsetopofpage doifelsetypingfile doifelseundefined doifelseurldefined contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
381 syn keyword contextCommon doifelsevalue doifelsevaluenothing doifelsevariable doifempty doifemptyelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
382 syn keyword contextCommon doifemptytoks doifemptyvalue doifemptyvalueelse doifemptyvariable doifemptyvariableelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
383 syn keyword contextCommon doifenv doifenvelse doiffastoptionalcheckcselse doiffastoptionalcheckelse doiffieldbodyelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
384 syn keyword contextCommon doiffieldcategoryelse doiffigureelse doiffile doiffiledefinedelse doiffileelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
385 syn keyword contextCommon doiffileexistselse doiffirstcharelse doifflaggedelse doiffontcharelse doiffontfeatureelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
386 syn keyword contextCommon doiffontpresentelse doiffontsynonymelse doifhasspaceelse doifhelpelse doifincsnameelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
387 syn keyword contextCommon doifinelementelse doifinputfileelse doifinsertionelse doifinset doifinsetelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
388 syn keyword contextCommon doifinstring doifinstringelse doifinsymbolset doifinsymbolsetelse doifintokselse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
389 syn keyword contextCommon doifintwopassdataelse doifitalicelse doiflanguageelse doiflayerdataelse doiflayoutdefinedelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
390 syn keyword contextCommon doiflayoutsomelineelse doiflayouttextlineelse doifleapyearelse doiflistelse doiflocationelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
391 syn keyword contextCommon doiflocfileelse doifmainfloatbodyelse doifmarkingelse doifmeaningelse doifmessageelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
392 syn keyword contextCommon doifmode doifmodeelse doifnextbgroupcselse doifnextbgroupelse doifnextcharelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
393 syn keyword contextCommon doifnextoptionalcselse doifnextoptionalelse doifnextparenthesiselse doifnonzeropositiveelse doifnot contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
394 syn keyword contextCommon doifnotallcommon doifnotallmodes doifnotcommandhandler doifnotcommon doifnotcounter contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
395 syn keyword contextCommon doifnotdocumentargument doifnotdocumentfilename doifnotdocumentvariable doifnotempty doifnotemptyvalue contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
396 syn keyword contextCommon doifnotemptyvariable doifnotenv doifnoteonsamepageelse doifnotescollected doifnotfile contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
397 syn keyword contextCommon doifnotflagged doifnothing doifnothingelse doifnotinset doifnotinsidesplitfloat contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
398 syn keyword contextCommon doifnotinstring doifnotmode doifnotnumber doifnotsamestring doifnotsetups contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
399 syn keyword contextCommon doifnotvalue doifnotvariable doifnumber doifnumberelse doifobjectfoundelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
400 syn keyword contextCommon doifobjectreferencefoundelse doifoddpageelse doifoddpagefloatelse doifoldercontextelse doifolderversionelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
401 syn keyword contextCommon doifoutervmode doifoverlappingelse doifoverlayelse doifparallelelse doifparentfileelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
402 syn keyword contextCommon doifpathelse doifpathexistselse doifpatternselse doifposition doifpositionaction contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
403 syn keyword contextCommon doifpositionactionelse doifpositionelse doifpositiononpageelse doifpositionsonsamepageelse doifpositionsonthispageelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
404 syn keyword contextCommon doifpositionsusedelse doifreferencefoundelse doifrightpageelse doifrightpagefloatelse doifrighttoleftinboxelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
405 syn keyword contextCommon doifsamelinereferenceelse doifsamestring doifsamestringelse doifsetups doifsetupselse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
406 syn keyword contextCommon doifsomebackground doifsomebackgroundelse doifsomespaceelse doifsomething doifsomethingelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
407 syn keyword contextCommon doifsometoks doifsometokselse doifstringinstringelse doifstructurelisthasnumberelse doifstructurelisthaspageelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
408 syn keyword contextCommon doifsymboldefinedelse doifsymbolsetelse doiftext doiftextelse doiftextflowcollectorelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
409 syn keyword contextCommon doiftextflowelse doiftopofpageelse doiftypingfileelse doifundefined doifundefinedcounter contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
410 syn keyword contextCommon doifundefinedelse doifunknownfontfeature doifurldefinedelse doifvalue doifvalueelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
411 syn keyword contextCommon doifvaluenothing doifvaluenothingelse doifvaluesomething doifvariable doifvariableelse contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
412 syn keyword contextCommon doindentation dollar doloop doloopoverlist donothing contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
413 syn keyword contextCommon dontconvertfont dontleavehmode dontpermitspacesbetweengroups dopositionaction doprocesslocalsetups contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
414 syn keyword contextCommon doquadrupleargument doquadrupleempty doquadruplegroupempty doquintupleargument doquintupleempty contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
415 syn keyword contextCommon doquintuplegroupempty dorechecknextindentation dorecurse dorepeatwithcommand doreplacefeature contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
416 syn keyword contextCommon doresetandafffeature doresetattribute dorotatebox dosetattribute dosetleftskipadaption contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
417 syn keyword contextCommon dosetrightskipadaption dosetupcheckedinterlinespace doseventupleargument doseventupleempty dosingleargument contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
418 syn keyword contextCommon dosingleempty dosinglegroupempty dosixtupleargument dosixtupleempty dosomebreak contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
419 syn keyword contextCommon dostepwiserecurse dosubtractfeature dot doteq doteqdot contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
420 syn keyword contextCommon dotfill dotfskip dotlessI dotlessJ dotlessi contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
421 syn keyword contextCommon dotlessj dotlessjstroke dotminus dotoks dotplus contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
422 syn keyword contextCommon dotripleargument dotripleargumentwithset dotripleempty dotripleemptywithset dotriplegroupempty contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
423 syn keyword contextCommon dots dottedcircle dottedrightarrow doublebar doublebond contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
424 syn keyword contextCommon doublebrace doublebracket doublecap doublecup doubleparent contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
425 syn keyword contextCommon doubleprime doubleverticalbar dowith dowithnextbox dowithnextboxcontent contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
426 syn keyword contextCommon dowithnextboxcontentcs dowithnextboxcs dowithpargument dowithrange dowithwargument contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
427 syn keyword contextCommon downarrow downdasharrow downdownarrows downharpoonleft downharpoonright contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
428 syn keyword contextCommon downuparrows downwhitearrow downzigzagarrow dpofstring dstroke contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
429 syn keyword contextCommon dtail dummydigit dummyparameter dzcaronligature dzligature contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
430 syn keyword contextCommon eTeX eacute ebreve ecaron ecedilla contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
431 syn keyword contextCommon ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhook contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
432 syn keyword contextCommon ecircumflextilde edefconvertedargument ediaeresis edotaccent edotbelow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
433 syn keyword contextCommon edoublegrave ee efcmaxheight efcmaxwidth efcminheight contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
434 syn keyword contextCommon efcminwidth efcparameter effect egrave ehook contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
435 syn keyword contextCommon einvertedbreve elapsedseconds elapsedsteptime elapsedtime eleftarrowfill contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
436 syn keyword contextCommon eleftharpoondownfill eleftharpoonupfill eleftrightarrowfill element ell contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
437 syn keyword contextCommon em emacron embeddedxtable emdash emphasisboldface contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
438 syn keyword contextCommon emphasistypeface emptylines emptyset emquad emspace contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
439 syn keyword contextCommon enableasciimode enabledirectives enableexperiments enablemode enableoutputstream contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
440 syn keyword contextCommon enableparpositions enableregime enabletrackers endash endnote contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
441 syn keyword contextCommon endofline enquad enskip enspace env contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
442 syn keyword contextCommon environment envvar eogonek eoverbarfill eoverbracefill contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
443 syn keyword contextCommon eoverbracketfill eoverparentfill epos epsilon eq contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
444 syn keyword contextCommon eqcirc eqeq eqeqeq eqgtr eqless contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
445 syn keyword contextCommon eqsim eqslantgtr eqslantless equaldigits equalscolon contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
446 syn keyword contextCommon equiv erightarrowfill erightharpoondownfill erightharpoonupfill eta contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
447 syn keyword contextCommon eth ethiopic etilde etwoheadrightarrowfill eunderbarfill contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
448 syn keyword contextCommon eunderbracefill eunderbracketfill eunderparentfill exceptions exclamdown contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
449 syn keyword contextCommon executeifdefined exists exitloop exitloopnow expandcheckedcsname contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
450 syn keyword contextCommon expanded expandedcollect expandeddoif expandeddoifelse expandeddoifnot contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
451 syn keyword contextCommon expandfontsynonym expdoif expdoifcommonelse expdoifelse expdoifelsecommon contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
452 syn keyword contextCommon expdoifelseinset expdoifinsetelse expdoifnot exponentiale extendedcatcodetable contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
453 syn keyword contextCommon externalfigure externalfigurecollection externalfigurecollectionmaxheight externalfigurecollectionmaxwidth externalfigurecollectionminheight contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
454 syn keyword contextCommon externalfigurecollectionminwidth externalfigurecollectionparameter facingfloat fact fakebox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
455 syn keyword contextCommon fallingdotseq fastdecrement fastincrement fastlocalframed fastloopfinal contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
456 syn keyword contextCommon fastloopindex fastscale fastsetup fastsetupwithargument fastsetupwithargumentswapped contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
457 syn keyword contextCommon fastswitchtobodyfont fastsxsy feature fence fenced contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
458 syn keyword contextCommon fetchallmarkings fetchallmarks fetchmark fetchmarking fetchonemark contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
459 syn keyword contextCommon fetchonemarking fetchruntinecommand fetchtwomarkings fetchtwomarks ffiligature contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
460 syn keyword contextCommon ffligature fflligature fhook field fieldbody contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
461 syn keyword contextCommon fieldstack fifthoffivearguments fifthofsixarguments figure figuredash contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
462 syn keyword contextCommon figurefilename figurefilepath figurefiletype figurefullname figureheight contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
463 syn keyword contextCommon figurenaturalheight figurenaturalwidth figurespace figuresymbol figuretext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
464 syn keyword contextCommon figurewidth filename filigature filledhboxb filledhboxc contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
465 syn keyword contextCommon filledhboxg filledhboxk filledhboxm filledhboxr filledhboxy contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
466 syn keyword contextCommon filler fillinline fillinrules fillintext fillupto contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
467 syn keyword contextCommon filterfromnext filterfromvalue filterpages filterreference findtwopassdata contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
468 syn keyword contextCommon finishregisterentry firstcharacter firstcounter firstcountervalue firstinlist contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
469 syn keyword contextCommon firstoffivearguments firstoffourarguments firstofoneargument firstofoneunexpanded firstofsixarguments contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
470 syn keyword contextCommon firstofthreearguments firstofthreeunexpanded firstoftwoarguments firstoftwounexpanded firstrealpage contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
471 syn keyword contextCommon firstrealpagenumber firstsubcountervalue firstsubpage firstsubpagenumber firstuserpage contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
472 syn keyword contextCommon firstuserpagenumber fitfield fitfieldframed fittingpage fittopbaselinegrid contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
473 syn keyword contextCommon fiveeighths fivesixths fixed fixedspace fixedspaces contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
474 syn keyword contextCommon flag flat flligature floatcombination floatuserdataparameter contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
475 syn keyword contextCommon flushbox flushboxregister flushcollector flushedrightlastline flushlayer contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
476 syn keyword contextCommon flushlocalfloats flushnextbox flushnotes flushoutputstream flushshapebox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
477 syn keyword contextCommon flushtextflow flushtokens flushtoks font fontalternative contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
478 syn keyword contextCommon fontbody fontchar fontcharbyindex fontclass fontclassname contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
479 syn keyword contextCommon fontface fontfeaturelist fontsize fontsolution fontstyle contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
480 syn keyword contextCommon footnote footnotetext forall forcecharacterstripping forcelocalfloats contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
481 syn keyword contextCommon forgeteverypar forgetparagraphfreezing forgetparameters forgetparskip forgetparwrapper contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
482 syn keyword contextCommon forgetragged formula formulanumber formulas foundbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
483 syn keyword contextCommon fourfifths fourperemspace fourthoffivearguments fourthoffourarguments fourthofsixarguments contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
484 syn keyword contextCommon frac framed framedcell framedcontent frameddimension contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
485 syn keyword contextCommon framedparameter framedrow framedtable framedtext freezedimenmacro contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
486 syn keyword contextCommon freezemeasure freezeparagraphproperties frenchspacing from fromlinenote contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
487 syn keyword contextCommon frontmatter frown frozenhbox frule gacute contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
488 syn keyword contextCommon gamma gbreve gcaron gcircumflex gcommaaccent contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
489 syn keyword contextCommon gdefconvertedargument gdefconvertedcommand gdotaccent ge geq contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
490 syn keyword contextCommon geqq geqslant getMPdrawing getMPlayer getboxfromcache contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
491 syn keyword contextCommon getboxllx getboxlly getbuffer getbufferdata getcommacommandsize contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
492 syn keyword contextCommon getcommalistsize getdatavalue getdayoftheweek getdayspermonth getdefinedbuffer contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
493 syn keyword contextCommon getdocumentargument getdocumentargumentdefault getdocumentfilename getdummyparameters getemptyparameters contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
494 syn keyword contextCommon geteparameters getexpandedparameters getfiguredimensions getfirstcharacter getfirsttwopassdata contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
495 syn keyword contextCommon getfromcommacommand getfromcommalist getfromluatable getfromtwopassdata getglyphdirect contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
496 syn keyword contextCommon getglyphstyled getgparameters getinlineuserdata getlasttwopassdata getlocalfloat contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
497 syn keyword contextCommon getlocalfloats getmarking getmessage getnamedglyphdirect getnamedglyphstyled contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
498 syn keyword contextCommon getnamedtwopassdatalist getnaturaldimensions getnoflines getobject getobjectdimensions contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
499 syn keyword contextCommon getpaletsize getparameters getparwrapper getprivatechar getprivateslot contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
500 syn keyword contextCommon getrandomcount getrandomdimen getrandomfloat getrandomnumber getrandomseed contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
501 syn keyword contextCommon getraweparameters getrawgparameters getrawnoflines getrawparameters getrawxparameters contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
502 syn keyword contextCommon getreference getreferenceentry getroundednoflines gets getsubstring contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
503 syn keyword contextCommon gettokenlist gettwopassdata gettwopassdatalist getuserdata getuvalue contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
504 syn keyword contextCommon getvalue getvariable getvariabledefault getxparameters gg contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
505 syn keyword contextCommon ggg gggtr gimel globaldisablemode globalenablemode contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
506 syn keyword contextCommon globalletempty globalpopbox globalpopmacro globalpreventmode globalprocesscommalist contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
507 syn keyword contextCommon globalpushbox globalpushmacro globalswapcounts globalswapdimens globalswapmacros contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
508 syn keyword contextCommon globalundefine glyphfontfile gnapprox gneqq gnsim contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
509 syn keyword contextCommon gobbledoubleempty gobbleeightarguments gobblefivearguments gobblefiveoptionals gobblefourarguments contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
510 syn keyword contextCommon gobblefouroptionals gobbleninearguments gobbleoneargument gobbleoneoptional gobblesevenarguments contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
511 syn keyword contextCommon gobblesingleempty gobblesixarguments gobblespacetokens gobbletenarguments gobblethreearguments contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
512 syn keyword contextCommon gobblethreeoptionals gobbletwoarguments gobbletwooptionals gobbleuntil gobbleuntilrelax contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
513 syn keyword contextCommon godown goto gotobox gotopage grabbufferdata contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
514 syn keyword contextCommon grabbufferdatadirect grabuntil graphictext grave graycolor contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
515 syn keyword contextCommon grayvalue greedysplitstring greekAlpha greekAlphadasia greekAlphadasiaperispomeni contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
516 syn keyword contextCommon greekAlphadasiatonos greekAlphadasiavaria greekAlphaiotasub greekAlphaiotasubdasia greekAlphaiotasubdasiaperispomeni contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
517 syn keyword contextCommon greekAlphaiotasubdasiatonos greekAlphaiotasubdasiavaria greekAlphaiotasubpsili greekAlphaiotasubpsiliperispomeni greekAlphaiotasubpsilitonos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
518 syn keyword contextCommon greekAlphaiotasubpsilivaria greekAlphamacron greekAlphapsili greekAlphapsiliperispomeni greekAlphapsilitonos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
519 syn keyword contextCommon greekAlphapsilivaria greekAlphatonos greekAlphavaria greekAlphavrachy greekBeta contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
520 syn keyword contextCommon greekChi greekCoronis greekDelta greekEpsilon greekEpsilondasia contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
521 syn keyword contextCommon greekEpsilondasiatonos greekEpsilondasiavaria greekEpsilonpsili greekEpsilonpsilitonos greekEpsilonpsilivaria contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
522 syn keyword contextCommon greekEpsilontonos greekEpsilonvaria greekEta greekEtadasia greekEtadasiaperispomeni contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
523 syn keyword contextCommon greekEtadasiatonos greekEtadasiavaria greekEtaiotasub greekEtaiotasubdasia greekEtaiotasubdasiaperispomeni contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
524 syn keyword contextCommon greekEtaiotasubdasiatonos greekEtaiotasubdasiavaria greekEtaiotasubpsili greekEtaiotasubpsiliperispomeni greekEtaiotasubpsilitonos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
525 syn keyword contextCommon greekEtaiotasubpsilivaria greekEtapsili greekEtapsiliperispomeni greekEtapsilitonos greekEtapsilivaria contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
526 syn keyword contextCommon greekEtatonos greekEtavaria greekGamma greekIota greekIotadasia contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
527 syn keyword contextCommon greekIotadasiaperispomeni greekIotadasiatonos greekIotadasiavaria greekIotadialytika greekIotamacron contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
528 syn keyword contextCommon greekIotapsili greekIotapsiliperispomeni greekIotapsilitonos greekIotapsilivaria greekIotatonos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
529 syn keyword contextCommon greekIotavaria greekIotavrachy greekKappa greekLambda greekMu contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
530 syn keyword contextCommon greekNu greekOmega greekOmegadasia greekOmegadasiaperispomeni greekOmegadasiatonos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
531 syn keyword contextCommon greekOmegadasiavaria greekOmegaiotasub greekOmegaiotasubdasia greekOmegaiotasubdasiaperispomeni greekOmegaiotasubdasiatonos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
532 syn keyword contextCommon greekOmegaiotasubdasiavaria greekOmegaiotasubpsili greekOmegaiotasubpsiliperispomeni greekOmegaiotasubpsilitonos greekOmegaiotasubpsilivaria contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
533 syn keyword contextCommon greekOmegapsili greekOmegapsiliperispomeni greekOmegapsilitonos greekOmegapsilivaria greekOmegatonos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
534 syn keyword contextCommon greekOmegavaria greekOmicron greekOmicrondasia greekOmicrondasiatonos greekOmicrondasiavaria contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
535 syn keyword contextCommon greekOmicronpsili greekOmicronpsilitonos greekOmicronpsilivaria greekOmicrontonos greekOmicronvaria contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
536 syn keyword contextCommon greekPhi greekPi greekPsi greekRho greekRhodasia contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
537 syn keyword contextCommon greekSigma greekSigmalunate greekTau greekTheta greekUpsilon contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
538 syn keyword contextCommon greekUpsilondasia greekUpsilondasiaperispomeni greekUpsilondasiatonos greekUpsilondasiavaria greekUpsilondialytika contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
539 syn keyword contextCommon greekUpsilonmacron greekUpsilontonos greekUpsilonvaria greekUpsilonvrachy greekXi contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
540 syn keyword contextCommon greekZeta greekalpha greekalphadasia greekalphadasiaperispomeni greekalphadasiatonos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
541 syn keyword contextCommon greekalphadasiavaria greekalphaiotasub greekalphaiotasubdasia greekalphaiotasubdasiaperispomeni greekalphaiotasubdasiatonos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
542 syn keyword contextCommon greekalphaiotasubdasiavaria greekalphaiotasubperispomeni greekalphaiotasubpsili greekalphaiotasubpsiliperispomeni greekalphaiotasubpsilitonos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
543 syn keyword contextCommon greekalphaiotasubpsilivaria greekalphaiotasubtonos greekalphaiotasubvaria greekalphamacron greekalphaoxia contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
544 syn keyword contextCommon greekalphaperispomeni greekalphapsili greekalphapsiliperispomeni greekalphapsilitonos greekalphapsilivaria contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
545 syn keyword contextCommon greekalphatonos greekalphavaria greekalphavrachy greekbeta greekbetaalt contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
546 syn keyword contextCommon greekchi greekdasia greekdasiaperispomeni greekdasiavaria greekdelta contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
547 syn keyword contextCommon greekdialytikaperispomeni greekdialytikatonos greekdialytikavaria greekdigamma greekepsilon contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
548 syn keyword contextCommon greekepsilonalt greekepsilondasia greekepsilondasiatonos greekepsilondasiavaria greekepsilonoxia contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
549 syn keyword contextCommon greekepsilonpsili greekepsilonpsilitonos greekepsilonpsilivaria greekepsilontonos greekepsilonvaria contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
550 syn keyword contextCommon greeketa greeketadasia greeketadasiaperispomeni greeketadasiatonos greeketadasiavaria contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
551 syn keyword contextCommon greeketaiotasub greeketaiotasubdasia greeketaiotasubdasiaperispomeni greeketaiotasubdasiatonos greeketaiotasubdasiavaria contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
552 syn keyword contextCommon greeketaiotasubperispomeni greeketaiotasubpsili greeketaiotasubpsiliperispomeni greeketaiotasubpsilitonos greeketaiotasubpsilivaria contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
553 syn keyword contextCommon greeketaiotasubtonos greeketaiotasubvaria greeketaoxia greeketaperispomeni greeketapsili contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
554 syn keyword contextCommon greeketapsiliperispomeni greeketapsilitonos greeketapsilivaria greeketatonos greeketavaria contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
555 syn keyword contextCommon greekfinalsigma greekgamma greekiota greekiotadasia greekiotadasiaperispomeni contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
556 syn keyword contextCommon greekiotadasiatonos greekiotadasiavaria greekiotadialytika greekiotadialytikaperispomeni greekiotadialytikatonos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
557 syn keyword contextCommon greekiotadialytikavaria greekiotamacron greekiotaoxia greekiotaperispomeni greekiotapsili contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
558 syn keyword contextCommon greekiotapsiliperispomeni greekiotapsilitonos greekiotapsilivaria greekiotatonos greekiotavaria contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
559 syn keyword contextCommon greekiotavrachy greekkappa greekkoppa greeklambda greekmu contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
560 syn keyword contextCommon greeknu greeknumerals greeknumkoppa greekomega greekomegadasia contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
561 syn keyword contextCommon greekomegadasiaperispomeni greekomegadasiatonos greekomegadasiavaria greekomegaiotasub greekomegaiotasubdasia contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
562 syn keyword contextCommon greekomegaiotasubdasiaperispomeni greekomegaiotasubdasiatonos greekomegaiotasubdasiavaria greekomegaiotasubperispomeni greekomegaiotasubpsili contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
563 syn keyword contextCommon greekomegaiotasubpsiliperispomeni greekomegaiotasubpsilitonos greekomegaiotasubpsilivaria greekomegaiotasubtonos greekomegaiotasubvaria contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
564 syn keyword contextCommon greekomegaoxia greekomegaperispomeni greekomegapsili greekomegapsiliperispomeni greekomegapsilitonos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
565 syn keyword contextCommon greekomegapsilivaria greekomegatonos greekomegavaria greekomicron greekomicrondasia contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
566 syn keyword contextCommon greekomicrondasiatonos greekomicrondasiavaria greekomicronoxia greekomicronpsili greekomicronpsilitonos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
567 syn keyword contextCommon greekomicronpsilivaria greekomicrontonos greekomicronvaria greekoxia greekperispomeni contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
568 syn keyword contextCommon greekphi greekphialt greekpi greekpialt greekprosgegrammeni contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
569 syn keyword contextCommon greekpsi greekpsili greekpsiliperispomeni greekpsilivaria greekrho contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
570 syn keyword contextCommon greekrhoalt greekrhodasia greekrhopsili greeksampi greeksigma contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
571 syn keyword contextCommon greeksigmalunate greekstigma greektau greektheta greekthetaalt contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
572 syn keyword contextCommon greektonos greekupsilon greekupsilondasia greekupsilondasiaperispomeni greekupsilondasiatonos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
573 syn keyword contextCommon greekupsilondasiavaria greekupsilondiaeresis greekupsilondialytikaperispomeni greekupsilondialytikatonos greekupsilondialytikavaria contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
574 syn keyword contextCommon greekupsilonmacron greekupsilonoxia greekupsilonperispomeni greekupsilonpsili greekupsilonpsiliperispomeni contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
575 syn keyword contextCommon greekupsilonpsilitonos greekupsilonpsilivaria greekupsilontonos greekupsilonvaria greekupsilonvrachy contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
576 syn keyword contextCommon greekvaria greekxi greekzeta grid gridsnapping contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
577 syn keyword contextCommon groupedcommand gsetboxllx gsetboxlly gstroke gt contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
578 syn keyword contextCommon gtrapprox gtrdot gtreqless gtreqqless gtrless contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
579 syn keyword contextCommon gtrsim guilsingleleft guilsingleright gujaratinumerals gurmurkhinumerals contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
580 syn keyword contextCommon hairline hairspace halflinestrut halfstrut halfwaybox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
581 syn keyword contextCommon handletokens handwritten hanging hangul hanzi contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
582 syn keyword contextCommon hash hat hbar hbox hboxestohbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
583 syn keyword contextCommon hboxofvbox hboxreference hboxregister hcaron hcircumflex contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
584 syn keyword contextCommon hdofstring head headhbox headlanguage headnumber contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
585 syn keyword contextCommon headnumbercontent headnumberdistance headnumberwidth headreferenceattributes headsetupspacing contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
586 syn keyword contextCommon headtext headtextcontent headtextdistance headtexts headtextwidth contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
587 syn keyword contextCommon headvbox headwidth heartsuit hebrewAlef hebrewAyin contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
588 syn keyword contextCommon hebrewBet hebrewDalet hebrewGimel hebrewHe hebrewHet contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
589 syn keyword contextCommon hebrewKaf hebrewKaffinal hebrewLamed hebrewMem hebrewMemfinal contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
590 syn keyword contextCommon hebrewNun hebrewNunfinal hebrewPe hebrewPefinal hebrewQof contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
591 syn keyword contextCommon hebrewResh hebrewSamekh hebrewShin hebrewTav hebrewTet contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
592 syn keyword contextCommon hebrewTsadi hebrewTsadifinal hebrewVav hebrewYod hebrewZayin contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
593 syn keyword contextCommon hebrewnumerals heightanddepthofstring heightofstring heightspanningtext helptext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
594 syn keyword contextCommon hexnumber hexstringtonumber hglue hiddenbar hiddencitation contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
595 syn keyword contextCommon hiddencite hideblocks hiding high highlight contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
596 syn keyword contextCommon highordinalstr hilo himilo hl hookleftarrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
597 syn keyword contextCommon hookrightarrow horizontalgrowingbar horizontalpositionbar hpackbox hpackedbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
598 syn keyword contextCommon hphantom hpos hsizefraction hslash hsmash contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
599 syn keyword contextCommon hsmashbox hsmashed hspace hstroke htdpofstring contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
600 syn keyword contextCommon htofstring hyphen hyphenatedcoloredword hyphenatedfile hyphenatedfilename contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
601 syn keyword contextCommon hyphenatedhbox hyphenatedpar hyphenatedurl hyphenatedword hyphenation contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
602 syn keyword contextCommon iacute ibox ibreve icaron icircumflex contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
603 syn keyword contextCommon ideographichalffillspace ideographicspace idiaeresis idotaccent idotbelow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
604 syn keyword contextCommon idoublegrave idxfromluatable ifassignment iff ifinobject contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
605 syn keyword contextCommon ifinoutputstream ifparameters iftrialtypesetting ignoreimplicitspaces ignoretagsinexport contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
606 syn keyword contextCommon ignorevalue igrave ihook ii iiiint contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
607 syn keyword contextCommon iiiintop iiint iiintop iint iintop contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
608 syn keyword contextCommon iinvertedbreve ijligature imacron imaginaryi imaginaryj contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
609 syn keyword contextCommon imath immediatesavetwopassdata impliedby implies imply contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
610 syn keyword contextCommon in includemenu includesvgbuffer includesvgfile includeversioninfo contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
611 syn keyword contextCommon increment incrementcounter incrementedcounter incrementpagenumber incrementsubpagenumber contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
612 syn keyword contextCommon incrementvalue indentation indentedtext index infofont contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
613 syn keyword contextCommon infofontbold inframed infty infull inheritparameter contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
614 syn keyword contextCommon inhibitblank ininner ininneredge ininnermargin initializeboxstack contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
615 syn keyword contextCommon inleft inleftedge inleftmargin inline inlinebuffer contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
616 syn keyword contextCommon inlinedbox inlinemath inlinemathematics inlinemessage inlineordisplaymath contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
617 syn keyword contextCommon inlineprettyprintbuffer inlinerange inmargin inmframed innerflushshapebox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
618 syn keyword contextCommon inother inouter inouteredge inoutermargin input contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
619 syn keyword contextCommon inputfilebarename inputfilename inputfilerealsuffix inputfilesuffix inputgivenfile contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
620 syn keyword contextCommon inright inrightedge inrightmargin insertpages inspectluatable contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
621 syn keyword contextCommon installactionhandler installactivecharacter installanddefineactivecharacter installattributestack installautocommandhandler contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
622 syn keyword contextCommon installautosetuphandler installbasicautosetuphandler installbasicparameterhandler installbottomframerenderer installcommandhandler contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
623 syn keyword contextCommon installcorenamespace installctxfunction installctxscanner installdefinehandler installdefinitionset contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
624 syn keyword contextCommon installdefinitionsetmember installdirectcommandhandler installdirectparameterhandler installdirectparametersethandler installdirectsetuphandler contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
625 syn keyword contextCommon installdirectstyleandcolorhandler installframedautocommandhandler installframedcommandhandler installglobalmacrostack installlanguage contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
626 syn keyword contextCommon installleftframerenderer installmacrostack installnamespace installoutputroutine installpagearrangement contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
627 syn keyword contextCommon installparameterhandler installparameterhashhandler installparametersethandler installparentinjector installprotectedctxfunction contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
628 syn keyword contextCommon installprotectedctxscanner installrightframerenderer installrootparameterhandler installsetuphandler installsetuponlycommandhandler contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
629 syn keyword contextCommon installshipoutmethod installsimplecommandhandler installsimpleframedcommandhandler installstyleandcolorhandler installswitchcommandhandler contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
630 syn keyword contextCommon installswitchsetuphandler installtexdirective installtextracker installtopframerenderer installunitsseparator contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
631 syn keyword contextCommon installunitsspace installversioninfo int intclockwise integerrounding contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
632 syn keyword contextCommon integers interaction interactionbar interactionbuttons interactionmenu contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
633 syn keyword contextCommon intercal interface intermezzotext intertext interwordspaceafter contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
634 syn keyword contextCommon interwordspacebefore interwordspaces interwordspacesafter interwordspacesbefore intop contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
635 syn keyword contextCommon invisiblecomma invisibleplus invisibletimes invokepagehandler iogonek contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
636 syn keyword contextCommon iota italic italicbold italiccorrection italicface contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
637 syn keyword contextCommon item itemgroup itemgroupcolumns itemize items contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
638 syn keyword contextCommon itemtag itilde jcaron jcircumflex ji contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
639 syn keyword contextCommon jmath jobfilename jobfilesuffix kap kappa contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
640 syn keyword contextCommon kcaron kcommaaccent keepblocks keeplinestogether keepunwantedspaces contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
641 syn keyword contextCommon kerncharacters khook kkra knockout koreancirclenumerals contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
642 syn keyword contextCommon koreannumerals koreannumeralsc koreannumeralsp koreanparentnumerals lVert contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
643 syn keyword contextCommon labellanguage labeltext labeltexts lacute lambda contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
644 syn keyword contextCommon lambdabar land langle language languageCharacters contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
645 syn keyword contextCommon languagecharacters languagecharwidth laplace lastcounter lastcountervalue contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
646 syn keyword contextCommon lastdigit lastlinewidth lastnaturalboxdp lastnaturalboxht lastnaturalboxwd contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
647 syn keyword contextCommon lastparwrapper lastpredefinedsymbol lastrealpage lastrealpagenumber lastsubcountervalue contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
648 syn keyword contextCommon lastsubpage lastsubpagenumber lasttwodigits lastuserpage lastuserpagenumber contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
649 syn keyword contextCommon lateluacode latin layeredtext layerheight layerwidth contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
650 syn keyword contextCommon layout lazysavetaggedtwopassdata lazysavetwopassdata lbar lbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
651 syn keyword contextCommon lbrace lbracket lcaron lceil lchexnumber contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
652 syn keyword contextCommon lchexnumbers lcommaaccent lcurl ldot ldotmiddle contained
29840
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
653 syn keyword contextCommon ldotp ldots le leadsto left contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
654 syn keyword contextCommon leftaligned leftarrow leftarrowtail leftarrowtriangle leftbottombox contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
655 syn keyword contextCommon leftbox leftdasharrow leftguillemot leftharpoondown leftharpoonup contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
656 syn keyword contextCommon lefthbox leftheadtext leftlabeltext leftleftarrows leftline contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
657 syn keyword contextCommon leftmathlabeltext leftorrighthbox leftorrightvbox leftorrightvtop leftrightarrow contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
658 syn keyword contextCommon leftrightarrows leftrightarrowtriangle leftrightharpoons leftrightsquigarrow leftskipadaption contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
659 syn keyword contextCommon leftsquigarrow leftsubguillemot leftthreetimes lefttopbox lefttoright contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
660 syn keyword contextCommon lefttorighthbox lefttorightvbox lefttorightvtop leftwavearrow leftwhitearrow contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
661 syn keyword contextCommon legend leq leqq leqslant lessapprox contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
662 syn keyword contextCommon lessdot lesseqgtr lesseqqgtr lessgtr lesssim contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
663 syn keyword contextCommon letbeundefined letcatcodecommand letcscsname letcsnamecs letcsnamecsname contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
664 syn keyword contextCommon letdummyparameter letempty letgvalue letgvalueempty letgvalurelax contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
665 syn keyword contextCommon letterampersand letterat letterbackslash letterbar letterbgroup contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
666 syn keyword contextCommon letterclosebrace lettercolon letterdollar letterdoublequote letteregroup contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
667 syn keyword contextCommon letterescape letterexclamationmark letterhash letterhat letterleftbrace contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
668 syn keyword contextCommon letterleftbracket letterleftparenthesis letterless lettermore letteropenbrace contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
669 syn keyword contextCommon letterpercent letterquestionmark letterrightbrace letterrightbracket letterrightparenthesis contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
670 syn keyword contextCommon lettersinglequote letterslash letterspacing lettertilde letterunderscore contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
671 syn keyword contextCommon letvalue letvalueempty letvaluerelax lfence lfloor contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
672 syn keyword contextCommon lgroup lhbox lhooknwarrow lhooksearrow limitatefirstline contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
673 syn keyword contextCommon limitatelines limitatetext line linealignment linebox contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
674 syn keyword contextCommon linecorrection linefeed linefiller linefillerhbox linefillervbox contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
675 syn keyword contextCommon linefillervtop linenote linenumbering lines linespanningtext contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
676 syn keyword contextCommon linetable linetablebody linetablecell linetablehead linethickness contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
677 syn keyword contextCommon linterval listcitation listcite listlength listnamespaces contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
678 syn keyword contextCommon literalmode ljligature ll llangle llap contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
679 syn keyword contextCommon llbracket llcorner lll llless llointerval contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
680 syn keyword contextCommon lmoustache lnapprox lneq lneqq lnot contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
681 syn keyword contextCommon lnsim loadanyfile loadanyfileonce loadbtxdefinitionfile loadbtxreplacementfile contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
682 syn keyword contextCommon loadcldfile loadcldfileonce loadfontgoodies loadluafile loadluafileonce contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
683 syn keyword contextCommon loadspellchecklist loadtexfile loadtexfileonce loadtypescriptfile localfootnotes contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
684 syn keyword contextCommon localframed localframedwithsettings localheadsetup localhsize locallinecorrection contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
685 syn keyword contextCommon localnotes localpopbox localpopmacro localpushbox localpushmacro contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
686 syn keyword contextCommon localsetups localundefine locatedfilepath locatefilepath locfilename contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
687 syn keyword contextCommon logo lohi lointerval lomihi longleftarrow contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
688 syn keyword contextCommon longleftrightarrow longmapsfrom longmapsto longrightarrow longrightsquigarrow contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
689 syn keyword contextCommon looparrowleft looparrowright lor low lowerbox contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
690 syn keyword contextCommon lowercased lowercasestring lowercasing lowerleftdoubleninequote lowerleftsingleninequote contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
691 syn keyword contextCommon lowerrightdoubleninequote lowerrightsingleninequote lozenge lparent lrcorner contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
692 syn keyword contextCommon lrointerval lrtbbox lstroke lt ltimes contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
693 syn keyword contextCommon ltop ltrhbox ltrvbox ltrvtop lua contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
694 syn keyword contextCommon luaTeX luacode luaconditional luaenvironment luaexpanded contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
695 syn keyword contextCommon luaexpr luafunction luajitTeX luamajorversion luametaTeX contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
696 syn keyword contextCommon luaminorversion luaparameterset luasetup luasetups luaversion contained
b15334beeaa4 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
697 syn keyword contextCommon lvert m mLeftarrow mLeftrightarrow mRightarrow contained
34018
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
698 syn keyword contextCommon mVert mainlanguage makecharacteractive makerawcommalist makestrutofbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
699 syn keyword contextCommon makeup maltese mapfontsize mapsdown mapsfrom contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
700 syn keyword contextCommon mapsto mapsup marginblock margindata marginrule contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
701 syn keyword contextCommon margintext markcontent markedcontent markedpages marking contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
702 syn keyword contextCommon markinjector markpage markpages markreferencepage mat contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
703 syn keyword contextCommon math mathalignment mathampersand mathbf mathbi contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
704 syn keyword contextCommon mathblackboard mathbs mathcases mathdefault mathdollar contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
705 syn keyword contextCommon mathdouble mathematics mathfraktur mathfunction mathhash contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
706 syn keyword contextCommon mathhyphen mathit mathitalic mathlabellanguage mathlabeltext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
707 syn keyword contextCommon mathlabeltexts mathmatrix mathmode mathop mathover contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
708 syn keyword contextCommon mathpercent mathrm mathscript mathsl mathss contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
709 syn keyword contextCommon mathstyle mathtext mathtextbf mathtextbi mathtextbs contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
710 syn keyword contextCommon mathtextit mathtextsl mathtexttf mathtf mathtriplet contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
711 syn keyword contextCommon mathtt mathunder mathupright mathword mathwordbf contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
712 syn keyword contextCommon mathwordbi mathwordbs mathwordit mathwordsl mathwordtf contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
713 syn keyword contextCommon matrices matrix maxaligned mbox mcframed contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
714 syn keyword contextCommon mdformula measure measured measuredangle measuredeq contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
715 syn keyword contextCommon medskip medspace menubutton mequal message contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
716 syn keyword contextCommon mfence mframed mfunction mfunctionlabeltext mhbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
717 syn keyword contextCommon mho mhookleftarrow mhookrightarrow mid midaligned contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
718 syn keyword contextCommon middle middlealigned middlebox middlemakeup midhbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
719 syn keyword contextCommon midsubsentence minimalhbox minus minuscolon mirror contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
720 syn keyword contextCommon mixedcaps mixedcolumns mkvibuffer mleftarrow mleftharpoondown contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
721 syn keyword contextCommon mleftharpoonup mleftrightarrow mleftrightharpoons mmapsto mode contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
722 syn keyword contextCommon models modeset module moduleparameter moduletestsection contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
723 syn keyword contextCommon molecule mono monobold mononormal month contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
724 syn keyword contextCommon monthlong monthshort mp mpformula mprandomnumber contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
725 syn keyword contextCommon mrel mrightarrow mrightharpoondown mrightharpoonup mrightleftharpoons contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
726 syn keyword contextCommon mrightoverleftarrow mtext mtriplerel mtwoheadleftarrow mtwoheadrightarrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
727 syn keyword contextCommon mu multicolumns multimap mvert nHdownarrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
728 syn keyword contextCommon nHuparrow nLeftarrow nLeftrightarrow nRightarrow nVDash contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
729 syn keyword contextCommon nVdash nVleftarrow nVleftrightarrow nVrightarrow nabla contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
730 syn keyword contextCommon nacute namedheadnumber namedsection namedstructureheadlocation namedstructureuservariable contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
731 syn keyword contextCommon namedstructurevariable namedsubformulas namedtaggedlabeltexts napostrophe napprox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
732 syn keyword contextCommon napproxEq narrow narrower narrownobreakspace nasymp contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
733 syn keyword contextCommon natural naturalhbox naturalhpack naturalnumbers naturaltpack contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
734 syn keyword contextCommon naturalvbox naturalvcenter naturalvpack naturalvtop naturalwd contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
735 syn keyword contextCommon ncaron ncommaaccent ncong ncurl ndivides contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
736 syn keyword contextCommon ne nearrow neg negatecolorbox negated contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
737 syn keyword contextCommon negative negativesign negemspace negenspace negthinspace contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
738 syn keyword contextCommon neng neq nequiv neswarrow newattribute contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
739 syn keyword contextCommon newcatcodetable newcounter newevery newfrenchspacing newluatable contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
740 syn keyword contextCommon newmode newsignal newsystemmode nexists nextbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
741 syn keyword contextCommon nextboxdp nextboxht nextboxhtdp nextboxwd nextcounter contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
742 syn keyword contextCommon nextcountervalue nextdepth nextparagraphs nextrealpage nextrealpagenumber contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
743 syn keyword contextCommon nextsubcountervalue nextsubpage nextsubpagenumber nextuserpage nextuserpagenumber contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
744 syn keyword contextCommon ngeq ngrave ngtr ngtrless ngtrsim contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
745 syn keyword contextCommon ni nicelyfilledbox nihongo nin njligature contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
746 syn keyword contextCommon nleftarrow nleftrightarrow nleq nless nlessgtr contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
747 syn keyword contextCommon nlesssim nmid nni nobar nobreakspace contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
748 syn keyword contextCommon nocap nocharacteralign nocitation nocite nodetostring contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
749 syn keyword contextCommon noffigurepages noflines noflinesinbox noflocalfloats noheaderandfooterlines contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
750 syn keyword contextCommon noheightstrut nohyphens noindentation nointerference noitem contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
751 syn keyword contextCommon nonfrenchspacing nonmathematics nonvalidassignment normal normalboldface contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
752 syn keyword contextCommon normalframedwithsettings normalitalicface normalizebodyfontsize normalizedfontsize normalizefontdepth contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
753 syn keyword contextCommon normalizefontheight normalizefontline normalizefontwidth normalizetextdepth normalizetextheight contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
754 syn keyword contextCommon normalizetextline normalizetextwidth normalslantedface normaltypeface nospace contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
755 syn keyword contextCommon not notallmodes note notesymbol notext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
756 syn keyword contextCommon notin notmode notopandbottomlines notragged nowns contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
757 syn keyword contextCommon nparallel nprec npreccurlyeq nrightarrow nsim contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
758 syn keyword contextCommon nsimeq nsqsubseteq nsqsupseteq nsubset nsubseteq contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
759 syn keyword contextCommon nsucc nsucccurlyeq nsupset nsupseteq ntilde contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
760 syn keyword contextCommon ntimes ntriangleleft ntrianglelefteq ntriangleright ntrianglerighteq contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
761 syn keyword contextCommon nu numberofpoints numbers nvDash nvdash contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
762 syn keyword contextCommon nvleftarrow nvleftrightarrow nvrightarrow nwarrow nwsearrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
763 syn keyword contextCommon oacute obeydepth objectdepth objectheight objectmargin contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
764 syn keyword contextCommon objectwidth obox obreve ocaron ocircumflex contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
765 syn keyword contextCommon ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhook ocircumflextilde contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
766 syn keyword contextCommon octnumber octstringtonumber odiaeresis odiaeresismacron odot contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
767 syn keyword contextCommon odotaccent odotaccentmacron odotbelow odoublegrave oeligature contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
768 syn keyword contextCommon offset offsetbox ograve ohm ohook contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
769 syn keyword contextCommon ohorn ohornacute ohorndotbelow ohorngrave ohornhook contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
770 syn keyword contextCommon ohorntilde ohungarumlaut oiiint oiint oint contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
771 syn keyword contextCommon ointclockwise ointctrclockwise oinvertedbreve omacron omega contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
772 syn keyword contextCommon omicron ominus onedigitrounding oneeighth onefifth contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
773 syn keyword contextCommon onehalf onequarter onesixth onesuperior onethird contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
774 syn keyword contextCommon oogonek oogonekmacron operatorlanguage operatortext oplus contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
775 syn keyword contextCommon opposite ordfeminine ordinaldaynumber ordinalstr ordmasculine contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
776 syn keyword contextCommon ornamenttext oslash ostroke ostrokeacute otilde contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
777 syn keyword contextCommon otildemacron otimes outputfilename outputstream outputstreambox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
778 syn keyword contextCommon outputstreamcopy outputstreamunvbox outputstreamunvcopy over overbar contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
779 syn keyword contextCommon overbars overbartext overbarunderbar overbrace overbracetext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
780 syn keyword contextCommon overbraceunderbrace overbracket overbrackettext overbracketunderbracket overlay contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
781 syn keyword contextCommon overlaybutton overlaycolor overlaydepth overlayfigure overlayheight contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
782 syn keyword contextCommon overlayimage overlaylinecolor overlaylinewidth overlayoffset overlayrollbutton contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
783 syn keyword contextCommon overlaywidth overleftarrow overleftharpoondown overleftharpoonup overleftrightarrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
784 syn keyword contextCommon overloaderror overparent overparenttext overparentunderparent overprint contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
785 syn keyword contextCommon overrightarrow overrightharpoondown overrightharpoonup overset overstrike contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
786 syn keyword contextCommon overstrikes overtwoheadleftarrow overtwoheadrightarrow owns packed contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
787 syn keyword contextCommon page pagearea pagebreak pagecolumns pagecomment contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
788 syn keyword contextCommon pagefigure pageinjection pagelayout pagemakeup pagenumber contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
789 syn keyword contextCommon pagereference pagestaterealpage pagestaterealpageorder paletsize par contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
790 syn keyword contextCommon paragraph paragraphmark paragraphs paragraphscell parallel contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
791 syn keyword contextCommon parbuilder part partial path pdfTeX contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
792 syn keyword contextCommon pdfactualtext pdfbackendactualtext pdfbackendcurrentresources pdfbackendsetcatalog pdfbackendsetcolorspace contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
793 syn keyword contextCommon pdfbackendsetextgstate pdfbackendsetinfo pdfbackendsetname pdfbackendsetpageattribute pdfbackendsetpageresource contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
794 syn keyword contextCommon pdfbackendsetpagesattribute pdfbackendsetpattern pdfbackendsetshade pdfcolor pdfeTeX contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
795 syn keyword contextCommon percent percentdimen periodcentered periods permitcaretescape contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
796 syn keyword contextCommon permitcircumflexescape permitspacesbetweengroups perp persiandecimals persiandecimalseparator contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
797 syn keyword contextCommon persiannumerals persianthousandsseparator perthousand phantom phantombox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
798 syn keyword contextCommon phi phook pi pickupgroupedcommand pitchfork contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
799 syn keyword contextCommon placeattachments placebookmarks placebtxrendering placechemical placecitation contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
800 syn keyword contextCommon placecombinedlist placecomments placecontent placecurrentformulanumber placedbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
801 syn keyword contextCommon placefigure placefloat placefloatcaption placefloatwithsetups placefootnotes contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
802 syn keyword contextCommon placeformula placeframed placegraphic placeheadnumber placeheadtext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
803 syn keyword contextCommon placehelp placeholder placeindex placeinitial placeintermezzo contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
804 syn keyword contextCommon placelayer placelayeredtext placelegend placelist placelistofabbreviations contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
805 syn keyword contextCommon placelistofchemicals placelistoffigures placelistofgraphics placelistofintermezzi placelistoflogos contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
806 syn keyword contextCommon placelistofpublications placelistofsorts placelistofsynonyms placelistoftables placelocalfootnotes contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
807 syn keyword contextCommon placelocalnotes placement placenamedfloat placenamedformula placenotes contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
808 syn keyword contextCommon placeongrid placeontopofeachother placepagenumber placepairedbox placeparallel contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
809 syn keyword contextCommon placerawheaddata placerawheadnumber placerawheadtext placerawlist placeregister contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
810 syn keyword contextCommon placerenderingwindow placesidebyside placesubformula placetable pm contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
811 syn keyword contextCommon popattribute popmacro popmode popsystemmode position contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
812 syn keyword contextCommon positioning positionoverlay positionregionoverlay positive positivesign contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
813 syn keyword contextCommon postponenotes postponing postponingnotes prec precapprox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
814 syn keyword contextCommon preccurlyeq preceq preceqq precnapprox precneq contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
815 syn keyword contextCommon precneqq precnsim precsim predefinedfont predefinefont contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
816 syn keyword contextCommon predefinesymbol prefixedpagenumber prefixlanguage prefixtext prependetoks contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
817 syn keyword contextCommon prependgvalue prependtocommalist prependtoks prependtoksonce prependvalue contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
818 syn keyword contextCommon prerollblank presetbtxlabeltext presetdocument presetfieldsymbols presetheadtext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
819 syn keyword contextCommon presetlabeltext presetmathlabeltext presetoperatortext presetprefixtext presetsuffixtext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
820 syn keyword contextCommon presettaglabeltext presetunittext pretocommalist prettyprintbuffer prevcounter contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
821 syn keyword contextCommon prevcountervalue preventmode prevrealpage prevrealpagenumber prevsubcountervalue contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
822 syn keyword contextCommon prevsubpage prevsubpagenumber prevuserpage prevuserpagenumber prime contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
823 syn keyword contextCommon primes procent processMPbuffer processMPfigurefile processaction contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
824 syn keyword contextCommon processallactionsinset processassignlist processassignmentcommand processassignmentlist processbetween contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
825 syn keyword contextCommon processblocks processbodyfontenvironmentlist processcolorcomponents processcommacommand processcommalist contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
826 syn keyword contextCommon processcommalistwithparameters processcontent processfile processfilemany processfilenone contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
827 syn keyword contextCommon processfileonce processfirstactioninset processisolatedchars processisolatedwords processlinetablebuffer contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
828 syn keyword contextCommon processlinetablefile processlist processmonth processranges processseparatedlist contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
829 syn keyword contextCommon processtexbuffer processtokens processuntil processxtablebuffer processyear contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
830 syn keyword contextCommon prod product profiledbox profilegivenbox program contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
831 syn keyword contextCommon project propto protect protectedcolors pseudoMixedCapped contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
832 syn keyword contextCommon pseudoSmallCapped pseudoSmallcapped pseudosmallcapped psi publication contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
833 syn keyword contextCommon punctuation punctuationspace purenumber pushattribute pushbutton contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
834 syn keyword contextCommon pushmacro pushmode pushoutputstream pushsystemmode putboxincache contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
835 syn keyword contextCommon putnextboxincache qquad quad quadrupleprime quads contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
836 syn keyword contextCommon quarterstrut questiondown questionedeq quitcommalist quitprevcommalist contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
837 syn keyword contextCommon quittypescriptscanning quotation quote quotedbl quotedblbase contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
838 syn keyword contextCommon quotedblleft quotedblright quoteleft quoteright quotesingle contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
839 syn keyword contextCommon quotesinglebase rVert racute raggedbottom raggedcenter contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
840 syn keyword contextCommon raggedleft raggedright raggedwidecenter raisebox randomized contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
841 syn keyword contextCommon randomizetext randomnumber randomseed rangle rationals contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
842 syn keyword contextCommon rawcounter rawcountervalue rawdate rawdoifelseinset rawdoifinset contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
843 syn keyword contextCommon rawdoifinsetelse rawgetparameters rawprocessaction rawprocesscommacommand rawprocesscommalist contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
844 syn keyword contextCommon rawsetups rawstructurelistuservariable rawsubcountervalue rbox rbrace contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
845 syn keyword contextCommon rbracket rcaron rceil rcommaaccent rdoublegrave contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
846 syn keyword contextCommon readfile readfixfile readingfile readjobfile readlocfile contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
847 syn keyword contextCommon readsetfile readsysfile readtexfile readxmlfile realSmallCapped contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
848 syn keyword contextCommon realSmallcapped realpagenumber reals realsmallcapped recursedepth contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
849 syn keyword contextCommon recurselevel recursestring redoconvertfont ref reference contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
850 syn keyword contextCommon referencecolumnnumber referencepagedetail referencepagestate referenceprefix referencerealpage contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
851 syn keyword contextCommon referencesymbol referring regime registerattachment registerctxluafile contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
852 syn keyword contextCommon registered registerexternalfigure registerfontclass registerhyphenationexception registerhyphenationpattern contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
853 syn keyword contextCommon registermenubuttons registerparwrapper registerparwrapperreverse registersort registersynonym contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
854 syn keyword contextCommon registerunit regular relatemarking relateparameterhandlers relaxvalueifundefined contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
855 syn keyword contextCommon relbar remainingcharacters remark removebottomthings removedepth contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
856 syn keyword contextCommon removefromcommalist removelastskip removelastspace removemarkedcontent removepunctuation contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
857 syn keyword contextCommon removesubstring removetoks removeunwantedspaces repeathead replacefeature contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
858 syn keyword contextCommon replaceincommalist replaceword rescan rescanwithsetup resetMPdrawing contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
859 syn keyword contextCommon resetMPenvironment resetMPinstance resetallattributes resetandaddfeature resetbar contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
860 syn keyword contextCommon resetboxesincache resetbreakpoints resetbuffer resetcharacteralign resetcharacterkerning contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
861 syn keyword contextCommon resetcharacterspacing resetcharacterstripping resetcollector resetcounter resetctxscanner contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
862 syn keyword contextCommon resetdigitsmanipulation resetdirection resetfeature resetflag resetfontcolorsheme contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
863 syn keyword contextCommon resetfontfallback resetfontsolution resethyphenationfeatures resetinjector resetinteractionmenu contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
864 syn keyword contextCommon resetitaliccorrection resetlayer resetlocalfloats resetmarker resetmarking contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
865 syn keyword contextCommon resetmode resetpagenumber resetparallel resetpath resetpenalties contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
866 syn keyword contextCommon resetperiodkerning resetprofile resetrecurselevel resetreference resetreplacements contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
867 syn keyword contextCommon resetscript resetsetups resetshownsynonyms resetsubpagenumber resetsymbolset contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
868 syn keyword contextCommon resetsystemmode resettimer resettokenlist resettrackers resettrialtypesetting contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
869 syn keyword contextCommon resetusedsortings resetusedsynonyms resetuserpagenumber resetvalue resetvisualizers contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
870 syn keyword contextCommon reshapebox resolvedglyphdirect resolvedglyphstyled restartcounter restorebox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
871 syn keyword contextCommon restorecatcodes restorecounter restorecurrentattributes restoreendofline restoreglobalbodyfont contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
872 syn keyword contextCommon restriction retestfeature reusableMPgraphic reuseMPgraphic reuserandomseed contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
873 syn keyword contextCommon reverseddoubleprime reversedprime reversedtripleprime reversehbox reversehpack contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
874 syn keyword contextCommon reversetpack reversevbox reversevboxcontent reversevpack reversevtop contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
875 syn keyword contextCommon revivefeature rfence rfloor rgroup rhbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
876 syn keyword contextCommon rho rhooknearrow rhookswarrow right rightaligned contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
877 syn keyword contextCommon rightangle rightarrow rightarrowbar rightarrowtail rightarrowtriangle contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
878 syn keyword contextCommon rightbottombox rightbox rightdasharrow rightguillemot rightharpoondown contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
879 syn keyword contextCommon rightharpoonup righthbox rightheadtext rightlabeltext rightleftarrows contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
880 syn keyword contextCommon rightleftharpoons rightline rightmathlabeltext rightorleftpageaction rightpageorder contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
881 syn keyword contextCommon rightrightarrows rightskipadaption rightsquigarrow rightsubguillemot rightthreearrows contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
882 syn keyword contextCommon rightthreetimes righttoleft righttolefthbox righttoleftvbox righttoleftvtop contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
883 syn keyword contextCommon righttopbox rightwavearrow rightwhitearrow ring rinterval contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
884 syn keyword contextCommon rinvertedbreve risingdotseq rlap rlointerval rmoustache contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
885 syn keyword contextCommon rneq robustaddtocommalist robustdoifelseinset robustdoifinsetelse robustpretocommalist contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
886 syn keyword contextCommon rointerval rollbutton roman romanC romanD contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
887 syn keyword contextCommon romanI romanII romanIII romanIV romanIX contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
888 syn keyword contextCommon romanL romanM romanV romanVI romanVII contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
889 syn keyword contextCommon romanVIII romanX romanXI romanXII romanc contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
890 syn keyword contextCommon romand romani romanii romaniii romaniv contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
891 syn keyword contextCommon romanix romanl romanm romannumerals romanv contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
892 syn keyword contextCommon romanvi romanvii romanviii romanx romanxi contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
893 syn keyword contextCommon romanxii rootradical rotate rparent rrangle contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
894 syn keyword contextCommon rrbracket rrointerval rtimes rtlhbox rtlvbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
895 syn keyword contextCommon rtlvtop rtop ruby ruledhbox ruledhpack contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
896 syn keyword contextCommon ruledmbox ruledtopv ruledtpack ruledvbox ruledvpack contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
897 syn keyword contextCommon ruledvtop runMPbuffer runninghbox russianNumerals russiannumerals contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
898 syn keyword contextCommon rvert sacute safechar samplefile sans contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
899 syn keyword contextCommon sansbold sansnormal sansserif savebox savebtxdataset contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
900 syn keyword contextCommon savebuffer savecounter savecurrentattributes savenormalmeaning savetaggedtwopassdata contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
901 syn keyword contextCommon savetwopassdata sbox scale scaron scedilla contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
902 syn keyword contextCommon schwa schwahook scircumflex scommaaccent screen contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
903 syn keyword contextCommon script sdformula searrow secondoffivearguments secondoffourarguments contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
904 syn keyword contextCommon secondofsixarguments secondofthreearguments secondofthreeunexpanded secondoftwoarguments secondoftwounexpanded contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
905 syn keyword contextCommon section sectionblock sectionblockenvironment sectionlevel sectionmark contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
906 syn keyword contextCommon seeindex select selectblocks serializecommalist serializedcommalist contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
907 syn keyword contextCommon serif serifbold serifnormal setJSpreamble setMPlayer contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
908 syn keyword contextCommon setMPpositiongraphic setMPpositiongraphicrange setMPtext setMPvariable setMPvariables contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
909 syn keyword contextCommon setautopagestaterealpageno setbar setbigbodyfont setboxllx setboxlly contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
910 syn keyword contextCommon setbreakpoints setcapstrut setcatcodetable setcharacteralign setcharacteraligndetail contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
911 syn keyword contextCommon setcharactercasing setcharactercleaning setcharacterkerning setcharacterspacing setcharacterstripping contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
912 syn keyword contextCommon setcharstrut setcollector setcolormodell setcounter setcounterown contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
913 syn keyword contextCommon setctxluafunction setcurrentfontclass setdataset setdatavalue setdefaultpenalties contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
914 syn keyword contextCommon setdigitsmanipulation setdirection setdocumentargument setdocumentargumentdefault setdocumentfilename contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
915 syn keyword contextCommon setdummyparameter setelementexporttag setemeasure setevalue setevariable contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
916 syn keyword contextCommon setevariables setexpansion setfirstline setfirstpasscharacteralign setflag contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
917 syn keyword contextCommon setfont setfontcolorsheme setfontfeature setfontsolution setfontstrut contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
918 syn keyword contextCommon setfractions setglobalscript setgmeasure setgvalue setgvariable contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
919 syn keyword contextCommon setgvariables sethboxregister sethyphenatedurlafter sethyphenatedurlbefore sethyphenatedurlnormal contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
920 syn keyword contextCommon sethyphenationfeatures setinitial setinjector setinteraction setinterfacecommand contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
921 syn keyword contextCommon setinterfaceconstant setinterfaceelement setinterfacemessage setinterfacevariable setinternalrendering contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
922 syn keyword contextCommon setitaliccorrection setlayer setlayerframed setlayertext setlinefiller contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
923 syn keyword contextCommon setlocalhsize setlocalscript setluatable setmainbodyfont setmainparbuilder contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
924 syn keyword contextCommon setmarker setmarking setmathstyle setmeasure setmessagetext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
925 syn keyword contextCommon setminus setmode setnostrut setnote setnotetext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
926 syn keyword contextCommon setobject setoldstyle setpagereference setpagestate setpagestaterealpageno contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
927 syn keyword contextCommon setparagraphfreezing setpenalties setpercentdimen setperiodkerning setposition contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
928 syn keyword contextCommon setpositionbox setpositiondata setpositiondataplus setpositiononly setpositionplus contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
929 syn keyword contextCommon setpositionstrut setprofile setrandomseed setreference setreferencedobject contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
930 syn keyword contextCommon setregisterentry setreplacements setrigidcolumnbalance setrigidcolumnhsize setscript contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
931 syn keyword contextCommon setsecondpasscharacteralign setsectionblock setsimplecolumnshsize setsmallbodyfont setsmallcaps contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
932 syn keyword contextCommon setstackbox setstructurepageregister setstrut setsuperiors setsystemmode contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
933 syn keyword contextCommon settabular settaggedmetadata settestcrlf settextcontent settightobject contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
934 syn keyword contextCommon settightreferencedobject settightstrut settightunreferencedobject settokenlist settrialtypesetting contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
935 syn keyword contextCommon setuevalue setugvalue setunreferencedobject setup setupMPgraphics contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
936 syn keyword contextCommon setupMPinstance setupMPpage setupMPvariables setupTABLE setupTEXpage contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
937 syn keyword contextCommon setupalign setupalternativestyles setuparranging setupattachment setupattachments contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
938 syn keyword contextCommon setupbackend setupbackground setupbackgrounds setupbar setupbars contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
939 syn keyword contextCommon setupblackrules setupblank setupbleeding setupblock setupbodyfont contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
940 syn keyword contextCommon setupbodyfontenvironment setupbookmark setupbottom setupbottomtexts setupbtx contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
941 syn keyword contextCommon setupbtxdataset setupbtxlabeltext setupbtxlist setupbtxregister setupbtxrendering contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
942 syn keyword contextCommon setupbuffer setupbutton setupcapitals setupcaption setupcaptions contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
943 syn keyword contextCommon setupcharacteralign setupcharacterkerning setupcharacterspacing setupchemical setupchemicalframed contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
944 syn keyword contextCommon setupclipping setupcollector setupcolor setupcolors setupcolumns contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
945 syn keyword contextCommon setupcolumnset setupcolumnsetarea setupcolumnsetareatext setupcolumnsetlines setupcolumnsetspan contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
946 syn keyword contextCommon setupcolumnsetstart setupcombination setupcombinedlist setupcomment setupcontent contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
947 syn keyword contextCommon setupcounter setupdataset setupdelimitedtext setupdescription setupdescriptions contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
948 syn keyword contextCommon setupdirections setupdocument setupeffect setupenumeration setupenumerations contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
949 syn keyword contextCommon setupenv setupexpansion setupexport setupexternalfigure setupexternalfigures contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
950 syn keyword contextCommon setupexternalsoundtracks setupfacingfloat setupfield setupfieldbody setupfieldcategory contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
951 syn keyword contextCommon setupfieldcontentframed setupfieldlabelframed setupfields setupfieldtotalframed setupfiller contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
952 syn keyword contextCommon setupfillinlines setupfillinrules setupfirstline setupfittingpage setupfloat contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
953 syn keyword contextCommon setupfloatframed setupfloats setupfloatsplitting setupfontexpansion setupfontprotrusion contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
954 syn keyword contextCommon setupfonts setupfontsolution setupfooter setupfootertexts setupfootnotes contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
955 syn keyword contextCommon setupforms setupformula setupformulae setupformulaframed setupframed contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
956 syn keyword contextCommon setupframedcontent setupframedtable setupframedtablecolumn setupframedtablerow setupframedtext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
957 syn keyword contextCommon setupframedtexts setupglobalreferenceprefix setuphead setupheadalternative setupheader contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
958 syn keyword contextCommon setupheadertexts setupheadnumber setupheads setupheadtext setuphelp contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
959 syn keyword contextCommon setuphigh setuphighlight setuphyphenation setuphyphenmark setupindentedtext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
960 syn keyword contextCommon setupindenting setupindex setupinitial setupinsertion setupinteraction contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
961 syn keyword contextCommon setupinteractionbar setupinteractionmenu setupinteractionscreen setupinterlinespace setupitaliccorrection contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
962 syn keyword contextCommon setupitemgroup setupitemizations setupitemize setupitems setuplabel contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
963 syn keyword contextCommon setuplabeltext setuplanguage setuplayer setuplayeredtext setuplayout contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
964 syn keyword contextCommon setuplayouttext setuplegend setuplinefiller setuplinefillers setuplinenote contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
965 syn keyword contextCommon setuplinenumbering setuplines setuplinetable setuplinewidth setuplist contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
966 syn keyword contextCommon setuplistalternative setuplistextra setuplocalfloats setuplocalinterlinespace setuplow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
967 syn keyword contextCommon setuplowhigh setuplowmidhigh setupmakeup setupmarginblock setupmargindata contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
968 syn keyword contextCommon setupmarginframed setupmarginrule setupmarginrules setupmarking setupmathalignment contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
969 syn keyword contextCommon setupmathcases setupmathematics setupmathfence setupmathfraction setupmathfractions contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
970 syn keyword contextCommon setupmathframed setupmathlabeltext setupmathmatrix setupmathornament setupmathradical contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
971 syn keyword contextCommon setupmathstackers setupmathstyle setupmixedcolumns setupmodule setupmulticolumns contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
972 syn keyword contextCommon setupnarrower setupnotation setupnotations setupnote setupnotes contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
973 syn keyword contextCommon setupoffset setupoffsetbox setupoperatortext setupoppositeplacing setuporientation contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
974 syn keyword contextCommon setupoutput setupoutputroutine setuppagechecker setuppagecolumns setuppagecomment contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
975 syn keyword contextCommon setuppageinjection setuppageinjectionalternative setuppagenumber setuppagenumbering setuppageshift contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
976 syn keyword contextCommon setuppagestate setuppagetransitions setuppairedbox setuppalet setuppaper contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
977 syn keyword contextCommon setuppapersize setupparagraph setupparagraphintro setupparagraphnumbering setupparagraphs contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
978 syn keyword contextCommon setupparallel setupperiodkerning setupperiods setupplaceholder setupplacement contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
979 syn keyword contextCommon setuppositionbar setuppositioning setupprefixtext setupprocessor setupprofile contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
980 syn keyword contextCommon setupprograms setupquotation setupquote setuprealpagenumber setupreferenceformat contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
981 syn keyword contextCommon setupreferenceprefix setupreferencestructureprefix setupreferencing setupregister setupregisters contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
982 syn keyword contextCommon setuprenderingwindow setuprotate setupruby setups setupscale contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
983 syn keyword contextCommon setupscript setupscripts setupsectionblock setupselector setupshift contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
984 syn keyword contextCommon setupsidebar setupsorting setupspacing setupspellchecking setupstartstop contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
985 syn keyword contextCommon setupstretched setupstrut setupstyle setupsubformula setupsubformulas contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
986 syn keyword contextCommon setupsubpagenumber setupsuffixtext setupsymbols setupsymbolset setupsynctex contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
987 syn keyword contextCommon setupsynonyms setupsystem setuptables setuptabulate setuptagging contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
988 syn keyword contextCommon setuptaglabeltext setuptext setuptextbackground setuptextflow setuptextnote contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
989 syn keyword contextCommon setuptextrules setuptexttexts setupthinrules setuptolerance setuptooltip contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
990 syn keyword contextCommon setuptop setuptoptexts setuptype setuptyping setupunit contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
991 syn keyword contextCommon setupunittext setupurl setupuserdata setupuserdataalternative setupuserpagenumber contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
992 syn keyword contextCommon setupversion setupviewerlayer setupvspacing setupwhitespace setupwithargument contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
993 syn keyword contextCommon setupwithargumentswapped setupxml setupxtable setuvalue setuxvalue contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
994 syn keyword contextCommon setvalue setvariable setvariables setvboxregister setvisualizerfont contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
995 syn keyword contextCommon setvtopregister setwidthof setxmeasure setxvalue setxvariable contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
996 syn keyword contextCommon setxvariables seveneighths sfrac shapebox shapedhbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
997 syn keyword contextCommon sharp shift shiftbox shiftdown shiftup contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
998 syn keyword contextCommon showallmakeup showattributes showbodyfont showbodyfontenvironment showboxes contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
999 syn keyword contextCommon showbtxdatasetauthors showbtxdatasetcompleteness showbtxdatasetfields showbtxfields showbtxhashedauthors contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1000 syn keyword contextCommon showbtxtables showchardata showcharratio showcolor showcolorbar contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1001 syn keyword contextCommon showcolorcomponents showcolorgroup showcolorset showcolorstruts showcounter contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1002 syn keyword contextCommon showdirectives showdirsinmargin showedebuginfo showexperiments showfont contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1003 syn keyword contextCommon showfontdata showfontexpansion showfontitalics showfontkerns showfontparameters contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1004 syn keyword contextCommon showfontstrip showfontstyle showframe showglyphdata showglyphs contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1005 syn keyword contextCommon showgrid showgridsnapping showhelp showhyphenationtrace showhyphens contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1006 syn keyword contextCommon showinjector showjustification showkerning showlayout showlayoutcomponents contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1007 syn keyword contextCommon showligature showligatures showlogcategories showluatables showmakeup contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1008 syn keyword contextCommon showmargins showmessage showminimalbaseline shownextbox showotfcomposition contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1009 syn keyword contextCommon showpalet showparentchain showparwrapperstate showprint showsetups contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1010 syn keyword contextCommon showsetupsdefinition showstruts showsymbolset showtimer showtokens contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1011 syn keyword contextCommon showtrackers showvalue showvariable showwarning sidebar contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1012 syn keyword contextCommon sigma signalrightpage sim simeq simplealignedbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1013 syn keyword contextCommon simplealignedboxplus simplealignedspreadbox simplecolumns simplegroupedcommand simplereversealignedbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1014 syn keyword contextCommon simplereversealignedboxplus singalcharacteralign singlebond singleverticalbar sixperemspace contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1015 syn keyword contextCommon sixthofsixarguments slanted slantedbold slantedface slash contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1016 syn keyword contextCommon slicepages slong slovenianNumerals sloveniannumerals small contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1017 syn keyword contextCommon smallbodyfont smallbold smallbolditalic smallboldslanted smallcappedcharacters contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1018 syn keyword contextCommon smallcappedromannumerals smallcaps smaller smallitalicbold smallnormal contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1019 syn keyword contextCommon smallskip smallslanted smallslantedbold smalltype smash contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1020 syn keyword contextCommon smashbox smashboxed smashedhbox smashedvbox smile contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1021 syn keyword contextCommon snaptogrid softhyphen solidus someheadnumber somekindoftab contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1022 syn keyword contextCommon someline somelocalfloat somenamedheadnumber someplace somewhere contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1023 syn keyword contextCommon space spaceddigits spaceddigitsmethod spaceddigitsseparator spaceddigitssymbol contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1024 syn keyword contextCommon spadesuit spanishNumerals spanishnumerals specialitem speech contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1025 syn keyword contextCommon spformula sphericalangle splitatasterisk splitatcolon splitatcolons contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1026 syn keyword contextCommon splitatcomma splitatperiod splitdfrac splitfilename splitfloat contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1027 syn keyword contextCommon splitformula splitfrac splitoffbase splitofffull splitoffkind contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1028 syn keyword contextCommon splitoffname splitoffpath splitoffroot splitofftokens splitofftype contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1029 syn keyword contextCommon splitstring splittext spread spreadhbox sqcap contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1030 syn keyword contextCommon sqcup sqrt sqsubset sqsubseteq sqsubsetneq contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1031 syn keyword contextCommon sqsupset sqsupseteq sqsupsetneq square squaredots contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1032 syn keyword contextCommon ssharp stackrel stackscripts standardmakeup star contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1033 syn keyword contextCommon stareq startline startlinenote startregister startstructurepageregister contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1034 syn keyword contextCommon staticMPfigure staticMPgraphic stligature stopline stoplinenote contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1035 syn keyword contextCommon stretched strictdoifelsenextoptional strictdoifnextoptionalelse strictinspectnextcharacter stripcharacter contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1036 syn keyword contextCommon strippedcsname stripspaces structurelistuservariable structurenumber structuretitle contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1037 syn keyword contextCommon structureuservariable structurevariable strut strutdp strutgap contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1038 syn keyword contextCommon strutht struthtdp struttedbox strutwd style contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1039 syn keyword contextCommon styleinstance subformulas subject subjectlevel subpagenumber contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1040 syn keyword contextCommon subsection subsentence subset subseteq subseteqq contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1041 syn keyword contextCommon subsetneq subsetneqq substack substituteincommalist subsubject contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1042 syn keyword contextCommon subsubsection subsubsubject subsubsubsection subsubsubsubject subsubsubsubsection contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1043 syn keyword contextCommon subsubsubsubsubject subtractfeature succ succapprox succcurlyeq contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1044 syn keyword contextCommon succeq succeqq succnapprox succneq succneqq contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1045 syn keyword contextCommon succnsim succsim suffixlanguage suffixtext sum contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1046 syn keyword contextCommon supset supseteq supseteqq supsetneq supsetneqq contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1047 syn keyword contextCommon surd surdradical swapcounts swapdimens swapface contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1048 syn keyword contextCommon swapmacros swaptypeface swarrow switchstyleonly switchtobodyfont contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1049 syn keyword contextCommon switchtocolor switchtointerlinespace symbol symbolreference symbolset contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1050 syn keyword contextCommon synchronizeblank synchronizeindenting synchronizemarking synchronizeoutputstreams synchronizestrut contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1051 syn keyword contextCommon synchronizewhitespace synctexblockfilename synctexresetfilename synctexsetfilename systemlog contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1052 syn keyword contextCommon systemlogfirst systemloglast systemsetups tLeftarrow tLeftrightarrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1053 syn keyword contextCommon tRightarrow table tablehead tables tabletail contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1054 syn keyword contextCommon tabletext tabulate tabulateautoline tabulateautorule tabulatehead contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1055 syn keyword contextCommon tabulateline tabulaterule tabulatetail tagged taggedctxcommand contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1056 syn keyword contextCommon taggedlabeltexts taglabellanguage taglabeltext tau tbinom contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1057 syn keyword contextCommon tbox tcaron tcedilla tcommaaccent tcurl contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1058 syn keyword contextCommon tequal test testandsplitstring testcolumn testfeature contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1059 syn keyword contextCommon testfeatureonce testpage testpageonly testpagesync testtokens contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1060 syn keyword contextCommon tex texcode texdefinition texsetup text contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1061 syn keyword contextCommon textAngstrom textacute textampersand textasciicircum textasciitilde contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1062 syn keyword contextCommon textat textbackground textbackgroundmanual textbackslash textbar contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1063 syn keyword contextCommon textbottomcomma textbottomdot textbraceleft textbraceright textbreve contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1064 syn keyword contextCommon textbrokenbar textbullet textcaron textcedilla textcelsius contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1065 syn keyword contextCommon textcent textcircledP textcircumflex textcitation textcite contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1066 syn keyword contextCommon textcolor textcolorintent textcomma textcontrolspace textcurrency contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1067 syn keyword contextCommon textdag textddag textdegree textdiaeresis textdiv contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1068 syn keyword contextCommon textdollar textdong textdotaccent textellipsis texteuro contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1069 syn keyword contextCommon textflow textflowcollector textfraction textgrave texthash contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1070 syn keyword contextCommon texthorizontalbar texthungarumlaut texthyphen textkelvin textlognot contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1071 syn keyword contextCommon textmacron textmakeup textmath textmho textminus contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1072 syn keyword contextCommon textmp textmu textmultiply textnumero textogonek contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1073 syn keyword contextCommon textohm textormathchar textormathchars textounce textpercent contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1074 syn keyword contextCommon textperiod textplus textpm textreference textring contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1075 syn keyword contextCommon textrule textslash textsterling texttilde textunderscore contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1076 syn keyword contextCommon textvisiblespace textyen thai thainumerals thedatavalue contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1077 syn keyword contextCommon thefirstcharacter thematrix thenormalizedbodyfontsize theorientation therefore contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1078 syn keyword contextCommon theremainingcharacters theta thickspace thinrule thinrules contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1079 syn keyword contextCommon thinspace thirdoffivearguments thirdoffourarguments thirdofsixarguments thirdofthreearguments contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1080 syn keyword contextCommon thirdofthreeunexpanded thook thookleftarrow thookrightarrow thorn contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1081 syn keyword contextCommon threedigitrounding threeeighths threefifths threeperemspace threequarter contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1082 syn keyword contextCommon threesuperior tibetannumerals tightlayer tilde times contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1083 syn keyword contextCommon tinyfont title tlap tleftarrow tleftharpoondown contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1084 syn keyword contextCommon tleftharpoonup tleftrightarrow tleftrightharpoons tmapsto to contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1085 syn keyword contextCommon tochar tokenlist tokens tolinenote tooltip contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1086 syn keyword contextCommon top topbox topleftbox toplinebox toprightbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1087 syn keyword contextCommon topskippedbox tracecatcodetables tracedfontname tracedpagestate traceoutputroutines contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1088 syn keyword contextCommon tracepositions trademark translate transparencycomponents transparent[] contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1089 syn keyword contextCommon trel triangle triangledown triangleleft triangleq contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1090 syn keyword contextCommon triangleright trightarrow trightharpoondown trightharpoonup trightleftharpoons contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1091 syn keyword contextCommon trightoverleftarrow triplebond tripleprime tripleverticalbar truefilename contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1092 syn keyword contextCommon truefontname tstroke ttraggedright ttriplerel ttwoheadleftarrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1093 syn keyword contextCommon ttwoheadrightarrow turnediota twodigitrounding twofifths twoheaddownarrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1094 syn keyword contextCommon twoheadleftarrow twoheadrightarrow twoheadrightarrowtail twoheaduparrow twosuperior contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1095 syn keyword contextCommon twothirds tx txx typ type contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1096 syn keyword contextCommon typebuffer typedefinedbuffer typeface typefile typeinlinebuffer contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1097 syn keyword contextCommon typescript typescriptcollection typescriptone typescriptprefix typescriptthree contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1098 syn keyword contextCommon typescripttwo typesetbuffer typesetbufferonly typesetfile typing contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1099 syn keyword contextCommon uacute ubreve ucaron uchexnumber uchexnumbers contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1100 syn keyword contextCommon ucircumflex uconvertnumber udiaeresis udiaeresisacute udiaeresiscaron contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1101 syn keyword contextCommon udiaeresisgrave udiaeresismacron udotbelow udots udoublegrave contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1102 syn keyword contextCommon uedcatcodecommand ugrave uhook uhorn uhornacute contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1103 syn keyword contextCommon uhorndotbelow uhorngrave uhornhook uhorntilde uhungarumlaut contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1104 syn keyword contextCommon uinvertedbreve ulcorner umacron undefinevalue undepthed contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1105 syn keyword contextCommon underbar underbars underbartext underbrace underbracetext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1106 syn keyword contextCommon underbracket underbrackettext underdash underdashes underdot contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1107 syn keyword contextCommon underdots underleftarrow underleftharpoondown underleftharpoonup underleftrightarrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1108 syn keyword contextCommon underparent underparenttext underrandom underrandoms underrightarrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1109 syn keyword contextCommon underrightharpoondown underrightharpoonup underset understrike understrikes contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1110 syn keyword contextCommon undertwoheadleftarrow undertwoheadrightarrow undoassign unexpandeddocumentvariable unframed contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1111 syn keyword contextCommon unhhbox unihex uniqueMPgraphic uniqueMPpagegraphic unit contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1112 syn keyword contextCommon unitlanguage unitshigh unitslow unittext unknown contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1113 syn keyword contextCommon unpacked unprotected unregisterhyphenationpattern unregisterparwrapper unspaceafter contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1114 syn keyword contextCommon unspaceargument unspaced unspacestring unstackscripts untexargument contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1115 syn keyword contextCommon untexcommand uogonek upand uparrow updasharrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1116 syn keyword contextCommon updateparagraphdemerits updateparagraphpenalties updateparagraphproperties updateparagraphshapes updownarrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1117 syn keyword contextCommon updownarrowbar updownarrows upharpoonleft upharpoonright uplus contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1118 syn keyword contextCommon uppercased uppercasestring uppercasing upperleftdoubleninequote upperleftdoublesixquote contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1119 syn keyword contextCommon upperleftsingleninequote upperleftsinglesixquote upperrightdoubleninequote upperrightdoublesixquote upperrightsingleninequote contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1120 syn keyword contextCommon upperrightsinglesixquote upsilon upuparrows upwhitearrow urcorner contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1121 syn keyword contextCommon uring url usableMPgraphic useJSscripts useMPenvironmentbuffer contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1122 syn keyword contextCommon useMPgraphic useMPlibrary useMPrun useMPvariables useURL contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1123 syn keyword contextCommon usealignparameter useblankparameter useblocks usebodyfont usebodyfontparameter contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1124 syn keyword contextCommon usebtxdataset usebtxdefinitions usecitation usecolors usecomponent contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1125 syn keyword contextCommon usedirectory usedummycolorparameter usedummystyleandcolor usedummystyleparameter useenvironment contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1126 syn keyword contextCommon useexternaldocument useexternalfigure useexternalrendering useexternalsoundtrack usefigurebase contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1127 syn keyword contextCommon usefile usefontpath usegridparameter usehyphensparameter useindentingparameter contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1128 syn keyword contextCommon useindentnextparameter useinterlinespaceparameter uselanguageparameter useluamodule useluatable contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1129 syn keyword contextCommon usemathstyleparameter usemodule useproduct useprofileparameter useproject contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1130 syn keyword contextCommon userdata usereferenceparameter userpagenumber usesetupsparameter usestaticMPfigure contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1131 syn keyword contextCommon usesubpath usesymbols usetexmodule usetypescript usetypescriptfile contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1132 syn keyword contextCommon useurl usezipfile usingbtxspecification utfchar utflower contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1133 syn keyword contextCommon utfupper utilde utilityregisterlength vDash validassignment contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1134 syn keyword contextCommon varTheta varepsilon varkappa varnothing varphi contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1135 syn keyword contextCommon varpi varrho varsigma vartheta vbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1136 syn keyword contextCommon vboxreference vboxregister vboxtohbox vboxtohboxseparator vdash contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1137 syn keyword contextCommon vdots vec vee veebar veeeq contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1138 syn keyword contextCommon verbatim verbatimstring verbosenumber version vert contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1139 syn keyword contextCommon verticalgrowingbar verticalpositionbar veryraggedcenter veryraggedleft veryraggedright contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1140 syn keyword contextCommon vglue viewerlayer vl vpackbox vpackedbox contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1141 syn keyword contextCommon vphantom vpos vsmash vsmashbox vsmashed contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1142 syn keyword contextCommon vspace vspacing vtop vtopregister wcircumflex contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1143 syn keyword contextCommon wdofstring wedge wedgeeq weekday whitearrowupfrombar contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1144 syn keyword contextCommon wideacute widebar widebreve widecheck wideddot contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1145 syn keyword contextCommon widedot widegrave widehat widering widetilde contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1146 syn keyword contextCommon widthofstring widthspanningtext withoutpt word wordright contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1147 syn keyword contextCommon words wordtonumber wp wr writebetweenlist contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1148 syn keyword contextCommon writedatatolist writestatus writetolist xLeftarrow xLeftrightarrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1149 syn keyword contextCommon xRightarrow xcell xcellgroup xcolumn xdefconvertedargument contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1150 syn keyword contextCommon xequal xfrac xgroup xhookleftarrow xhookrightarrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1151 syn keyword contextCommon xi xleftarrow xleftharpoondown xleftharpoonup xleftrightarrow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1152 syn keyword contextCommon xleftrightharpoons xmapsto xmladdindex xmlafterdocumentsetup xmlaftersetup contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1153 syn keyword contextCommon xmlall xmlappenddocumentsetup xmlappendsetup xmlapplyselectors xmlatt contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1154 syn keyword contextCommon xmlattdef xmlattribute xmlattributedef xmlbadinclusions xmlbeforedocumentsetup contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1155 syn keyword contextCommon xmlbeforesetup xmlchainatt xmlchainattdef xmlchecknamespace xmlcommand contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1156 syn keyword contextCommon xmlconcat xmlconcatrange xmlcontext xmlcount xmldefaulttotext contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1157 syn keyword contextCommon xmldepth xmldirectives xmldirectivesafter xmldirectivesbefore xmldisplayverbatim contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1158 syn keyword contextCommon xmldoif xmldoifatt xmldoifelse xmldoifelseatt xmldoifelseempty contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1159 syn keyword contextCommon xmldoifelseselfempty xmldoifelsetext xmldoifelsevalue xmldoifnot xmldoifnotatt contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1160 syn keyword contextCommon xmldoifnotselfempty xmldoifnottext xmldoifselfempty xmldoiftext xmlelement contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1161 syn keyword contextCommon xmlfilter xmlfirst xmlflush xmlflushcontext xmlflushdocumentsetups contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1162 syn keyword contextCommon xmlflushlinewise xmlflushpure xmlflushspacewise xmlflushtext xmlinclude contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1163 syn keyword contextCommon xmlinclusion xmlinclusions xmlinfo xmlinjector xmlinlineprettyprint contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1164 syn keyword contextCommon xmlinlineprettyprinttext xmlinlineverbatim xmlinstalldirective xmllast xmllastatt contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1165 syn keyword contextCommon xmllastmatch xmllastpar xmlloadbuffer xmlloaddata xmlloaddirectives contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1166 syn keyword contextCommon xmlloadfile xmlloadonly xmlmain xmlmapvalue xmlname contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1167 syn keyword contextCommon xmlnamespace xmlnonspace xmlpar xmlparam xmlpath contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1168 syn keyword contextCommon xmlpos xmlposition xmlprependdocumentsetup xmlprependsetup xmlprettyprint contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1169 syn keyword contextCommon xmlprettyprinttext xmlprocessbuffer xmlprocessdata xmlprocessfile xmlpure contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1170 syn keyword contextCommon xmlraw xmlrefatt xmlregistereddocumentsetups xmlregisteredsetups xmlregisterns contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1171 syn keyword contextCommon xmlremapname xmlremapnamespace xmlremovedocumentsetup xmlremovesetup xmlresetdocumentsetups contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1172 syn keyword contextCommon xmlresetinjectors xmlresetsetups xmlsave xmlsetatt xmlsetattribute contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1173 syn keyword contextCommon xmlsetentity xmlsetfunction xmlsetinjectors xmlsetpar xmlsetparam contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1174 syn keyword contextCommon xmlsetsetup xmlsetup xmlsetups xmlshow xmlsnippet contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1175 syn keyword contextCommon xmlstrip xmlstripnolines xmlstripped xmlstrippednolines xmltag contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1176 syn keyword contextCommon xmltexentity xmltext xmltobuffer xmltobufferverbose xmltofile contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1177 syn keyword contextCommon xmlvalue xmlverbatim xrel xrightarrow xrightharpoondown contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1178 syn keyword contextCommon xrightharpoonup xrightleftharpoons xrightoverleftarrow xrow xrowgroup contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1179 syn keyword contextCommon xsplitstring xtable xtablebody xtablefoot xtablehead contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1180 syn keyword contextCommon xtablenext xtriplerel xtwoheadleftarrow xtwoheadrightarrow xxfrac contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1181 syn keyword contextCommon xypos yacute ycircumflex ydiaeresis ydotbelow contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1182 syn keyword contextCommon yen ygrave yhook yiddishnumerals ymacron contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1183 syn keyword contextCommon ytilde zacute zcaron zdotaccent zeronumberconversion contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1184 syn keyword contextCommon zerowidthnobreakspace zerowidthspace zeta zhook zstroke contained
d81556766132 runtime(context): update ConTeXt keywords and other minor fixes (#13778)
Christian Brabandt <cb@256bit.org>
parents: 29840
diff changeset
1185 syn keyword contextCommon zwj zwnj contained