runtime(context): update ConTeXt keywords and other minor fixes (#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>
This commit is contained in:
Lifepillar
2023-12-27 18:49:50 +01:00
committed by GitHub
parent cea3dac76e
commit 0bca4a0018
10 changed files with 1603 additions and 1581 deletions

View File

@ -3,7 +3,7 @@ vim9script
# Language: ConTeXt typesetting engine # Language: ConTeXt typesetting engine
# Maintainer: Nicola Vitacolonna <nvitacolonna@gmail.com> # Maintainer: Nicola Vitacolonna <nvitacolonna@gmail.com>
# Former Maintainers: Nikolai Weibull <now@bitwi.se> # Former Maintainers: Nikolai Weibull <now@bitwi.se>
# Latest Revision: 2022 Sep 19 # Latest Revision: 2023 Dec 26
# Typesetting {{{ # Typesetting {{{
import autoload './typeset.vim' import autoload './typeset.vim'

View File

@ -3,7 +3,7 @@ vim9script
# Language: ConTeXt typesetting engine # Language: ConTeXt typesetting engine
# Maintainer: Nicola Vitacolonna <nvitacolonna@gmail.com> # Maintainer: Nicola Vitacolonna <nvitacolonna@gmail.com>
# Former Maintainers: Nikolai Weibull <now@bitwi.se> # Former Maintainers: Nikolai Weibull <now@bitwi.se>
# Latest Revision: 2022 Aug 12 # Latest Revision: 2023 Dec 26
if exists("g:current_compiler") if exists("g:current_compiler")
finish finish

View File

@ -1,4 +1,4 @@
*ft_context.txt* For Vim version 9.0. Last change: 2022 Sep 27 *ft_context.txt* For Vim version 9.0. Last change: 2023 Dec 26
This is the documentation for the ConTeXt filetype plugin. This is the documentation for the ConTeXt filetype plugin.
@ -103,13 +103,13 @@ Stop all the ConTeXt jobs currently running in the background.
Settings ~ Settings ~
*'b:context_ignore_makefile'* *'b:context_ignore_makefile'*
*'g:context_ignore_makefile'* *'g:context_ignore_makefile'*
`:make` can be used to (synchronously) typeset a document. If a Makefile exists |make| can be used to (synchronously) typeset a document. If a Makefile exists
and this option is not set, standard `make` is used. If this option is set, and this option is not set, standard `make` is used. If this option is set,
`mtxrun` is invoked instead, even if a Makefile exists. `mtxrun` is invoked instead, even if a Makefile exists.
> >
g:context_ignore_makefile = 0 g:context_ignore_makefile = 0
< <
NOTE: before using `:make`, set the working directory of the buffer to the NOTE: before using |make|, set the working directory of the buffer to the
directory of the file to be typeset. directory of the file to be typeset.
*'g:context_extra_options'* *'g:context_extra_options'*

View File

@ -4,7 +4,7 @@ vim9script
# Language: ConTeXt typesetting engine # Language: ConTeXt typesetting engine
# Maintainer: Nicola Vitacolonna <nvitacolonna@gmail.com> # Maintainer: Nicola Vitacolonna <nvitacolonna@gmail.com>
# Former Maintainers: Nikolai Weibull <now@bitwi.se> # Former Maintainers: Nikolai Weibull <now@bitwi.se>
# Latest Revision: 2022 Aug 12 # Latest Revision: 2023 Dec 26
if exists("b:did_ftplugin") if exists("b:did_ftplugin")
finish finish

View File

@ -3,7 +3,7 @@ vim9script
# Language: ConTeXt typesetting engine # Language: ConTeXt typesetting engine
# Maintainer: Nicola Vitacolonna <nvitacolonna@gmail.com> # Maintainer: Nicola Vitacolonna <nvitacolonna@gmail.com>
# Former Maintainers: Nikolai Weibull <now@bitwi.se> # Former Maintainers: Nikolai Weibull <now@bitwi.se>
# Latest Revision: 2022 Aug 12 # Latest Revision: 2023 Dec 26
if exists("b:did_indent") if exists("b:did_indent")
finish finish

View File

@ -4,7 +4,7 @@ vim9script
# Language: ConTeXt typesetting engine # Language: ConTeXt typesetting engine
# Maintainer: Nicola Vitacolonna <nvitacolonna@gmail.com> # Maintainer: Nicola Vitacolonna <nvitacolonna@gmail.com>
# Former Maintainers: Nikolai Weibull <now@bitwi.se> # Former Maintainers: Nikolai Weibull <now@bitwi.se>
# Latest Revision: 2022 Aug 12 # Latest Revision: 2023 Dec 26
if exists("b:current_syntax") if exists("b:current_syntax")
finish finish
@ -90,7 +90,7 @@ syn match contextDirectLua "\\\%(directlua\|ctxlua\)\>\%(\s*%.*$\)\="
\ nextgroup=contextBeginEndLua skipwhite skipempty \ nextgroup=contextBeginEndLua skipwhite skipempty
\ contains=contextComment \ contains=contextComment
syn region contextBeginEndLua matchgroup=contextSpecial syn region contextBeginEndLua matchgroup=contextSpecial
\ start="{" end="}" skip="\\[{}]" \ start="{" end="}" skip="\\[{}]" keepend
\ contained contains=@luaTop,@NoSpell \ contained contains=@luaTop,@NoSpell
for synname in keys(context_include) for synname in keys(context_include)

View File

@ -2,67 +2,66 @@ vim9script
# Vim syntax file # Vim syntax file
# Language: ConTeXt # Language: ConTeXt
# Automatically generated by mtx-interface (2022-08-12 10:49) # Automatically generated by mtx-interface (2023-12-26 16:40)
syn keyword contextConstants zerocount minusone minustwo plusone plustwo contained syn keyword contextConstants zerocount minusone minustwo plusone plustwo contained
syn keyword contextConstants plusthree plusfour plusfive plussix plusseven contained syn keyword contextConstants plusthree plusfour plusfive plussix plusseven contained
syn keyword contextConstants pluseight plusnine plusten pluseleven plustwelve contained syn keyword contextConstants pluseight plusnine plusten pluseleven plustwelve contained
syn keyword contextConstants plussixteen plusfifty plushundred plusonehundred plustwohundred contained syn keyword contextConstants plussixteen plusfifty plushundred plusonehundred plustwohundred contained
syn keyword contextConstants plusfivehundred plusthousand plustenthousand plustwentythousand medcard contained syn keyword contextConstants plusfivehundred plusthousand plustenthousand plustwentythousand medcard contained
syn keyword contextConstants maxcard maxcardminusone zeropoint onepoint halfapoint contained syn keyword contextConstants maxcard maxcardminusone maxiterator zeropoint onepoint contained
syn keyword contextConstants onebasepoint maxcount maxdimen scaledpoint thousandpoint contained syn keyword contextConstants halfapoint onebasepoint maxcount maxdimen scaledpoint contained
syn keyword contextConstants points halfpoint zeroskip centeringskip stretchingskip contained syn keyword contextConstants thousandpoint points halfpoint zeroskip centeringskip contained
syn keyword contextConstants shrinkingskip centeringfillskip stretchingfillskip shrinkingfillskip zeromuskip contained syn keyword contextConstants stretchingskip shrinkingskip centeringfillskip stretchingfillskip shrinkingfillskip contained
syn keyword contextConstants onemuskip pluscxxvii pluscxxviii pluscclv pluscclvi contained syn keyword contextConstants zeromuskip onemuskip pluscxxvii pluscxxviii pluscclv contained
syn keyword contextConstants normalpagebox binaryshiftedten binaryshiftedtwenty binaryshiftedthirty thickermuskip contained syn keyword contextConstants pluscclvi normalpagebox binaryshiftedten binaryshiftedtwenty binaryshiftedthirty contained
syn keyword contextConstants directionlefttoright directionrighttoleft endoflinetoken outputnewlinechar emptytoks contained syn keyword contextConstants thickermuskip directionlefttoright directionrighttoleft endoflinetoken outputnewlinechar contained
syn keyword contextConstants empty undefined prerollrun voidbox emptybox contained syn keyword contextConstants emptytoks empty undefined prerollrun voidbox contained
syn keyword contextConstants emptyvbox emptyhbox bigskipamount medskipamount smallskipamount contained syn keyword contextConstants emptybox emptyvbox emptyhbox bigskipamount medskipamount contained
syn keyword contextConstants fmtname fmtversion texengine texenginename texengineversion contained syn keyword contextConstants smallskipamount fmtname fmtversion texengine texenginename contained
syn keyword contextConstants texenginefunctionality luatexengine pdftexengine xetexengine unknownengine contained syn keyword contextConstants texengineversion texenginefunctionality luatexengine pdftexengine xetexengine contained
syn keyword contextConstants contextformat contextversion contextlmtxmode contextmark mksuffix contained syn keyword contextConstants unknownengine contextformat contextversion contextlmtxmode contextmark contained
syn keyword contextConstants activecatcode bgroup egroup endline conditionaltrue contained syn keyword contextConstants mksuffix activecatcode bgroup egroup endline contained
syn keyword contextConstants conditionalfalse attributeunsetvalue statuswrite uprotationangle rightrotationangle contained syn keyword contextConstants conditionaltrue conditionalfalse attributeunsetvalue statuswrite uprotationangle contained
syn keyword contextConstants downrotationangle leftrotationangle inicatcodes ctxcatcodes texcatcodes contained syn keyword contextConstants rightrotationangle downrotationangle leftrotationangle inicatcodes ctxcatcodes contained
syn keyword contextConstants notcatcodes txtcatcodes vrbcatcodes prtcatcodes nilcatcodes contained syn keyword contextConstants texcatcodes notcatcodes txtcatcodes vrbcatcodes prtcatcodes contained
syn keyword contextConstants luacatcodes tpacatcodes tpbcatcodes xmlcatcodes ctdcatcodes contained syn keyword contextConstants nilcatcodes luacatcodes tpacatcodes tpbcatcodes xmlcatcodes contained
syn keyword contextConstants rlncatcodes escapecatcode begingroupcatcode endgroupcatcode mathshiftcatcode contained syn keyword contextConstants ctdcatcodes rlncatcodes escapecatcode begingroupcatcode endgroupcatcode contained
syn keyword contextConstants alignmentcatcode endoflinecatcode parametercatcode superscriptcatcode subscriptcatcode contained syn keyword contextConstants mathshiftcatcode alignmentcatcode endoflinecatcode parametercatcode superscriptcatcode contained
syn keyword contextConstants ignorecatcode spacecatcode lettercatcode othercatcode activecatcode contained syn keyword contextConstants subscriptcatcode ignorecatcode spacecatcode lettercatcode othercatcode contained
syn keyword contextConstants commentcatcode invalidcatcode tabasciicode newlineasciicode formfeedasciicode contained syn keyword contextConstants activecatcode commentcatcode invalidcatcode tabasciicode newlineasciicode contained
syn keyword contextConstants endoflineasciicode endoffileasciicode commaasciicode spaceasciicode periodasciicode contained syn keyword contextConstants formfeedasciicode endoflineasciicode endoffileasciicode commaasciicode spaceasciicode contained
syn keyword contextConstants hashasciicode dollarasciicode commentasciicode ampersandasciicode colonasciicode contained syn keyword contextConstants periodasciicode hashasciicode dollarasciicode commentasciicode ampersandasciicode contained
syn keyword contextConstants backslashasciicode circumflexasciicode underscoreasciicode leftbraceasciicode barasciicode contained syn keyword contextConstants colonasciicode semicolonasciicode backslashasciicode circumflexasciicode underscoreasciicode contained
syn keyword contextConstants rightbraceasciicode tildeasciicode delasciicode leftparentasciicode rightparentasciicode contained syn keyword contextConstants leftbraceasciicode barasciicode rightbraceasciicode tildeasciicode delasciicode contained
syn keyword contextConstants lessthanasciicode morethanasciicode doublecommentsignal atsignasciicode exclamationmarkasciicode contained syn keyword contextConstants leftparentasciicode rightparentasciicode lessthanasciicode morethanasciicode doublecommentsignal contained
syn keyword contextConstants questionmarkasciicode doublequoteasciicode singlequoteasciicode forwardslashasciicode primeasciicode contained syn keyword contextConstants atsignasciicode exclamationmarkasciicode questionmarkasciicode doublequoteasciicode singlequoteasciicode contained
syn keyword contextConstants hyphenasciicode percentasciicode leftbracketasciicode rightbracketasciicode hsizefrozenparcode contained syn keyword contextConstants forwardslashasciicode primeasciicode hyphenasciicode percentasciicode leftbracketasciicode contained
syn keyword contextConstants skipfrozenparcode hangfrozenparcode indentfrozenparcode parfillfrozenparcode adjustfrozenparcode contained syn keyword contextConstants rightbracketasciicode zeroasciicode nineasciicode alowercaseasciicode zlowercaseasciicode contained
syn keyword contextConstants protrudefrozenparcode tolerancefrozenparcode stretchfrozenparcode loosenessfrozenparcode lastlinefrozenparcode contained syn keyword contextConstants hsizefrozenparcode skipfrozenparcode hangfrozenparcode indentfrozenparcode parfillfrozenparcode contained
syn keyword contextConstants linepenaltyfrozenparcode clubpenaltyfrozenparcode widowpenaltyfrozenparcode displaypenaltyfrozenparcode brokenpenaltyfrozenparcode contained syn keyword contextConstants adjustfrozenparcode protrudefrozenparcode tolerancefrozenparcode stretchfrozenparcode loosenessfrozenparcode contained
syn keyword contextConstants demeritsfrozenparcode shapefrozenparcode linefrozenparcode hyphenationfrozenparcode shapingpenaltyfrozenparcode contained syn keyword contextConstants lastlinefrozenparcode linepenaltyfrozenparcode clubpenaltyfrozenparcode widowpenaltyfrozenparcode displaypenaltyfrozenparcode contained
syn keyword contextConstants orphanpenaltyfrozenparcode allfrozenparcode mathpenaltyfrozenparcode activemathcharcode activetabtoken contained syn keyword contextConstants brokenpenaltyfrozenparcode demeritsfrozenparcode shapefrozenparcode linefrozenparcode hyphenationfrozenparcode contained
syn keyword contextConstants activeformfeedtoken activeendoflinetoken batchmodecode nonstopmodecode scrollmodecode contained syn keyword contextConstants shapingpenaltyfrozenparcode orphanpenaltyfrozenparcode allfrozenparcode emergencyfrozenparcode parpassesfrozenparcode contained
syn keyword contextConstants errorstopmodecode bottomlevelgroupcode simplegroupcode hboxgroupcode adjustedhboxgroupcode contained syn keyword contextConstants singlelinepenaltyfrozenparcode activemathcharcode activetabtoken activeformfeedtoken activeendoflinetoken contained
syn keyword contextConstants vboxgroupcode vtopgroupcode aligngroupcode noaligngroupcode outputgroupcode contained syn keyword contextConstants batchmodecode nonstopmodecode scrollmodecode errorstopmodecode bottomlevelgroupcode contained
syn keyword contextConstants mathgroupcode discretionarygroupcode insertgroupcode vadjustgroupcode vcentergroupcode contained syn keyword contextConstants simplegroupcode hboxgroupcode adjustedhboxgroupcode vboxgroupcode vtopgroupcode contained
syn keyword contextConstants mathabovegroupcode mathchoicegroupcode alsosimplegroupcode semisimplegroupcode mathshiftgroupcode contained syn keyword contextConstants aligngroupcode noaligngroupcode outputgroupcode mathgroupcode discretionarygroupcode contained
syn keyword contextConstants mathleftgroupcode localboxgroupcode splitoffgroupcode splitkeepgroupcode preamblegroupcode contained syn keyword contextConstants insertgroupcode vadjustgroupcode vcentergroupcode mathabovegroupcode mathchoicegroupcode contained
syn keyword contextConstants alignsetgroupcode finrowgroupcode discretionarygroupcode markautomigrationcode insertautomigrationcode contained syn keyword contextConstants alsosimplegroupcode semisimplegroupcode mathshiftgroupcode mathleftgroupcode localboxgroupcode contained
syn keyword contextConstants adjustautomigrationcode preautomigrationcode postautomigrationcode charnodecode hlistnodecode contained syn keyword contextConstants splitoffgroupcode splitkeepgroupcode preamblegroupcode alignsetgroupcode finrowgroupcode contained
syn keyword contextConstants vlistnodecode rulenodecode insertnodecode marknodecode adjustnodecode contained syn keyword contextConstants discretionarygroupcode markautomigrationcode insertautomigrationcode adjustautomigrationcode preautomigrationcode contained
syn keyword contextConstants ligaturenodecode discretionarynodecode whatsitnodecode mathnodecode gluenodecode contained syn keyword contextConstants postautomigrationcode charnodecode hlistnodecode vlistnodecode rulenodecode contained
syn keyword contextConstants kernnodecode penaltynodecode unsetnodecode mathsnodecode charifcode contained syn keyword contextConstants insertnodecode marknodecode adjustnodecode ligaturenodecode discretionarynodecode contained
syn keyword contextConstants catifcode numifcode dimifcode oddifcode vmodeifcode contained syn keyword contextConstants whatsitnodecode mathnodecode gluenodecode kernnodecode penaltynodecode contained
syn keyword contextConstants hmodeifcode mmodeifcode innerifcode voidifcode hboxifcode contained syn keyword contextConstants unsetnodecode mathsnodecode overrulemathcontrolcode underrulemathcontrolcode radicalrulemathcontrolcode contained
syn keyword contextConstants vboxifcode xifcode eofifcode trueifcode falseifcode contained syn keyword contextConstants fractionrulemathcontrolcode accentskewhalfmathcontrolcode accentskewapplymathcontrolcode applyordinarykernpairmathcontrolcode applyverticalitalickernmathcontrolcode contained
syn keyword contextConstants caseifcode definedifcode csnameifcode fontcharifcode overrulemathcontrolcode contained syn keyword contextConstants applyordinaryitalickernmathcontrolcode applycharitalickernmathcontrolcode reboxcharitalickernmathcontrolcode applyboxeditalickernmathcontrolcode staircasekernmathcontrolcode contained
syn keyword contextConstants underrulemathcontrolcode radicalrulemathcontrolcode fractionrulemathcontrolcode accentskewhalfmathcontrolcode accentskewapplymathcontrolcode contained syn keyword contextConstants applytextitalickernmathcontrolcode applyscriptitalickernmathcontrolcode checkspaceitalickernmathcontrolcode checktextitalickernmathcontrolcode analyzescriptnucleuscharmathcontrolcode contained
syn keyword contextConstants applyordinarykernpairmathcontrolcode applyverticalitalickernmathcontrolcode applyordinaryitalickernmathcontrolcode applycharitalickernmathcontrolcode reboxcharitalickernmathcontrolcode contained syn keyword contextConstants analyzescriptnucleuslistmathcontrolcode analyzescriptnucleusboxmathcontrolcode accenttopskewwithoffsetmathcontrolcode ignorekerndimensionsmathcontrolcode ignoreflataccentsmathcontrolcode contained
syn keyword contextConstants applyboxeditalickernmathcontrolcode staircasekernmathcontrolcode applytextitalickernmathcontrolcode applyscriptitalickernmathcontrolcode checkspaceitalickernmathcontrolcode contained syn keyword contextConstants extendaccentsmathcontrolcode extenddelimitersmathcontrolcode noligaturingglyphoptioncode nokerningglyphoptioncode noexpansionglyphoptioncode contained
syn keyword contextConstants checktextitalickernmathcontrolcode analyzescriptnucleuscharmathcontrolcode analyzescriptnucleuslistmathcontrolcode analyzescriptnucleusboxmathcontrolcode noligaturingglyphoptioncode contained syn keyword contextConstants noprotrusionglyphoptioncode noleftkerningglyphoptioncode noleftligaturingglyphoptioncode norightkerningglyphoptioncode norightligaturingglyphoptioncode contained
syn keyword contextConstants nokerningglyphoptioncode noexpansionglyphoptioncode noprotrusionglyphoptioncode noleftkerningglyphoptioncode noleftligaturingglyphoptioncode contained syn keyword contextConstants noitaliccorrectionglyphoptioncode islargeoperatorglyphoptioncode hasitalicshapeglyphoptioncode normalparcontextcode vmodeparcontextcode contained
syn keyword contextConstants norightkerningglyphoptioncode norightligaturingglyphoptioncode noitaliccorrectionglyphoptioncode normalparcontextcode vmodeparcontextcode contained
syn keyword contextConstants vboxparcontextcode vtopparcontextcode vcenterparcontextcode vadjustparcontextcode insertparcontextcode contained syn keyword contextConstants vboxparcontextcode vtopparcontextcode vcenterparcontextcode vadjustparcontextcode insertparcontextcode contained
syn keyword contextConstants outputparcontextcode alignparcontextcode noalignparcontextcode spanparcontextcode resetparcontextcode contained syn keyword contextConstants outputparcontextcode alignparcontextcode noalignparcontextcode spanparcontextcode resetparcontextcode contained
syn keyword contextConstants leftoriginlistanchorcode leftheightlistanchorcode leftdepthlistanchorcode rightoriginlistanchorcode rightheightlistanchorcode contained syn keyword contextConstants leftoriginlistanchorcode leftheightlistanchorcode leftdepthlistanchorcode rightoriginlistanchorcode rightheightlistanchorcode contained
@ -77,54 +76,60 @@ syn keyword contextConstants stopmodeset doifmode doifelsemode doifmodeelse doif
syn keyword contextConstants startmodeset stopmodeset startallmodes stopallmodes startnotallmodes contained syn keyword contextConstants startmodeset stopmodeset startallmodes stopallmodes startnotallmodes contained
syn keyword contextConstants stopnotallmodes doifallmodes doifelseallmodes doifallmodeselse doifnotallmodes contained syn keyword contextConstants stopnotallmodes doifallmodes doifelseallmodes doifallmodeselse doifnotallmodes contained
syn keyword contextConstants startenvironment stopenvironment environment startcomponent stopcomponent contained syn keyword contextConstants startenvironment stopenvironment environment startcomponent stopcomponent contained
syn keyword contextConstants component startproduct stopproduct product startproject contained syn keyword contextConstants component startlocalcomponent stoplocalcomponent startproduct stopproduct contained
syn keyword contextConstants stopproject project starttext stoptext startnotext contained syn keyword contextConstants product startproject stopproject project starttext contained
syn keyword contextConstants stopnotext startdocument stopdocument documentvariable unexpandeddocumentvariable contained syn keyword contextConstants stoptext startnotext stopnotext startdocument stopdocument contained
syn keyword contextConstants setupdocument presetdocument doifelsedocumentvariable doifdocumentvariableelse doifdocumentvariable contained syn keyword contextConstants documentvariable unexpandeddocumentvariable setupdocument presetdocument doifelsedocumentvariable contained
syn keyword contextConstants doifnotdocumentvariable startmodule stopmodule usemodule usetexmodule contained syn keyword contextConstants doifdocumentvariableelse doifdocumentvariable doifnotdocumentvariable startmodule stopmodule contained
syn keyword contextConstants useluamodule setupmodule currentmoduleparameter moduleparameter everystarttext contained syn keyword contextConstants usemodule usetexmodule useluamodule setupmodule currentmoduleparameter contained
syn keyword contextConstants everystoptext startTEXpage stopTEXpage enablemode disablemode contained syn keyword contextConstants moduleparameter everystarttext everystoptext everyforgetall luaenvironment contained
syn keyword contextConstants preventmode definemode globalenablemode globaldisablemode globalpreventmode contained syn keyword contextConstants startTEXpage stopTEXpage enablemode disablemode preventmode contained
syn keyword contextConstants pushmode popmode typescriptone typescripttwo typescriptthree contained syn keyword contextConstants definemode globalenablemode globaldisablemode globalpreventmode pushmode contained
syn keyword contextConstants mathsizesuffix mathordinarycode mathordcode mathoperatorcode mathopcode contained syn keyword contextConstants popmode typescriptone typescripttwo typescriptthree mathsizesuffix contained
syn keyword contextConstants mathbinarycode mathbincode mathrelationcode mathrelcode mathopencode contained syn keyword contextConstants mathordinarycode mathordcode mathoperatorcode mathopcode mathbinarycode contained
syn keyword contextConstants mathclosecode mathpunctuationcode mathpunctcode mathovercode mathundercode contained syn keyword contextConstants mathbincode mathrelationcode mathrelcode mathopencode mathclosecode contained
syn keyword contextConstants mathinnercode mathradicalcode mathfractioncode mathmiddlecode mathaccentcode contained syn keyword contextConstants mathpunctuationcode mathpunctcode mathovercode mathundercode mathinnercode contained
syn keyword contextConstants mathfencedcode mathghostcode mathvariablecode mathactivecode mathvcentercode contained syn keyword contextConstants mathradicalcode mathfractioncode mathmiddlecode mathaccentcode mathfencedcode contained
syn keyword contextConstants mathconstructcode mathwrappedcode mathbegincode mathendcode mathexplicitcode contained syn keyword contextConstants mathghostcode mathvariablecode mathactivecode mathvcentercode mathconstructcode contained
syn keyword contextConstants mathdivisioncode mathfactorialcode mathdimensioncode mathexperimentalcode mathtextpunctuationcode contained syn keyword contextConstants mathwrappedcode mathbegincode mathendcode mathexplicitcode mathdivisioncode contained
syn keyword contextConstants mathimaginarycode mathdifferentialcode mathexponentialcode mathellipsiscode mathfunctioncode contained syn keyword contextConstants mathfactorialcode mathdimensioncode mathexperimentalcode mathtextpunctuationcode mathimaginarycode contained
syn keyword contextConstants mathdigitcode mathalphacode mathboxcode mathchoicecode mathnothingcode contained syn keyword contextConstants mathdifferentialcode mathexponentialcode mathellipsiscode mathfunctioncode mathdigitcode contained
syn keyword contextConstants mathlimopcode mathnolopcode mathunsetcode mathunspacedcode mathallcode contained syn keyword contextConstants mathalphacode mathboxcode mathchoicecode mathnothingcode mathlimopcode contained
syn keyword contextConstants mathfakecode mathunarycode constantnumber constantnumberargument constantdimen contained syn keyword contextConstants mathnolopcode mathunsetcode mathunspacedcode mathallcode mathfakecode contained
syn keyword contextConstants constantdimenargument constantemptyargument luastringsep !!bs !!es contained syn keyword contextConstants mathunarycode mathmaybeordinarycode mathmayberelationcode mathmaybebinarycode mathnumbergroupcode contained
syn keyword contextConstants lefttorightmark righttoleftmark lrm rlm bidilre contained syn keyword contextConstants mathchemicalbondcode constantnumber constantnumberargument constantdimen constantdimenargument contained
syn keyword contextConstants bidirle bidipop bidilro bidirlo breakablethinspace contained syn keyword contextConstants constantemptyargument luastringsep !!bs !!es lefttorightmark contained
syn keyword contextConstants nobreakspace nonbreakablespace narrownobreakspace zerowidthnobreakspace ideographicspace contained syn keyword contextConstants righttoleftmark lrm rlm bidilre bidirle contained
syn keyword contextConstants ideographichalffillspace twoperemspace threeperemspace fourperemspace fiveperemspace contained syn keyword contextConstants bidipop bidilro bidirlo breakablethinspace nobreakspace contained
syn keyword contextConstants sixperemspace figurespace punctuationspace hairspace enquad contained syn keyword contextConstants nonbreakablespace narrownobreakspace zerowidthnobreakspace ideographicspace ideographichalffillspace contained
syn keyword contextConstants emquad zerowidthspace zerowidthnonjoiner zerowidthjoiner zwnj contained syn keyword contextConstants twoperemspace threeperemspace fourperemspace fiveperemspace sixperemspace contained
syn keyword contextConstants zwj optionalspace asciispacechar softhyphen Ux contained syn keyword contextConstants figurespace punctuationspace hairspace enquad emquad contained
syn keyword contextConstants eUx Umathaccents parfillleftskip parfillrightskip startlmtxmode contained syn keyword contextConstants zerowidthspace zerowidthnonjoiner zerowidthjoiner zwnj zwj contained
syn keyword contextConstants stoplmtxmode startmkivmode stopmkivmode wildcardsymbol normalhyphenationcode contained syn keyword contextConstants optionalspace asciispacechar softhyphen autoinsertedspace Ux contained
syn keyword contextConstants automatichyphenationcode explicithyphenationcode syllablehyphenationcode uppercasehyphenationcode collapsehyphenationcode contained syn keyword contextConstants eUx startlmtxmode stoplmtxmode startmkivmode stopmkivmode contained
syn keyword contextConstants compoundhyphenationcode strictstarthyphenationcode strictendhyphenationcode automaticpenaltyhyphenationcode explicitpenaltyhyphenationcode contained syn keyword contextConstants wildcardsymbol normalhyphenationcode automatichyphenationcode explicithyphenationcode syllablehyphenationcode contained
syn keyword contextConstants permitgluehyphenationcode permitallhyphenationcode permitmathreplacehyphenationcode forcecheckhyphenationcode lazyligatureshyphenationcode contained syn keyword contextConstants uppercasehyphenationcode collapsehyphenationcode compoundhyphenationcode strictstarthyphenationcode strictendhyphenationcode contained
syn keyword contextConstants forcehandlerhyphenationcode feedbackcompoundhyphenationcode ignoreboundshyphenationcode partialhyphenationcode completehyphenationcode contained syn keyword contextConstants automaticpenaltyhyphenationcode explicitpenaltyhyphenationcode permitgluehyphenationcode permitallhyphenationcode permitmathreplacehyphenationcode contained
syn keyword contextConstants normalizelinenormalizecode parindentskipnormalizecode swaphangindentnormalizecode swapparsshapenormalizecode breakafterdirnormalizecode contained syn keyword contextConstants forcecheckhyphenationcode lazyligatureshyphenationcode forcehandlerhyphenationcode feedbackcompoundhyphenationcode ignoreboundshyphenationcode contained
syn keyword contextConstants removemarginkernsnormalizecode clipwidthnormalizecode flattendiscretionariesnormalizecode discardzerotabskipsnormalizecode flattenhleadersnormalizecode contained syn keyword contextConstants partialhyphenationcode completehyphenationcode normalizelinenormalizecode parindentskipnormalizecode swaphangindentnormalizecode contained
syn keyword contextConstants normalizeparnormalizeparcode flattenvleadersnormalizeparcode nopreslackclassoptioncode nopostslackclassoptioncode lefttopkernclassoptioncode contained syn keyword contextConstants swapparsshapenormalizecode breakafterdirnormalizecode removemarginkernsnormalizecode clipwidthnormalizecode flattendiscretionariesnormalizecode contained
syn keyword contextConstants righttopkernclassoptioncode leftbottomkernclassoptioncode rightbottomkernclassoptioncode lookaheadforendclassoptioncode noitaliccorrectionclassoptioncode contained syn keyword contextConstants discardzerotabskipsnormalizecode flattenhleadersnormalizecode normalizeparnormalizeparcode flattenvleadersnormalizeparcode limitprevgrafnormalizeparcode contained
syn keyword contextConstants defaultmathclassoptions checkligatureclassoptioncode checkitaliccorrectionclassoptioncode checkkernpairclassoptioncode flattenclassoptioncode contained syn keyword contextConstants nopreslackclassoptioncode nopostslackclassoptioncode lefttopkernclassoptioncode righttopkernclassoptioncode leftbottomkernclassoptioncode contained
syn keyword contextConstants omitpenaltyclassoptioncode unpackclassoptioncode raiseprimeclassoptioncode carryoverlefttopkernclassoptioncode carryoverleftbottomkernclassoptioncode contained syn keyword contextConstants rightbottomkernclassoptioncode lookaheadforendclassoptioncode noitaliccorrectionclassoptioncode defaultmathclassoptions checkligatureclassoptioncode contained
syn keyword contextConstants carryoverrighttopkernclassoptioncode carryoverrightbottomkernclassoptioncode preferdelimiterdimensionsclassoptioncode noligaturingglyphoptioncode nokerningglyphoptioncode contained syn keyword contextConstants checkitaliccorrectionclassoptioncode checkkernpairclassoptioncode flattenclassoptioncode omitpenaltyclassoptioncode unpackclassoptioncode contained
syn keyword contextConstants raiseprimeclassoptioncode carryoverlefttopkernclassoptioncode carryoverleftbottomkernclassoptioncode carryoverrighttopkernclassoptioncode carryoverrightbottomkernclassoptioncode contained
syn keyword contextConstants preferdelimiterdimensionsclassoptioncode autoinjectclassoptioncode removeitaliccorrectionclassoptioncode operatoritaliccorrectionclassoptioncode shortinlineclassoptioncode contained
syn keyword contextConstants pushnestingclassoptioncode popnestingclassoptioncode obeynestingclassoptioncode noligaturingglyphoptioncode nokerningglyphoptioncode contained
syn keyword contextConstants noleftligatureglyphoptioncode noleftkernglyphoptioncode norightligatureglyphoptioncode norightkernglyphoptioncode noexpansionglyphoptioncode contained syn keyword contextConstants noleftligatureglyphoptioncode noleftkernglyphoptioncode norightligatureglyphoptioncode norightkernglyphoptioncode noexpansionglyphoptioncode contained
syn keyword contextConstants noprotrusionglyphoptioncode noitaliccorrectionglyphoptioncode nokerningcode noligaturingcode frozenflagcode contained syn keyword contextConstants noprotrusionglyphoptioncode noitaliccorrectionglyphoptioncode nokerningcode noligaturingcode indecentparpassclasses contained
syn keyword contextConstants looseparpassclasses tightparpassclasses verylooseparpassclass looseparpassclass semilooseparpassclass contained
syn keyword contextConstants decentparpassclass almostdecentparpassclasses semitightparpassclass tightparpassclass frozenflagcode contained
syn keyword contextConstants tolerantflagcode protectedflagcode primitiveflagcode permanentflagcode noalignedflagcode contained syn keyword contextConstants tolerantflagcode protectedflagcode primitiveflagcode permanentflagcode noalignedflagcode contained
syn keyword contextConstants immutableflagcode mutableflagcode globalflagcode overloadedflagcode immediateflagcode contained syn keyword contextConstants immutableflagcode mutableflagcode globalflagcode overloadedflagcode immediateflagcode contained
syn keyword contextConstants conditionalflagcode valueflagcode instanceflagcode ordmathflattencode binmathflattencode contained syn keyword contextConstants conditionalflagcode valueflagcode instanceflagcode ordmathflattencode binmathflattencode contained
syn keyword contextConstants relmathflattencode punctmathflattencode innermathflattencode normalworddiscoptioncode preworddiscoptioncode contained syn keyword contextConstants relmathflattencode punctmathflattencode innermathflattencode normalworddiscoptioncode preworddiscoptioncode contained
syn keyword contextConstants postworddiscoptioncode continueifinputfile continuewhenlmtxmode continuewhenmkivmode contained syn keyword contextConstants postworddiscoptioncode preferbreakdiscoptioncode prefernobreakdiscoptioncode continueifinputfile continuewhenlmtxmode contained
syn keyword contextConstants continuewhenmkivmode uunit contained
syn keyword contextHelpers startsetups stopsetups startxmlsetups stopxmlsetups startluasetups contained syn keyword contextHelpers startsetups stopsetups startxmlsetups stopxmlsetups startluasetups contained
syn keyword contextHelpers stopluasetups starttexsetups stoptexsetups startrawsetups stoprawsetups contained syn keyword contextHelpers stopluasetups starttexsetups stoptexsetups startrawsetups stoprawsetups contained
syn keyword contextHelpers startlocalsetups stoplocalsetups starttexdefinition stoptexdefinition starttexcode contained syn keyword contextHelpers startlocalsetups stoplocalsetups starttexdefinition stoptexdefinition starttexcode contained
@ -137,58 +142,68 @@ syn keyword contextHelpers resetmode newsystemmode setsystemmode resetsystemmode
syn keyword contextHelpers popsystemmode globalsetmode globalresetmode globalsetsystemmode globalresetsystemmode contained syn keyword contextHelpers popsystemmode globalsetmode globalresetmode globalsetsystemmode globalresetsystemmode contained
syn keyword contextHelpers booleanmodevalue newcount newdimen newskip newmuskip contained syn keyword contextHelpers booleanmodevalue newcount newdimen newskip newmuskip contained
syn keyword contextHelpers newbox newtoks newread newwrite newmarks contained syn keyword contextHelpers newbox newtoks newread newwrite newmarks contained
syn keyword contextHelpers newinsert newattribute newif newlanguage newfamily contained syn keyword contextHelpers newinsert newattribute newif newfloat newlanguage contained
syn keyword contextHelpers newfam newhelp then begcsname autorule contained syn keyword contextHelpers newfamily newfam newhelp newuserunit newinteger contained
syn keyword contextHelpers strippedcsname checkedstrippedcsname nofarguments firstargumentfalse firstargumenttrue contained syn keyword contextHelpers newdimension newgluespec newmugluespec newposit aliasinteger contained
syn keyword contextHelpers secondargumentfalse secondargumenttrue thirdargumentfalse thirdargumenttrue fourthargumentfalse contained syn keyword contextHelpers aliasdimension aliasposit then begcsname autorule contained
syn keyword contextHelpers fourthargumenttrue fifthargumentfalse fifthargumenttrue sixthargumentfalse sixthargumenttrue contained syn keyword contextHelpers tobits tohexa strippedcsname checkedstrippedcsname nofarguments contained
syn keyword contextHelpers seventhargumentfalse seventhargumenttrue vkern hkern vpenalty contained syn keyword contextHelpers firstargumentfalse firstargumenttrue secondargumentfalse secondargumenttrue thirdargumentfalse contained
syn keyword contextHelpers hpenalty doglobal dodoglobal redoglobal resetglobal contained syn keyword contextHelpers thirdargumenttrue fourthargumentfalse fourthargumenttrue fifthargumentfalse fifthargumenttrue contained
syn keyword contextHelpers donothing untraceddonothing dontcomplain moreboxtracing lessboxtracing contained syn keyword contextHelpers sixthargumentfalse sixthargumenttrue seventhargumentfalse seventhargumenttrue doglobal contained
syn keyword contextHelpers noboxtracing forgetall donetrue donefalse foundtrue contained syn keyword contextHelpers dodoglobal redoglobal resetglobal donothing untraceddonothing contained
syn keyword contextHelpers foundfalse inlineordisplaymath indisplaymath forcedisplaymath startforceddisplaymath contained syn keyword contextHelpers dontcomplain moreboxtracing lessboxtracing noboxtracing forgetall contained
syn keyword contextHelpers stopforceddisplaymath startpickupmath stoppickupmath reqno forceinlinemath contained syn keyword contextHelpers donetrue donefalse foundtrue foundfalse inlineordisplaymath contained
syn keyword contextHelpers mathortext thebox htdp unvoidbox hfilll contained syn keyword contextHelpers indisplaymath forcedisplaymath startforceddisplaymath stopforceddisplaymath startpickupmath contained
syn keyword contextHelpers vfilll mathbox mathlimop mathnolop mathnothing contained syn keyword contextHelpers stoppickupmath reqno forceinlinemath mathortext thebox contained
syn keyword contextHelpers mathalpha currentcatcodetable defaultcatcodetable catcodetablename newcatcodetable contained syn keyword contextHelpers htdp unvoidbox hfilll vfilll mathbox contained
syn keyword contextHelpers startcatcodetable stopcatcodetable startextendcatcodetable stopextendcatcodetable pushcatcodetable contained syn keyword contextHelpers mathlimop mathnolop mathnothing mathalpha currentcatcodetable contained
syn keyword contextHelpers popcatcodetable restorecatcodes setcatcodetable letcatcodecommand defcatcodecommand contained syn keyword contextHelpers defaultcatcodetable catcodetablename newcatcodetable startcatcodetable stopcatcodetable contained
syn keyword contextHelpers uedcatcodecommand hglue vglue hfillneg vfillneg contained syn keyword contextHelpers startextendcatcodetable stopextendcatcodetable pushcatcodetable popcatcodetable restorecatcodes contained
syn keyword contextHelpers hfilllneg vfilllneg ruledhss ruledhfil ruledhfill contained syn keyword contextHelpers setcatcodetable letcatcodecommand defcatcodecommand uedcatcodecommand hglue contained
syn keyword contextHelpers ruledhfilll ruledhfilneg ruledhfillneg normalhfillneg normalhfilllneg contained syn keyword contextHelpers vglue hfillneg vfillneg hfilllneg vfilllneg contained
syn keyword contextHelpers ruledvss ruledvfil ruledvfill ruledvfilll ruledvfilneg contained syn keyword contextHelpers hsplit ruledhss ruledhfil ruledhfill ruledhfilll contained
syn keyword contextHelpers ruledvfillneg normalvfillneg normalvfilllneg ruledhbox ruledvbox contained syn keyword contextHelpers ruledhfilneg ruledhfillneg normalhfillneg normalhfilllneg ruledvss contained
syn keyword contextHelpers ruledvtop ruledvcenter ruledmbox ruledhpack ruledvpack contained syn keyword contextHelpers ruledvfil ruledvfill ruledvfilll ruledvfilneg ruledvfillneg contained
syn keyword contextHelpers ruledtpack ruledhskip ruledvskip ruledkern ruledmskip contained syn keyword contextHelpers normalvfillneg normalvfilllneg ruledhbox ruledvbox ruledvtop contained
syn keyword contextHelpers ruledmkern ruledhglue ruledvglue normalhglue normalvglue contained syn keyword contextHelpers ruleddbox ruledvcenter ruledmbox ruledhpack ruledvpack contained
syn keyword contextHelpers ruledpenalty filledhboxb filledhboxr filledhboxg filledhboxc contained syn keyword contextHelpers ruledtpack ruleddpack ruledvsplit ruledtsplit ruleddsplit contained
syn keyword contextHelpers filledhboxm filledhboxy filledhboxk scratchstring scratchstringone contained syn keyword contextHelpers ruledhskip ruledvskip ruledkern ruledmskip ruledmkern contained
syn keyword contextHelpers scratchstringtwo tempstring scratchcounter globalscratchcounter privatescratchcounter contained syn keyword contextHelpers ruledhglue ruledvglue normalhglue normalvglue ruledpenalty contained
syn keyword contextHelpers scratchdimen globalscratchdimen privatescratchdimen scratchskip globalscratchskip contained syn keyword contextHelpers filledhboxb filledhboxr filledhboxg filledhboxc filledhboxm contained
syn keyword contextHelpers privatescratchskip scratchmuskip globalscratchmuskip privatescratchmuskip scratchtoks contained syn keyword contextHelpers filledhboxy filledhboxk scratchstring scratchstringone scratchstringtwo contained
syn keyword contextHelpers globalscratchtoks privatescratchtoks scratchbox globalscratchbox privatescratchbox contained syn keyword contextHelpers tempstring scratchcounter globalscratchcounter privatescratchcounter scratchfloat contained
syn keyword contextHelpers scratchmacro scratchmacroone scratchmacrotwo scratchconditiontrue scratchconditionfalse contained syn keyword contextHelpers globalscratchfloat privatescratchfloat scratchdimen globalscratchdimen privatescratchdimen contained
syn keyword contextHelpers ifscratchcondition scratchconditiononetrue scratchconditiononefalse ifscratchconditionone scratchconditiontwotrue contained syn keyword contextHelpers scratchskip globalscratchskip privatescratchskip scratchmuskip globalscratchmuskip contained
syn keyword contextHelpers scratchconditiontwofalse ifscratchconditiontwo globalscratchcounterone globalscratchcountertwo globalscratchcounterthree contained syn keyword contextHelpers privatescratchmuskip scratchtoks globalscratchtoks privatescratchtoks scratchbox contained
syn keyword contextHelpers groupedcommand groupedcommandcs triggergroupedcommand triggergroupedcommandcs simplegroupedcommand contained syn keyword contextHelpers globalscratchbox privatescratchbox scratchmacro scratchmacroone scratchmacrotwo contained
syn keyword contextHelpers simplegroupedcommandcs pickupgroupedcommand pickupgroupedcommandcs mathgroupedcommandcs usedbaselineskip contained syn keyword contextHelpers scratchconditiontrue scratchconditionfalse ifscratchcondition scratchconditiononetrue scratchconditiononefalse contained
syn keyword contextHelpers usedlineskip usedlineskiplimit availablehsize localhsize setlocalhsize contained syn keyword contextHelpers ifscratchconditionone scratchconditiontwotrue scratchconditiontwofalse ifscratchconditiontwo globalscratchcounterone contained
syn keyword contextHelpers distributedhsize hsizefraction next nexttoken nextbox contained syn keyword contextHelpers globalscratchcountertwo globalscratchcounterthree groupedcommand groupedcommandcs triggergroupedcommand contained
syn keyword contextHelpers dowithnextbox dowithnextboxcs dowithnextboxcontent dowithnextboxcontentcs flushnextbox contained syn keyword contextHelpers triggergroupedcommandcs simplegroupedcommand simplegroupedcommandcs pickupgroupedcommand pickupgroupedcommandcs contained
syn keyword contextHelpers boxisempty boxtostring contentostring prerolltostring givenwidth contained syn keyword contextHelpers mathgroupedcommandcs usedbaselineskip usedlineskip usedlineskiplimit availablehsize contained
syn keyword contextHelpers givenheight givendepth scangivendimensions scratchwidth scratchheight contained syn keyword contextHelpers localhsize setlocalhsize distributedhsize hsizefraction next contained
syn keyword contextHelpers scratchdepth scratchoffset scratchdistance scratchtotal scratchitalic contained syn keyword contextHelpers nexttoken nextbox dowithnextbox dowithnextboxcs dowithnextboxcontent contained
syn keyword contextHelpers scratchhsize scratchvsize scratchxoffset scratchyoffset scratchhoffset contained syn keyword contextHelpers dowithnextboxcontentcs flushnextbox boxisempty boxtostring contentostring contained
syn keyword contextHelpers scratchvoffset scratchxposition scratchyposition scratchtopoffset scratchbottomoffset contained syn keyword contextHelpers prerolltostring givenwidth givenheight givendepth scangivendimensions contained
syn keyword contextHelpers scratchleftoffset scratchrightoffset scratchcounterone scratchcountertwo scratchcounterthree contained syn keyword contextHelpers scratchwidth scratchheight scratchdepth scratchoffset scratchdistance contained
syn keyword contextHelpers scratchcounterfour scratchcounterfive scratchcountersix scratchdimenone scratchdimentwo contained syn keyword contextHelpers scratchtotal scratchitalic scratchhsize scratchvsize scratchxoffset contained
syn keyword contextHelpers scratchdimenthree scratchdimenfour scratchdimenfive scratchdimensix scratchskipone contained syn keyword contextHelpers scratchyoffset scratchhoffset scratchvoffset scratchxposition scratchyposition contained
syn keyword contextHelpers scratchskiptwo scratchskipthree scratchskipfour scratchskipfive scratchskipsix contained syn keyword contextHelpers scratchtopoffset scratchbottomoffset scratchleftoffset scratchrightoffset scratchcounterone contained
syn keyword contextHelpers scratchmuskipone scratchmuskiptwo scratchmuskipthree scratchmuskipfour scratchmuskipfive contained syn keyword contextHelpers scratchcountertwo scratchcounterthree scratchcounterfour scratchcounterfive scratchcountersix contained
syn keyword contextHelpers scratchmuskipsix scratchtoksone scratchtokstwo scratchtoksthree scratchtoksfour contained syn keyword contextHelpers scratchfloatone scratchfloattwo scratchfloatthree scratchfloatfour scratchfloatfive contained
syn keyword contextHelpers scratchtoksfive scratchtokssix scratchboxone scratchboxtwo scratchboxthree contained syn keyword contextHelpers scratchfloatsix scratchdimenone scratchdimentwo scratchdimenthree scratchdimenfour contained
syn keyword contextHelpers scratchboxfour scratchboxfive scratchboxsix scratchnx scratchny contained syn keyword contextHelpers scratchdimenfive scratchdimensix scratchskipone scratchskiptwo scratchskipthree contained
syn keyword contextHelpers scratchmx scratchmy scratchunicode scratchmin scratchmax contained syn keyword contextHelpers scratchskipfour scratchskipfive scratchskipsix scratchmuskipone scratchmuskiptwo contained
syn keyword contextHelpers scratchmuskipthree scratchmuskipfour scratchmuskipfive scratchmuskipsix scratchtoksone contained
syn keyword contextHelpers scratchtokstwo scratchtoksthree scratchtoksfour scratchtoksfive scratchtokssix contained
syn keyword contextHelpers scratchboxone scratchboxtwo scratchboxthree scratchboxfour scratchboxfive contained
syn keyword contextHelpers scratchboxsix scratchnx scratchny scratchmx scratchmy contained
syn keyword contextHelpers scratchunicode scratchmin scratchmax scratchread scratchwrite contained
syn keyword contextHelpers pfsin pfcos pftan pfasin pfacos contained
syn keyword contextHelpers pfatan pfsinh pfcosh pftanh pfasinh contained
syn keyword contextHelpers pfacosh pfatanh pfsqrt pflog pfexp contained
syn keyword contextHelpers pfceil pffloor pfround pfabs pfrad contained
syn keyword contextHelpers pfdeg pfatantwo pfpow pfmod pfrem contained
syn keyword contextHelpers scratchleftskip scratchrightskip scratchtopskip scratchbottomskip doif contained syn keyword contextHelpers scratchleftskip scratchrightskip scratchtopskip scratchbottomskip doif contained
syn keyword contextHelpers doifnot doifelse firstinset doifinset doifnotinset contained syn keyword contextHelpers doifnot doifelse firstinset doifinset doifnotinset contained
syn keyword contextHelpers doifelseinset doifinsetelse doifelsenextchar doifnextcharelse doifelsenextcharcs contained syn keyword contextHelpers doifelseinset doifinsetelse doifelsenextchar doifnextcharelse doifelsenextcharcs contained
@ -203,143 +218,123 @@ syn keyword contextHelpers doifdimensionelse doifelsenumber doifnumberelse doifn
syn keyword contextHelpers doifelsecommon doifcommonelse doifcommon doifnotcommon doifinstring contained syn keyword contextHelpers doifelsecommon doifcommonelse doifcommon doifnotcommon doifinstring contained
syn keyword contextHelpers doifnotinstring doifelseinstring doifinstringelse doifelseassignment doifassignmentelse contained syn keyword contextHelpers doifnotinstring doifelseinstring doifinstringelse doifelseassignment doifassignmentelse contained
syn keyword contextHelpers docheckassignment doifelseassignmentcs doifassignmentelsecs validassignment novalidassignment contained syn keyword contextHelpers docheckassignment doifelseassignmentcs doifassignmentelsecs validassignment novalidassignment contained
syn keyword contextHelpers doiftext doifelsetext doiftextelse doifnottext quitcondition contained syn keyword contextHelpers doiftext doifelsetext doiftextelse doifnottext validtext contained
syn keyword contextHelpers truecondition falsecondition tracingall tracingnone loggingall contained syn keyword contextHelpers quitcondition truecondition falsecondition tracingall tracingnone contained
syn keyword contextHelpers tracingcatcodes showluatokens aliasmacro removetoks appendtoks contained syn keyword contextHelpers loggingall tracingcatcodes showluatokens aliasmacro removetoks contained
syn keyword contextHelpers prependtoks appendtotoks prependtotoks to endgraf contained syn keyword contextHelpers appendtoks prependtoks appendtotoks prependtotoks to contained
syn keyword contextHelpers endpar reseteverypar finishpar empty null contained syn keyword contextHelpers endgraf endpar reseteverypar finishpar empty contained
syn keyword contextHelpers space quad enspace emspace charspace contained syn keyword contextHelpers null space quad enspace emspace contained
syn keyword contextHelpers nbsp crlf obeyspaces obeylines obeytabs contained syn keyword contextHelpers charspace nbsp crlf obeyspaces obeylines contained
syn keyword contextHelpers obeypages obeyedspace obeyedline obeyedtab obeyedpage contained syn keyword contextHelpers obeytabs obeypages obeyedspace obeyedline obeyedtab contained
syn keyword contextHelpers normalspace naturalspace controlspace normalspaces ignoretabs contained syn keyword contextHelpers obeyedpage normalspace naturalspace controlspace normalspaces contained
syn keyword contextHelpers ignorelines ignorepages ignoreeofs setcontrolspaces executeifdefined contained syn keyword contextHelpers ignoretabs ignorelines ignorepages ignoreeofs setcontrolspaces contained
syn keyword contextHelpers singleexpandafter doubleexpandafter tripleexpandafter dontleavehmode removelastspace contained syn keyword contextHelpers executeifdefined singleexpandafter doubleexpandafter tripleexpandafter dontleavehmode contained
syn keyword contextHelpers removeunwantedspaces keepunwantedspaces removepunctuation ignoreparskip forcestrutdepth contained syn keyword contextHelpers removelastspace removeunwantedspaces keepunwantedspaces removepunctuation ignoreparskip contained
syn keyword contextHelpers onlynonbreakablespace wait writestatus define defineexpandable contained syn keyword contextHelpers forcestrutdepth onlynonbreakablespace wait writestatus define contained
syn keyword contextHelpers redefine setmeasure setemeasure setgmeasure setxmeasure contained syn keyword contextHelpers defineexpandable redefine setmeasure setemeasure setgmeasure contained
syn keyword contextHelpers definemeasure freezemeasure measure measured directmeasure contained syn keyword contextHelpers setxmeasure definemeasure freezemeasure measure measured contained
syn keyword contextHelpers setquantity setequantity setgquantity setxquantity definequantity contained syn keyword contextHelpers directmeasure setquantity setequantity setgquantity setxquantity contained
syn keyword contextHelpers freezequantity quantity quantitied directquantity installcorenamespace contained syn keyword contextHelpers definequantity freezequantity quantity quantitied directquantity contained
syn keyword contextHelpers getvalue getuvalue setvalue setevalue setgvalue contained syn keyword contextHelpers installcorenamespace getvalue getuvalue setvalue setevalue contained
syn keyword contextHelpers setxvalue letvalue letgvalue resetvalue undefinevalue contained syn keyword contextHelpers setgvalue setxvalue letvalue letgvalue resetvalue contained
syn keyword contextHelpers ignorevalue setuvalue setuevalue setugvalue setuxvalue contained syn keyword contextHelpers undefinevalue ignorevalue setuvalue setuevalue setugvalue contained
syn keyword contextHelpers globallet udef ugdef uedef uxdef contained syn keyword contextHelpers setuxvalue globallet udef ugdef uedef contained
syn keyword contextHelpers checked unique getparameters geteparameters getgparameters contained syn keyword contextHelpers uxdef checked unique getparameters geteparameters contained
syn keyword contextHelpers getxparameters forgetparameters copyparameters getdummyparameters dummyparameter contained syn keyword contextHelpers getgparameters getxparameters forgetparameters copyparameters getdummyparameters contained
syn keyword contextHelpers directdummyparameter setdummyparameter letdummyparameter setexpandeddummyparameter usedummystyleandcolor contained syn keyword contextHelpers dummyparameter directdummyparameter setdummyparameter letdummyparameter setexpandeddummyparameter contained
syn keyword contextHelpers usedummystyleparameter usedummycolorparameter processcommalist processcommacommand quitcommalist contained syn keyword contextHelpers resetdummyparameter usedummystyleandcolor usedummystyleparameter usedummycolorparameter processcommalist contained
syn keyword contextHelpers quitprevcommalist processaction processallactions processfirstactioninset processallactionsinset contained syn keyword contextHelpers processcommacommand quitcommalist quitprevcommalist processaction processallactions contained
syn keyword contextHelpers unexpanded expanded startexpanded stopexpanded protect contained syn keyword contextHelpers processfirstactioninset processallactionsinset unexpanded expanded startexpanded contained
syn keyword contextHelpers unprotect firstofoneargument firstoftwoarguments secondoftwoarguments firstofthreearguments contained syn keyword contextHelpers stopexpanded protect unprotect firstofoneargument firstoftwoarguments contained
syn keyword contextHelpers secondofthreearguments thirdofthreearguments firstoffourarguments secondoffourarguments thirdoffourarguments contained syn keyword contextHelpers secondoftwoarguments firstofthreearguments secondofthreearguments thirdofthreearguments firstoffourarguments contained
syn keyword contextHelpers fourthoffourarguments firstoffivearguments secondoffivearguments thirdoffivearguments fourthoffivearguments contained syn keyword contextHelpers secondoffourarguments thirdoffourarguments fourthoffourarguments firstoffivearguments secondoffivearguments contained
syn keyword contextHelpers fifthoffivearguments firstofsixarguments secondofsixarguments thirdofsixarguments fourthofsixarguments contained syn keyword contextHelpers thirdoffivearguments fourthoffivearguments fifthoffivearguments firstofsixarguments secondofsixarguments contained
syn keyword contextHelpers fifthofsixarguments sixthofsixarguments firstofoneunexpanded firstoftwounexpanded secondoftwounexpanded contained syn keyword contextHelpers thirdofsixarguments fourthofsixarguments fifthofsixarguments sixthofsixarguments firstofoneunexpanded contained
syn keyword contextHelpers firstofthreeunexpanded secondofthreeunexpanded thirdofthreeunexpanded gobbleoneargument gobbletwoarguments contained syn keyword contextHelpers firstoftwounexpanded secondoftwounexpanded firstofthreeunexpanded secondofthreeunexpanded thirdofthreeunexpanded contained
syn keyword contextHelpers gobblethreearguments gobblefourarguments gobblefivearguments gobblesixarguments gobblesevenarguments contained syn keyword contextHelpers gobbleoneargument gobbletwoarguments gobblethreearguments gobblefourarguments gobblefivearguments contained
syn keyword contextHelpers gobbleeightarguments gobbleninearguments gobbletenarguments gobbleoneoptional gobbletwooptionals contained syn keyword contextHelpers gobblesixarguments gobblesevenarguments gobbleeightarguments gobbleninearguments gobbletenarguments contained
syn keyword contextHelpers gobblethreeoptionals gobblefouroptionals gobblefiveoptionals dorecurse doloop contained syn keyword contextHelpers gobbleoneoptional gobbletwooptionals gobblethreeoptionals gobblefouroptionals gobblefiveoptionals contained
syn keyword contextHelpers exitloop dostepwiserecurse recurselevel recursedepth dofastloopcs contained syn keyword contextHelpers dorecurse doloop exitloop dostepwiserecurse recurselevel contained
syn keyword contextHelpers fastloopindex fastloopfinal dowith doloopovermatch doloopovermatched contained syn keyword contextHelpers recursedepth dofastloopcs fastloopindex fastloopfinal dowith contained
syn keyword contextHelpers doloopoverlist newconstant setnewconstant setconstant setconstantvalue contained syn keyword contextHelpers doloopovermatch doloopovermatched doloopoverlist newconstant setnewconstant contained
syn keyword contextHelpers newconditional settrue setfalse settruevalue setfalsevalue contained syn keyword contextHelpers setconstant setconstantvalue newconditional settrue setfalse contained
syn keyword contextHelpers setconditional newmacro setnewmacro newfraction newsignal contained syn keyword contextHelpers settruevalue setfalsevalue setconditional newmacro setnewmacro contained
syn keyword contextHelpers newboundary dosingleempty dodoubleempty dotripleempty doquadrupleempty contained syn keyword contextHelpers newfraction newsignal newboundary dosingleempty dodoubleempty contained
syn keyword contextHelpers doquintupleempty dosixtupleempty doseventupleempty dosingleargument dodoubleargument contained syn keyword contextHelpers dotripleempty doquadrupleempty doquintupleempty dosixtupleempty doseventupleempty contained
syn keyword contextHelpers dotripleargument doquadrupleargument doquintupleargument dosixtupleargument doseventupleargument contained syn keyword contextHelpers dosingleargument dodoubleargument dotripleargument doquadrupleargument doquintupleargument contained
syn keyword contextHelpers dosinglegroupempty dodoublegroupempty dotriplegroupempty doquadruplegroupempty doquintuplegroupempty contained syn keyword contextHelpers dosixtupleargument doseventupleargument dosinglegroupempty dodoublegroupempty dotriplegroupempty contained
syn keyword contextHelpers permitspacesbetweengroups dontpermitspacesbetweengroups nopdfcompression maximumpdfcompression normalpdfcompression contained syn keyword contextHelpers doquadruplegroupempty doquintuplegroupempty permitspacesbetweengroups dontpermitspacesbetweengroups nopdfcompression contained
syn keyword contextHelpers onlypdfobjectcompression nopdfobjectcompression modulonumber dividenumber getfirstcharacter contained syn keyword contextHelpers maximumpdfcompression normalpdfcompression onlypdfobjectcompression nopdfobjectcompression modulonumber contained
syn keyword contextHelpers doifelsefirstchar doiffirstcharelse mathclassvalue startnointerference stopnointerference contained syn keyword contextHelpers dividenumber getfirstcharacter doifelsefirstchar doiffirstcharelse mathclassvalue contained
syn keyword contextHelpers twodigits threedigits leftorright offinterlineskip oninterlineskip contained syn keyword contextHelpers startnointerference stopnointerference twodigits threedigits leftorright contained
syn keyword contextHelpers nointerlineskip strut halfstrut quarterstrut depthstrut contained syn keyword contextHelpers offinterlineskip oninterlineskip nointerlineskip strut halfstrut contained
syn keyword contextHelpers halflinestrut noheightstrut setstrut strutbox strutht contained syn keyword contextHelpers quarterstrut depthstrut halflinestrut noheightstrut setstrut contained
syn keyword contextHelpers strutdp strutwd struthtdp strutgap begstrut contained syn keyword contextHelpers strutbox strutht strutdp strutwd struthtdp contained
syn keyword contextHelpers endstrut lineheight leftboundary rightboundary signalcharacter contained syn keyword contextHelpers strutgap begstrut endstrut lineheight leftboundary contained
syn keyword contextHelpers rightboundary signalcharacter ascender descender capheight contained
syn keyword contextHelpers aligncontentleft aligncontentmiddle aligncontentright shiftbox vpackbox contained syn keyword contextHelpers aligncontentleft aligncontentmiddle aligncontentright shiftbox vpackbox contained
syn keyword contextHelpers hpackbox vpackedbox hpackedbox ordordspacing ordopspacing contained syn keyword contextHelpers hpackbox vpackedbox hpackedbox normalreqno startimath contained
syn keyword contextHelpers ordbinspacing ordrelspacing ordopenspacing ordclosespacing ordpunctspacing contained syn keyword contextHelpers stopimath normalstartimath normalstopimath startdmath stopdmath contained
syn keyword contextHelpers ordinnerspacing ordfracspacing ordradspacing ordmiddlespacing ordaccentspacing contained syn keyword contextHelpers normalstartdmath normalstopdmath normalsuperscript normalsubscript normalnosuperscript contained
syn keyword contextHelpers opordspacing opopspacing opbinspacing oprelspacing opopenspacing contained syn keyword contextHelpers normalnosubscript normalprimescript superscript subscript nosuperscript contained
syn keyword contextHelpers opclosespacing oppunctspacing opinnerspacing opfracspacing opradspacing contained syn keyword contextHelpers nosubscript primescript superprescript subprescript nosuperprescript contained
syn keyword contextHelpers opmiddlespacing opaccentspacing binordspacing binopspacing binbinspacing contained syn keyword contextHelpers nosubsprecript uncramped cramped mathstyletrigger triggermathstyle contained
syn keyword contextHelpers binrelspacing binopenspacing binclosespacing binpunctspacing bininnerspacing contained syn keyword contextHelpers triggeredmathstyle mathstylefont mathsmallstylefont mathstyleface mathsmallstyleface contained
syn keyword contextHelpers binfracspacing binradspacing binmiddlespacing binaccentspacing relordspacing contained syn keyword contextHelpers mathstylecommand mathpalette mathstylehbox mathstylevbox mathstylevcenter contained
syn keyword contextHelpers relopspacing relbinspacing relrelspacing relopenspacing relclosespacing contained syn keyword contextHelpers mathstylevcenteredhbox mathstylevcenteredvbox mathtext setmathsmalltextbox setmathtextbox contained
syn keyword contextHelpers relpunctspacing relinnerspacing relfracspacing relradspacing relmiddlespacing contained syn keyword contextHelpers pushmathstyle popmathstyle triggerdisplaystyle triggertextstyle triggerscriptstyle contained
syn keyword contextHelpers relaccentspacing openordspacing openopspacing openbinspacing openrelspacing contained syn keyword contextHelpers triggerscriptscriptstyle triggeruncrampedstyle triggercrampedstyle triggersmallstyle triggeruncrampedsmallstyle contained
syn keyword contextHelpers openopenspacing openclosespacing openpunctspacing openinnerspacing openfracspacing contained syn keyword contextHelpers triggercrampedsmallstyle triggerbigstyle triggeruncrampedbigstyle triggercrampedbigstyle luaexpr contained
syn keyword contextHelpers openradspacing openmiddlespacing openaccentspacing closeordspacing closeopspacing contained syn keyword contextHelpers expelsedoif expdoif expdoifnot expdoifelsecommon expdoifcommonelse contained
syn keyword contextHelpers closebinspacing closerelspacing closeopenspacing closeclosespacing closepunctspacing contained syn keyword contextHelpers expdoifelseinset expdoifinsetelse glyphscaled ctxdirectlua ctxlatelua contained
syn keyword contextHelpers closeinnerspacing closefracspacing closeradspacing closemiddlespacing closeaccentspacing contained syn keyword contextHelpers ctxsprint ctxwrite ctxcommand ctxdirectcommand ctxlatecommand contained
syn keyword contextHelpers punctordspacing punctopspacing punctbinspacing punctrelspacing punctopenspacing contained syn keyword contextHelpers ctxreport ctxlua luacode lateluacode directluacode contained
syn keyword contextHelpers punctclosespacing punctpunctspacing punctinnerspacing punctfracspacing punctradspacing contained syn keyword contextHelpers registerctxluafile ctxloadluafile luaversion luamajorversion luaminorversion contained
syn keyword contextHelpers punctmiddlespacing punctaccentspacing innerordspacing inneropspacing innerbinspacing contained syn keyword contextHelpers ctxluacode luaconditional luaexpanded ctxluamatch ctxluamatchfile contained
syn keyword contextHelpers innerrelspacing inneropenspacing innerclosespacing innerpunctspacing innerinnerspacing contained syn keyword contextHelpers startluaparameterset stopluaparameterset luaparameterset definenamedlua obeylualines contained
syn keyword contextHelpers innerfracspacing innerradspacing innermiddlespacing inneraccentspacing fracordspacing contained syn keyword contextHelpers obeyluatokens startluacode stopluacode startlua stoplua contained
syn keyword contextHelpers fracopspacing fracbinspacing fracrelspacing fracopenspacing fracclosespacing contained syn keyword contextHelpers startctxfunction stopctxfunction ctxfunction startctxfunctiondefinition stopctxfunctiondefinition contained
syn keyword contextHelpers fracpunctspacing fracinnerspacing fracfracspacing fracradspacing fracmiddlespacing contained syn keyword contextHelpers installctxfunction installprotectedctxfunction installprotectedctxscanner installctxscanner resetctxscanner contained
syn keyword contextHelpers fracaccentspacing radordspacing radopspacing radbinspacing radrelspacing contained syn keyword contextHelpers cldprocessfile cldloadfile cldloadviafile cldcontext cldcommand contained
syn keyword contextHelpers radopenspacing radclosespacing radpunctspacing radinnerspacing radfracspacing contained syn keyword contextHelpers carryoverpar freezeparagraphproperties defrostparagraphproperties setparagraphfreezing forgetparagraphfreezing contained
syn keyword contextHelpers radradspacing radmiddlespacing radaccentspacing middleordspacing middleopspacing contained syn keyword contextHelpers updateparagraphproperties updateparagraphpenalties updateparagraphdemerits updateparagraphshapes updateparagraphlines contained
syn keyword contextHelpers middlebinspacing middlerelspacing middleopenspacing middleclosespacing middlepunctspacing contained syn keyword contextHelpers updateparagraphpasses lastlinewidth assumelongusagecs righttolefthbox lefttorighthbox contained
syn keyword contextHelpers middleinnerspacing middlefracspacing middleradspacing middlemiddlespacing middleaccentspacing contained syn keyword contextHelpers righttoleftvbox lefttorightvbox righttoleftvtop lefttorightvtop rtlhbox contained
syn keyword contextHelpers accentordspacing accentopspacing accentbinspacing accentrelspacing accentopenspacing contained syn keyword contextHelpers ltrhbox rtlvbox ltrvbox rtlvtop ltrvtop contained
syn keyword contextHelpers accentclosespacing accentpunctspacing accentinnerspacing accentfracspacing accentradspacing contained syn keyword contextHelpers autodirhbox autodirvbox autodirvtop leftorrighthbox leftorrightvbox contained
syn keyword contextHelpers accentmiddlespacing accentaccentspacing normalreqno startimath stopimath contained syn keyword contextHelpers leftorrightvtop lefttoright righttoleft checkedlefttoright checkedrighttoleft contained
syn keyword contextHelpers normalstartimath normalstopimath startdmath stopdmath normalstartdmath contained syn keyword contextHelpers synchronizelayoutdirection synchronizedisplaydirection synchronizeinlinedirection dirlre dirrle contained
syn keyword contextHelpers normalstopdmath normalsuperscript normalsubscript normalnosuperscript normalnosubscript contained syn keyword contextHelpers dirlro dirrlo rtltext ltrtext lesshyphens contained
syn keyword contextHelpers normalprimescript superscript subscript nosuperscript nosubscript contained syn keyword contextHelpers morehyphens nohyphens dohyphens dohyphencollapsing nohyphencollapsing contained
syn keyword contextHelpers primescript superprescript subprescript nosuperprescript nosubsprecript contained syn keyword contextHelpers compounddiscretionary Ucheckedstartdisplaymath Ucheckedstopdisplaymath break nobreak contained
syn keyword contextHelpers uncramped cramped mathstyletrigger triggermathstyle triggeredmathstyle contained syn keyword contextHelpers allowbreak goodbreak nospace nospacing dospacing contained
syn keyword contextHelpers mathstylefont mathsmallstylefont mathstyleface mathsmallstyleface mathstylecommand contained syn keyword contextHelpers naturalhbox naturalvbox naturalvtop naturalhpack naturalvpack contained
syn keyword contextHelpers mathpalette mathstylehbox mathstylevbox mathstylevcenter mathstylevcenteredhbox contained syn keyword contextHelpers naturaltpack reversehbox reversevbox reversevtop reversehpack contained
syn keyword contextHelpers mathstylevcenteredvbox mathtext setmathsmalltextbox setmathtextbox pushmathstyle contained syn keyword contextHelpers reversevpack reversetpack hcontainer vcontainer tcontainer contained
syn keyword contextHelpers popmathstyle triggerdisplaystyle triggertextstyle triggerscriptstyle triggerscriptscriptstyle contained syn keyword contextHelpers frule compoundhyphenpenalty start stop unsupportedcs contained
syn keyword contextHelpers triggeruncrampedstyle triggercrampedstyle triggersmallstyle triggeruncrampedsmallstyle triggercrampedsmallstyle contained syn keyword contextHelpers openout closeout write openin closein contained
syn keyword contextHelpers triggerbigstyle triggeruncrampedbigstyle triggercrampedbigstyle luaexpr expelsedoif contained syn keyword contextHelpers read readline readlinedirect readfromterminal boxlines contained
syn keyword contextHelpers expdoif expdoifnot expdoifelsecommon expdoifcommonelse expdoifelseinset contained syn keyword contextHelpers boxline setboxline copyboxline boxlinewd boxlineht contained
syn keyword contextHelpers expdoifinsetelse ctxdirectlua ctxlatelua ctxsprint ctxwrite contained syn keyword contextHelpers boxlinedp boxlinenw boxlinenh boxlinend boxlinels contained
syn keyword contextHelpers ctxcommand ctxdirectcommand ctxlatecommand ctxreport ctxlua contained syn keyword contextHelpers boxliners boxlinelh boxlinerh boxlinelp boxlinerp contained
syn keyword contextHelpers luacode lateluacode directluacode registerctxluafile ctxloadluafile contained syn keyword contextHelpers boxlinein boxrangewd boxrangeht boxrangedp bitwiseset contained
syn keyword contextHelpers luaversion luamajorversion luaminorversion ctxluacode luaconditional contained syn keyword contextHelpers bitwiseand bitwiseor bitwisexor bitwisenot bitwisenil contained
syn keyword contextHelpers luaexpanded ctxluamatch startluaparameterset stopluaparameterset luaparameterset contained syn keyword contextHelpers ifbitwiseand bitwise bitwiseshift bitwiseflip textdir contained
syn keyword contextHelpers definenamedlua obeylualines obeyluatokens startluacode stopluacode contained syn keyword contextHelpers linedir pardir boxdir prelistbox postlistbox contained
syn keyword contextHelpers startlua stoplua startctxfunction stopctxfunction ctxfunction contained syn keyword contextHelpers prelistcopy postlistcopy setprelistbox setpostlistbox noligaturing contained
syn keyword contextHelpers startctxfunctiondefinition stopctxfunctiondefinition installctxfunction installprotectedctxfunction installprotectedctxscanner contained syn keyword contextHelpers nokerning noexpansion noprotrusion noleftkerning noleftligaturing contained
syn keyword contextHelpers installctxscanner resetctxscanner cldprocessfile cldloadfile cldloadviafile contained syn keyword contextHelpers norightkerning norightligaturing noitaliccorrection futureletnexttoken defbackslashbreak contained
syn keyword contextHelpers cldcontext cldcommand carryoverpar freezeparagraphproperties defrostparagraphproperties contained syn keyword contextHelpers letbackslashbreak pushoverloadmode popoverloadmode pushrunstate poprunstate contained
syn keyword contextHelpers setparagraphfreezing forgetparagraphfreezing updateparagraphproperties updateparagraphpenalties updateparagraphdemerits contained syn keyword contextHelpers suggestedalias showboxhere discoptioncodestring flagcodestring frozenparcodestring contained
syn keyword contextHelpers updateparagraphshapes updateparagraphlines lastlinewidth assumelongusagecs Umathbotaccent contained syn keyword contextHelpers glyphoptioncodestring groupcodestring hyphenationcodestring mathcontrolcodestring mathflattencodestring contained
syn keyword contextHelpers Umathtopaccent righttolefthbox lefttorighthbox righttoleftvbox lefttorightvbox contained syn keyword contextHelpers normalizecodestring parcontextcodestring newlocalcount newlocaldimen newlocalskip contained
syn keyword contextHelpers righttoleftvtop lefttorightvtop rtlhbox ltrhbox rtlvbox contained syn keyword contextHelpers newlocalmuskip newlocaltoks newlocalbox newlocalwrite newlocalread contained
syn keyword contextHelpers ltrvbox rtlvtop ltrvtop autodirhbox autodirvbox contained syn keyword contextHelpers setnewlocalcount setnewlocaldimen setnewlocalskip setnewlocalmuskip setnewlocaltoks contained
syn keyword contextHelpers autodirvtop leftorrighthbox leftorrightvbox leftorrightvtop lefttoright contained syn keyword contextHelpers setnewlocalbox ifexpression localcontrolledrepeating expandedrepeating unexpandedrepeating contained
syn keyword contextHelpers righttoleft checkedlefttoright checkedrighttoleft synchronizelayoutdirection synchronizedisplaydirection contained syn keyword contextHelpers lastchkinteger ifchkinteger mathordinary mathoperator mathbinary contained
syn keyword contextHelpers synchronizeinlinedirection dirlre dirrle dirlro dirrlo contained syn keyword contextHelpers mathrelation mathpunctuation mathfraction mathradical mathmiddle contained
syn keyword contextHelpers rtltext ltrtext lesshyphens morehyphens nohyphens contained syn keyword contextHelpers mathaccent mathfenced mathghost mathvariable mathactive contained
syn keyword contextHelpers dohyphens dohyphencollapsing nohyphencollapsing compounddiscretionary Ucheckedstartdisplaymath contained syn keyword contextHelpers mathvcenter mathimaginary mathdifferential mathexponential mathdigit contained
syn keyword contextHelpers Ucheckedstopdisplaymath break nobreak allowbreak goodbreak contained syn keyword contextHelpers mathdivision mathfactorial mathwrapped mathconstruct mathdimension contained
syn keyword contextHelpers nospace nospacing dospacing naturalhbox naturalvbox contained syn keyword contextHelpers mathunary mathchemicalbond filebasename filenameonly filedirname contained
syn keyword contextHelpers naturalvtop naturalhpack naturalvpack naturaltpack reversehbox contained syn keyword contextHelpers filesuffix setmathoption resetmathoption contained
syn keyword contextHelpers reversevbox reversevtop reversehpack reversevpack reversetpack contained
syn keyword contextHelpers hcontainer vcontainer tcontainer frule compoundhyphenpenalty contained
syn keyword contextHelpers start stop unsupportedcs openout closeout contained
syn keyword contextHelpers write openin closein read readline contained
syn keyword contextHelpers readfromterminal boxlines boxline setboxline copyboxline contained
syn keyword contextHelpers boxlinewd boxlineht boxlinedp boxlinenw boxlinenh contained
syn keyword contextHelpers boxlinend boxlinels boxliners boxlinelh boxlinerh contained
syn keyword contextHelpers boxlinelp boxlinerp boxlinein boxrangewd boxrangeht contained
syn keyword contextHelpers boxrangedp bitwiseset bitwiseand bitwiseor bitwisexor contained
syn keyword contextHelpers bitwisenot bitwisenil ifbitwiseand bitwise bitwiseshift contained
syn keyword contextHelpers bitwiseflip textdir linedir pardir boxdir contained
syn keyword contextHelpers prelistbox postlistbox prelistcopy postlistcopy setprelistbox contained
syn keyword contextHelpers setpostlistbox noligaturing nokerning noexpansion noprotrusion contained
syn keyword contextHelpers noleftkerning noleftligaturing norightkerning norightligaturing noitaliccorrection contained
syn keyword contextHelpers futureletnexttoken defbackslashbreak letbackslashbreak pushoverloadmode popoverloadmode contained
syn keyword contextHelpers pushrunstate poprunstate suggestedalias showboxhere discoptioncodestring contained
syn keyword contextHelpers flagcodestring frozenparcodestring glyphoptioncodestring groupcodestring hyphenationcodestring contained
syn keyword contextHelpers mathcontrolcodestring mathflattencodestring normalizecodestring parcontextcodestring newlocalcount contained
syn keyword contextHelpers newlocaldimen newlocalskip newlocalmuskip newlocaltoks newlocalbox contained
syn keyword contextHelpers newlocalwrite newlocalread setnewlocalcount setnewlocaldimen setnewlocalskip contained
syn keyword contextHelpers setnewlocalmuskip setnewlocaltoks setnewlocalbox ifexpression contained

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@ vim9script
# Vim syntax file # Vim syntax file
# Language: ConTeXt # Language: ConTeXt
# Automatically generated by mtx-interface (2022-08-12 10:49) # Automatically generated by mtx-interface (2023-12-26 16:40)
syn keyword metafunCommands loadfile loadimage loadmodule dispose nothing syn keyword metafunCommands loadfile loadimage loadmodule dispose nothing
syn keyword metafunCommands transparency tolist topath tocycle sqr syn keyword metafunCommands transparency tolist topath tocycle sqr
@ -97,7 +97,7 @@ syn keyword metafunCommands mpvard mpvarn mpvars mpvar withtolerance
syn keyword metafunCommands hatched withdashes processpath pencilled sortedintersectiontimes syn keyword metafunCommands hatched withdashes processpath pencilled sortedintersectiontimes
syn keyword metafunCommands intersectionpath firstintersectionpath secondintersectionpath intersectionsfound cutbeforefirst syn keyword metafunCommands intersectionpath firstintersectionpath secondintersectionpath intersectionsfound cutbeforefirst
syn keyword metafunCommands cutafterfirst cutbeforelast cutafterlast xnormalized ynormalized syn keyword metafunCommands cutafterfirst cutbeforelast cutafterlast xnormalized ynormalized
syn keyword metafunCommands xynormalized phantom scrutinized syn keyword metafunCommands xynormalized phantom scrutinized xshifted yshifted
syn keyword metafunInternals nocolormodel greycolormodel graycolormodel rgbcolormodel cmykcolormodel syn keyword metafunInternals nocolormodel greycolormodel graycolormodel rgbcolormodel cmykcolormodel
syn keyword metafunInternals shadefactor shadeoffset textextoffset textextanchor normaltransparent syn keyword metafunInternals shadefactor shadeoffset textextoffset textextanchor normaltransparent
syn keyword metafunInternals multiplytransparent screentransparent overlaytransparent softlighttransparent hardlighttransparent syn keyword metafunInternals multiplytransparent screentransparent overlaytransparent softlighttransparent hardlighttransparent
@ -114,4 +114,4 @@ syn keyword metafunInternals getrecord cntrecord anchorxy anchorx anchory
syn keyword metafunInternals anchorht anchordp anchorul anchorll anchorlr syn keyword metafunInternals anchorht anchordp anchorul anchorll anchorlr
syn keyword metafunInternals anchorur localanchorbox localanchorcell localanchorspan anchorbox syn keyword metafunInternals anchorur localanchorbox localanchorcell localanchorspan anchorbox
syn keyword metafunInternals anchorcell anchorspan matrixbox matrixcell matrixspan syn keyword metafunInternals anchorcell anchorspan matrixbox matrixcell matrixspan
syn keyword metafunInternals pensilcolor pensilstep syn keyword metafunInternals pensilcolor pensilstep uu

View File

@ -2,30 +2,30 @@ vim9script
# Vim syntax file # Vim syntax file
# Language: ConTeXt # Language: ConTeXt
# Automatically generated by mtx-interface (2022-08-12 10:49) # Automatically generated by mtx-interface (2023-12-26 16:40)
syn keyword texAleph Alephminorversion Alephrevision Alephversion contained syn keyword texAleph Alephminorversion Alephrevision Alephversion contained
syn keyword texEtex botmarks clubpenalties currentgrouplevel currentgrouptype currentifbranch contained syn keyword texEtex botmarks clubpenalties currentgrouplevel currentgrouptype currentifbranch contained
syn keyword texEtex currentiflevel currentiftype detokenize dimexpr displaywidowpenalties contained syn keyword texEtex currentiflevel currentiftype currentstacksize detokenize dimexpr contained
syn keyword texEtex everyeof firstmarks fontchardp fontcharht fontcharic contained syn keyword texEtex displaywidowpenalties everyeof firstmarks fontchardp fontcharht contained
syn keyword texEtex fontcharwd glueexpr glueshrink glueshrinkorder gluestretch contained syn keyword texEtex fontcharic fontcharwd glueexpr glueshrink glueshrinkorder contained
syn keyword texEtex gluestretchorder gluetomu ifcsname ifdefined iffontchar contained syn keyword texEtex gluestretch gluestretchorder gluetomu ifcsname ifdefined contained
syn keyword texEtex interactionmode interlinepenalties lastlinefit lastnodetype marks contained syn keyword texEtex iffontchar interactionmode interlinepenalties lastlinefit lastnodetype contained
syn keyword texEtex muexpr mutoglue numexpr pagediscards parshapedimen contained syn keyword texEtex marks muexpr mutoglue numexpr pagediscards contained
syn keyword texEtex parshapeindent parshapelength predisplaydirection protected savinghyphcodes contained syn keyword texEtex parshapedimen parshapeindent parshapelength predisplaydirection protected contained
syn keyword texEtex savingvdiscards scantokens showgroups showifs showtokens contained syn keyword texEtex savinghyphcodes savingvdiscards scantokens showgroups showifs contained
syn keyword texEtex splitbotmarks splitdiscards splitfirstmarks topmarks tracingassigns contained syn keyword texEtex showtokens splitbotmarks splitdiscards splitfirstmarks topmarks contained
syn keyword texEtex tracinggroups tracingifs tracingnesting unexpanded unless contained syn keyword texEtex tracingassigns tracinggroups tracingifs tracingnesting unexpanded contained
syn keyword texEtex widowpenalties contained syn keyword texEtex unless widowpenalties contained
syn keyword texLuatex Uabove Uabovewithdelims Uatop Uatopwithdelims Uchar contained syn keyword texLuatex Uabove Uabovewithdelims Uatop Uatopwithdelims Uchar contained
syn keyword texLuatex Udelcode Udelcodenum Udelimiter Udelimiterover Udelimiterunder contained syn keyword texLuatex Udelcode Udelimited Udelimiter Udelimiterover Udelimiterunder contained
syn keyword texLuatex Uhextensible Uleft Umathaccent Umathaccentbasedepth Umathaccentbaseheight contained syn keyword texLuatex Uhextensible Uleft Umathaccent Umathaccentbasedepth Umathaccentbaseheight contained
syn keyword texLuatex Umathaccentbottomovershoot Umathaccentbottomshiftdown Umathaccentsuperscriptdrop Umathaccentsuperscriptpercent Umathaccenttopovershoot contained syn keyword texLuatex Umathaccentbottomovershoot Umathaccentbottomshiftdown Umathaccentextendmargin Umathaccentsuperscriptdrop Umathaccentsuperscriptpercent contained
syn keyword texLuatex Umathaccenttopshiftup Umathaccentvariant Umathadapttoleft Umathadapttoright Umathaxis contained syn keyword texLuatex Umathaccenttopovershoot Umathaccenttopshiftup Umathaccentvariant Umathadapttoleft Umathadapttoright contained
syn keyword texLuatex Umathbotaccentvariant Umathchar Umathcharclass Umathchardef Umathcharfam contained syn keyword texLuatex Umathaxis Umathbottomaccentvariant Umathchar Umathcharclass Umathchardef contained
syn keyword texLuatex Umathcharnum Umathcharnumdef Umathcharslot Umathclass Umathcode contained syn keyword texLuatex Umathcharfam Umathcharslot Umathclass Umathcode Umathconnectoroverlapmin contained
syn keyword texLuatex Umathcodenum Umathconnectoroverlapmin Umathdegreevariant Umathdelimiterovervariant Umathdelimiterpercent contained syn keyword texLuatex Umathdegreevariant Umathdelimiterextendmargin Umathdelimiterovervariant Umathdelimiterpercent Umathdelimitershortfall contained
syn keyword texLuatex Umathdelimitershortfall Umathdelimiterundervariant Umathdenominatorvariant Umathdict Umathdictdef contained syn keyword texLuatex Umathdelimiterundervariant Umathdenominatorvariant Umathdict Umathdictdef Umathdiscretionary contained
syn keyword texLuatex Umathextrasubpreshift Umathextrasubprespace Umathextrasubshift Umathextrasubspace Umathextrasuppreshift contained syn keyword texLuatex Umathextrasubpreshift Umathextrasubprespace Umathextrasubshift Umathextrasubspace Umathextrasuppreshift contained
syn keyword texLuatex Umathextrasupprespace Umathextrasupshift Umathextrasupspace Umathflattenedaccentbasedepth Umathflattenedaccentbaseheight contained syn keyword texLuatex Umathextrasupprespace Umathextrasupshift Umathextrasupspace Umathflattenedaccentbasedepth Umathflattenedaccentbaseheight contained
syn keyword texLuatex Umathflattenedaccentbottomshiftdown Umathflattenedaccenttopshiftup Umathfractiondelsize Umathfractiondenomdown Umathfractiondenomvgap contained syn keyword texLuatex Umathflattenedaccentbottomshiftdown Umathflattenedaccenttopshiftup Umathfractiondelsize Umathfractiondenomdown Umathfractiondenomvgap contained
@ -37,100 +37,127 @@ syn keyword texLuatex Umathoverbarkern Umathoverbarrule Umathoverbarvgap Umathov
syn keyword texLuatex Umathoverdelimitervgap Umathoverlayaccentvariant Umathoverlinevariant Umathphantom Umathpresubshiftdistance contained syn keyword texLuatex Umathoverdelimitervgap Umathoverlayaccentvariant Umathoverlinevariant Umathphantom Umathpresubshiftdistance contained
syn keyword texLuatex Umathpresupshiftdistance Umathprimeraise Umathprimeraisecomposed Umathprimeshiftdrop Umathprimeshiftup contained syn keyword texLuatex Umathpresupshiftdistance Umathprimeraise Umathprimeraisecomposed Umathprimeshiftdrop Umathprimeshiftup contained
syn keyword texLuatex Umathprimespaceafter Umathprimevariant Umathprimewidth Umathquad Umathradicaldegreeafter contained syn keyword texLuatex Umathprimespaceafter Umathprimevariant Umathprimewidth Umathquad Umathradicaldegreeafter contained
syn keyword texLuatex Umathradicaldegreebefore Umathradicaldegreeraise Umathradicalkern Umathradicalrule Umathradicalvariant contained syn keyword texLuatex Umathradicaldegreebefore Umathradicaldegreeraise Umathradicalextensibleafter Umathradicalextensiblebefore Umathradicalkern contained
syn keyword texLuatex Umathradicalvgap Umathruledepth Umathruleheight Umathskeweddelimitertolerance Umathskewedfractionhgap contained syn keyword texLuatex Umathradicalrule Umathradicalvariant Umathradicalvgap Umathruledepth Umathruleheight contained
syn keyword texLuatex Umathskewedfractionvgap Umathsource Umathspaceafterscript Umathspacebeforescript Umathstackdenomdown contained syn keyword texLuatex Umathskeweddelimitertolerance Umathskewedfractionhgap Umathskewedfractionvgap Umathsource Umathspaceafterscript contained
syn keyword texLuatex Umathstacknumup Umathstackvariant Umathstackvgap Umathsubscriptvariant Umathsubshiftdistance contained syn keyword texLuatex Umathspacebeforescript Umathstackdenomdown Umathstacknumup Umathstackvariant Umathstackvgap contained
syn keyword texLuatex Umathsubshiftdown Umathsubshiftdrop Umathsubsupshiftdown Umathsubsupvgap Umathsubtopmax contained syn keyword texLuatex Umathsubscriptvariant Umathsubshiftdistance Umathsubshiftdown Umathsubshiftdrop Umathsubsupshiftdown contained
syn keyword texLuatex Umathsupbottommin Umathsuperscriptvariant Umathsupshiftdistance Umathsupshiftdrop Umathsupshiftup contained syn keyword texLuatex Umathsubsupvgap Umathsubtopmax Umathsupbottommin Umathsuperscriptvariant Umathsupshiftdistance contained
syn keyword texLuatex Umathsupsubbottommax Umathtopaccentvariant Umathunderbarkern Umathunderbarrule Umathunderbarvgap contained syn keyword texLuatex Umathsupshiftdrop Umathsupshiftup Umathsupsubbottommax Umathtopaccentvariant Umathunderbarkern contained
syn keyword texLuatex Umathunderdelimiterbgap Umathunderdelimitervariant Umathunderdelimitervgap Umathunderlinevariant Umathuseaxis contained syn keyword texLuatex Umathunderbarrule Umathunderbarvgap Umathunderdelimiterbgap Umathunderdelimitervariant Umathunderdelimitervgap contained
syn keyword texLuatex Umathvextensiblevariant Umathvoid Umathxscale Umathyscale Umiddle contained syn keyword texLuatex Umathunderlinevariant Umathuseaxis Umathvextensiblevariant Umathvoid Umathxscale contained
syn keyword texLuatex Unosubprescript Unosubscript Unosuperprescript Unosuperscript Uoperator contained syn keyword texLuatex Umathyscale Umiddle Unosubprescript Unosubscript Unosuperprescript contained
syn keyword texLuatex Uover Uoverdelimiter Uoverwithdelims Uprimescript Uradical contained syn keyword texLuatex Unosuperscript Uoperator Uover Uoverdelimiter Uoverwithdelims contained
syn keyword texLuatex Uright Uroot Ushiftedsubprescript Ushiftedsubscript Ushiftedsuperprescript contained syn keyword texLuatex Uprimescript Uradical Uright Uroot Urooted contained
syn keyword texLuatex Ushiftedsuperscript Uskewed Uskewedwithdelims Ustack Ustartdisplaymath contained syn keyword texLuatex Ushiftedsubprescript Ushiftedsubscript Ushiftedsuperprescript Ushiftedsuperscript Uskewed contained
syn keyword texLuatex Ustartmath Ustartmathmode Ustopdisplaymath Ustopmath Ustopmathmode contained syn keyword texLuatex Uskewedwithdelims Ustack Ustartdisplaymath Ustartmath Ustartmathmode contained
syn keyword texLuatex Ustopdisplaymath Ustopmath Ustopmathmode Ustretched Ustretchedwithdelims contained
syn keyword texLuatex Ustyle Usubprescript Usubscript Usuperprescript Usuperscript contained syn keyword texLuatex Ustyle Usubprescript Usubscript Usuperprescript Usuperscript contained
syn keyword texLuatex Uunderdelimiter Uvextensible adjustspacing adjustspacingshrink adjustspacingstep contained syn keyword texLuatex Uunderdelimiter Uvextensible additionalpageskip adjustspacing adjustspacingshrink contained
syn keyword texLuatex adjustspacingstretch afterassigned aftergrouped aliased alignmark contained syn keyword texLuatex adjustspacingstep adjustspacingstretch advanceby afterassigned aftergrouped contained
syn keyword texLuatex alignmentcellsource alignmentwrapsource aligntab allcrampedstyles alldisplaystyles contained syn keyword texLuatex aliased aligncontent alignmark alignmentcellsource alignmentwrapsource contained
syn keyword texLuatex allmathstyles allscriptscriptstyles allscriptstyles allsplitstyles alltextstyles contained syn keyword texLuatex aligntab allcrampedstyles alldisplaystyles allmainstyles allmathstyles contained
syn keyword texLuatex alluncrampedstyles atendofgroup atendofgrouped attribute attributedef contained syn keyword texLuatex allscriptscriptstyles allscriptstyles allsplitstyles alltextstyles alluncrampedstyles contained
syn keyword texLuatex automaticdiscretionary automatichyphenpenalty automigrationmode autoparagraphmode begincsname contained syn keyword texLuatex allunsplitstyles amcode associateunit atendoffile atendoffiled contained
syn keyword texLuatex beginlocalcontrol beginmathgroup beginsimplegroup boundary boxadapt contained syn keyword texLuatex atendofgroup atendofgrouped attribute attributedef automaticdiscretionary contained
syn keyword texLuatex boxanchor boxanchors boxattribute boxdirection boxfreeze contained syn keyword texLuatex automatichyphenpenalty automigrationmode autoparagraphmode begincsname beginlocalcontrol contained
syn keyword texLuatex boxgeometry boxorientation boxrepack boxshift boxsource contained syn keyword texLuatex beginmathgroup beginsimplegroup boundary boxadapt boxanchor contained
syn keyword texLuatex boxtarget boxtotal boxxmove boxxoffset boxymove contained syn keyword texLuatex boxanchors boxattribute boxdirection boxfreeze boxgeometry contained
syn keyword texLuatex boxyoffset catcodetable clearmarks copymathatomrule copymathparent contained syn keyword texLuatex boxlimitate boxorientation boxrepack boxshift boxshrink contained
syn keyword texLuatex copymathspacing crampeddisplaystyle crampedscriptscriptstyle crampedscriptstyle crampedtextstyle contained syn keyword texLuatex boxsource boxstretch boxtarget boxtotal boxvadjust contained
syn keyword texLuatex csstring currentloopiterator currentloopnesting currentmarks defcsname contained syn keyword texLuatex boxxmove boxxoffset boxymove boxyoffset catcodetable contained
syn keyword texLuatex detokenized dimensiondef dimexpression directlua edefcsname contained syn keyword texLuatex cdef cdefcsname cfcode clearmarks constant contained
syn keyword texLuatex efcode endlocalcontrol endmathgroup endsimplegroup enforced contained syn keyword texLuatex constrained copymathatomrule copymathparent copymathspacing crampeddisplaystyle contained
syn keyword texLuatex etoks etoksapp etokspre everybeforepar everymathatom contained syn keyword texLuatex crampedscriptscriptstyle crampedscriptstyle crampedtextstyle csactive csstring contained
syn keyword texLuatex everytab exceptionpenalty expand expandafterpars expandafterspaces contained syn keyword texLuatex currentloopiterator currentloopnesting currentmarks dbox defcsname contained
syn keyword texLuatex expandcstoken expanded expandedafter expandedloop expandtoken contained syn keyword texLuatex deferred detokened detokenized dimensiondef dimexpression contained
syn keyword texLuatex explicitdiscretionary explicithyphenpenalty firstvalidlanguage flushmarks fontcharta contained syn keyword texLuatex directlua discretionaryoptions divideby dpack dsplit contained
syn keyword texLuatex fontid fontmathcontrol fontspecdef fontspecid fontspecifiedsize contained syn keyword texLuatex edefcsname edivide edivideby efcode emergencyleftskip contained
syn keyword texLuatex fontspecscale fontspecxscale fontspecyscale fonttextcontrol formatname contained syn keyword texLuatex emergencyrightskip endlocalcontrol endmathgroup endsimplegroup enforced contained
syn keyword texLuatex frozen futurecsname futuredef futureexpand futureexpandis contained syn keyword texLuatex etoks etoksapp etokspre eufactor everybeforepar contained
syn keyword texLuatex futureexpandisap gdefcsname gleaders glet gletcsname contained syn keyword texLuatex everymathatom everytab exceptionpenalty expand expandactive contained
syn keyword texLuatex glettonothing gluespecdef glyphdatafield glyphoptions glyphscale contained syn keyword texLuatex expandafterpars expandafterspaces expandcstoken expanded expandedafter contained
syn keyword texLuatex glyphscriptfield glyphscriptscale glyphscriptscriptscale glyphstatefield glyphtextscale contained syn keyword texLuatex expandeddetokenize expandedendless expandedloop expandedrepeat expandparameter contained
syn keyword texLuatex glyphxoffset glyphxscale glyphxscaled glyphyoffset glyphyscale contained syn keyword texLuatex expandtoken expandtoks explicitdiscretionary explicithyphenpenalty firstvalidlanguage contained
syn keyword texLuatex glyphyscaled gtoksapp gtokspre hccode hjcode contained syn keyword texLuatex float floatdef floatexpr flushmarks fontcharba contained
syn keyword texLuatex hpack hyphenationmin hyphenationmode ifabsdim ifabsnum contained syn keyword texLuatex fontcharta fontid fontmathcontrol fontspecdef fontspecid contained
syn keyword texLuatex ifarguments ifboolean ifchkdim ifchknum ifcmpdim contained syn keyword texLuatex fontspecifiedname fontspecifiedsize fontspecscale fontspecxscale fontspecyscale contained
syn keyword texLuatex ifcmpnum ifcondition ifcstok ifdimexpression ifdimval contained syn keyword texLuatex fonttextcontrol formatname frozen futurecsname futuredef contained
syn keyword texLuatex ifempty ifflags ifhaschar ifhastok ifhastoks contained syn keyword texLuatex futureexpand futureexpandis futureexpandisap gdefcsname gleaders contained
syn keyword texLuatex ifhasxtoks ifincsname ifinsert ifmathparameter ifmathstyle contained syn keyword texLuatex glet gletcsname glettonothing gluespecdef glyph contained
syn keyword texLuatex ifnumexpression ifnumval ifparameter ifparameters ifrelax contained syn keyword texLuatex glyphdatafield glyphoptions glyphscale glyphscriptfield glyphscriptscale contained
syn keyword texLuatex iftok ignorearguments ignorepars immediate immutable contained syn keyword texLuatex glyphscriptscriptscale glyphstatefield glyphtextscale glyphxoffset glyphxscale contained
syn keyword texLuatex indexofcharacter indexofregister inherited initcatcodetable insertbox contained syn keyword texLuatex glyphxscaled glyphyoffset glyphyscale glyphyscaled gtoksapp contained
syn keyword texLuatex insertcopy insertdepth insertdistance insertheight insertheights contained syn keyword texLuatex gtokspre hccode hjcode hmcode holdingmigrations contained
syn keyword texLuatex insertlimit insertmaxdepth insertmode insertmultiplier insertpenalty contained syn keyword texLuatex hpack hpenalty hyphenationmin hyphenationmode ifabsdim contained
syn keyword texLuatex insertprogress insertstorage insertstoring insertunbox insertuncopy contained syn keyword texLuatex ifabsfloat ifabsnum ifarguments ifboolean ifchkdim contained
syn keyword texLuatex insertwidth instance integerdef lastarguments lastatomclass contained syn keyword texLuatex ifchkdimension ifchknum ifchknumber ifcmpdim ifcmpnum contained
syn keyword texLuatex lastboundary lastchkdim lastchknum lastleftclass lastloopiterator contained syn keyword texLuatex ifcondition ifcstok ifdimexpression ifdimval ifempty contained
syn keyword texLuatex lastnamedcs lastnodesubtype lastpageextra lastparcontext lastrightclass contained syn keyword texLuatex ifflags iffloat ifhaschar ifhastok ifhastoks contained
syn keyword texLuatex leftmarginkern letcharcode letcsname letfrozen letmathatomrule contained syn keyword texLuatex ifhasxtoks ifinalignment ifincsname ifinsert ifintervaldim contained
syn keyword texLuatex letmathparent letmathspacing letprotected lettonothing linebreakcriterium contained syn keyword texLuatex ifintervalfloat ifintervalnum ifmathparameter ifmathstyle ifnumexpression contained
syn keyword texLuatex linedirection localbrokenpenalty localcontrol localcontrolled localcontrolledloop contained syn keyword texLuatex ifnumval ifparameter ifparameters ifrelax iftok contained
syn keyword texLuatex localinterlinepenalty localleftbox localleftboxbox localmiddlebox localmiddleboxbox contained syn keyword texLuatex ifzerodim ifzerofloat ifzeronum ignorearguments ignoredepthcriterion contained
syn keyword texLuatex localrightbox localrightboxbox lpcode luabytecode luabytecodecall contained syn keyword texLuatex ignorenestedupto ignorepars ignorerest ignoreupto immediate contained
syn keyword texLuatex immutable indexofcharacter indexofregister inherited initcatcodetable contained
syn keyword texLuatex initialpageskip initialtopskip insertbox insertcopy insertdepth contained
syn keyword texLuatex insertdistance insertheight insertheights insertlimit insertmaxdepth contained
syn keyword texLuatex insertmode insertmultiplier insertpenalty insertprogress insertstorage contained
syn keyword texLuatex insertstoring insertunbox insertuncopy insertwidth instance contained
syn keyword texLuatex integerdef lastarguments lastatomclass lastboundary lastchkdimension contained
syn keyword texLuatex lastchknumber lastleftclass lastloopiterator lastnamedcs lastnodesubtype contained
syn keyword texLuatex lastpageextra lastparcontext lastrightclass leftmarginkern letcharcode contained
syn keyword texLuatex letcsname letfrozen letmathatomrule letmathparent letmathspacing contained
syn keyword texLuatex letprotected lettolastnamedcs lettonothing linebreakcriterion linebreakoptional contained
syn keyword texLuatex linebreakpasses linedirection localbrokenpenalty localcontrol localcontrolled contained
syn keyword texLuatex localcontrolledendless localcontrolledloop localcontrolledrepeat localinterlinepenalty localleftbox contained
syn keyword texLuatex localleftboxbox localmiddlebox localmiddleboxbox localpretolerance localrightbox contained
syn keyword texLuatex localrightboxbox localtolerance lpcode luabytecode luabytecodecall contained
syn keyword texLuatex luacopyinputnodes luadef luaescapestring luafunction luafunctioncall contained syn keyword texLuatex luacopyinputnodes luadef luaescapestring luafunction luafunctioncall contained
syn keyword texLuatex luatexbanner luatexrevision luatexversion mathaccent mathatom contained syn keyword texLuatex luatexbanner luatexrevision luatexversion mathatom mathatomglue contained
syn keyword texLuatex mathatomglue mathatomskip mathbackwardpenalties mathbeginclass mathcheckfencesmode contained syn keyword texLuatex mathatomskip mathbackwardpenalties mathbeginclass mathboundary mathcheckfencesmode contained
syn keyword texLuatex mathdictgroup mathdictproperties mathdirection mathdisplaymode mathdisplayskipmode contained syn keyword texLuatex mathdictgroup mathdictproperties mathdirection mathdisplaymode mathdisplaypenaltyfactor contained
syn keyword texLuatex mathdoublescriptmode mathendclass matheqnogapstep mathfenced mathfontcontrol contained syn keyword texLuatex mathdisplayskipmode mathdoublescriptmode mathendclass matheqnogapstep mathfontcontrol contained
syn keyword texLuatex mathforwardpenalties mathfrac mathghost mathgluemode mathgroupingmode contained syn keyword texLuatex mathforwardpenalties mathgluemode mathgroupingmode mathinlinepenaltyfactor mathleftclass contained
syn keyword texLuatex mathinlinemainstyle mathleftclass mathlimitsmode mathmiddle mathnolimitsmode contained syn keyword texLuatex mathlimitsmode mathmainstyle mathnolimitsmode mathpenaltiesmode mathpretolerance contained
syn keyword texLuatex mathpenaltiesmode mathrad mathrightclass mathrulesfam mathrulesmode contained syn keyword texLuatex mathrightclass mathrulesfam mathrulesmode mathscale mathscriptsmode contained
syn keyword texLuatex mathscale mathscriptsmode mathslackmode mathspacingmode mathstackstyle contained syn keyword texLuatex mathslackmode mathspacingmode mathstackstyle mathstyle mathstylefontid contained
syn keyword texLuatex mathstyle mathstylefontid mathsurroundmode mathsurroundskip maththreshold contained syn keyword texLuatex mathsurroundmode mathsurroundskip maththreshold mathtolerance meaningasis contained
syn keyword texLuatex mugluespecdef mutable noaligned noatomruling noboundary contained syn keyword texLuatex meaningful meaningfull meaningles meaningless mugluespecdef contained
syn keyword texLuatex nohrule norelax normalizelinemode normalizeparmode nospaces contained syn keyword texLuatex multiplyby mutable nestedloopiterator noaligned noatomruling contained
syn keyword texLuatex novrule numericscale numexpression orelse orphanpenalties contained syn keyword texLuatex noboundary nohrule norelax normalizelinemode normalizeparmode contained
syn keyword texLuatex orphanpenalty orunless outputbox overloaded overloadmode contained syn keyword texLuatex nospaces novrule numericscale numericscaled numexpression contained
syn keyword texLuatex pageboundary pageextragoal pagevsize parametercount parametermark contained syn keyword texLuatex optionalboundary orelse orphanpenalties orphanpenalty orunless contained
syn keyword texLuatex parattribute pardirection permanent pettymuskip postexhyphenchar contained syn keyword texLuatex outputbox overloaded overloadmode overshoot pageboundary contained
syn keyword texLuatex posthyphenchar postinlinepenalty prebinoppenalty predisplaygapfactor preexhyphenchar contained syn keyword texLuatex pagedepth pageexcess pageextragoal pagefistretch pagelastdepth contained
syn keyword texLuatex prehyphenchar preinlinepenalty prerelpenalty protrudechars protrusionboundary contained syn keyword texLuatex pagelastfilllstretch pagelastfillstretch pagelastfilstretch pagelastheight pagelastshrink contained
syn keyword texLuatex pxdimen quitloop quitvmode resetmathspacing retokenized contained syn keyword texLuatex pagelaststretch pagevsize parametercount parameterdef parameterindex contained
syn keyword texLuatex rightmarginkern rpcode savecatcodetable scaledemwidth scaledexheight contained syn keyword texLuatex parametermark parametermode parattribute pardirection parfillleftskip contained
syn keyword texLuatex scaledextraspace scaledinterwordshrink scaledinterwordspace scaledinterwordstretch scaledmathstyle contained syn keyword texLuatex parfillrightskip parinitleftskip parinitrightskip parpasses permanent contained
syn keyword texLuatex scaledslantperpoint scantextokens semiexpand semiexpanded semiprotected contained syn keyword texLuatex pettymuskip positdef postexhyphenchar posthyphenchar postinlinepenalty contained
syn keyword texLuatex setdefaultmathcodes setfontid setmathatomrule setmathdisplaypostpenalty setmathdisplayprepenalty contained syn keyword texLuatex postshortinlinepenalty prebinoppenalty predisplaygapfactor preexhyphenchar prehyphenchar contained
syn keyword texLuatex setmathignore setmathoptions setmathpostpenalty setmathprepenalty setmathspacing contained syn keyword texLuatex preinlinepenalty prerelpenalty preshortinlinepenalty previousloopiterator protecteddetokenize contained
syn keyword texLuatex shapingpenaltiesmode shapingpenalty skewed skewedwithdelims snapshotpar contained syn keyword texLuatex protectedexpandeddetokenize protrudechars protrusionboundary pxdimen quitloop contained
syn keyword texLuatex supmarkmode swapcsvalues tabsize textdirection thewithoutunit contained syn keyword texLuatex quitloopnow quitvmode rdivide rdivideby resetmathspacing contained
syn keyword texLuatex tinymuskip todimension tohexadecimal tointeger tokenized contained syn keyword texLuatex retained retokenized rightmarginkern rpcode savecatcodetable contained
syn keyword texLuatex toksapp tokspre tolerant tomathstyle toscaled contained syn keyword texLuatex scaledemwidth scaledexheight scaledextraspace scaledfontcharba scaledfontchardp contained
syn keyword texLuatex tosparsedimension tosparsescaled tpack tracingadjusts tracingalignments contained syn keyword texLuatex scaledfontcharht scaledfontcharic scaledfontcharta scaledfontcharwd scaledfontdimen contained
syn keyword texLuatex tracingexpressions tracingfonts tracingfullboxes tracinghyphenation tracinginserts contained syn keyword texLuatex scaledinterwordshrink scaledinterwordspace scaledinterwordstretch scaledmathstyle scaledslantperpoint contained
syn keyword texLuatex tracinglevels tracingmarks tracingmath tracingnodes tracingpenalties contained syn keyword texLuatex scantextokens semiexpand semiexpanded semiprotected setdefaultmathcodes contained
syn keyword texLuatex uleaders undent unexpandedloop unletfrozen unletprotected contained syn keyword texLuatex setfontid setmathatomrule setmathdisplaypostpenalty setmathdisplayprepenalty setmathignore contained
syn keyword texLuatex untraced vpack wordboundary wrapuppar xdefcsname contained syn keyword texLuatex setmathoptions setmathpostpenalty setmathprepenalty setmathspacing shapingpenaltiesmode contained
syn keyword texLuatex shapingpenalty shortinlinemaththreshold shortinlineorphanpenalty singlelinepenalty snapshotpar contained
syn keyword texLuatex spacefactormode spacefactorshrinklimit spacefactorstretchlimit srule supmarkmode contained
syn keyword texLuatex swapcsvalues tabsize textdirection thewithoutunit tinymuskip contained
syn keyword texLuatex todimension tohexadecimal tointeger tokenized toksapp contained
syn keyword texLuatex tokspre tolerant tomathstyle toscaled tosparsedimension contained
syn keyword texLuatex tosparsescaled tpack tracingadjusts tracingalignments tracingexpressions contained
syn keyword texLuatex tracingfonts tracingfullboxes tracinghyphenation tracinginserts tracinglevels contained
syn keyword texLuatex tracinglists tracingmarks tracingmath tracingnodes tracingpasses contained
syn keyword texLuatex tracingpenalties tsplit uleaders undent unexpandedendless contained
syn keyword texLuatex unexpandedloop unexpandedrepeat unhpack unletfrozen unletprotected contained
syn keyword texLuatex untraced unvpack variablefam virtualhrule virtualvrule contained
syn keyword texLuatex vpack vpenalty wordboundary wrapuppar xdefcsname contained
syn keyword texLuatex xtoks xtoksapp xtokspre contained syn keyword texLuatex xtoks xtoksapp xtokspre contained
syn keyword texOmega Omegaminorversion Omegarevision Omegaversion contained syn keyword texOmega Omegaminorversion Omegarevision Omegaversion contained
syn keyword texPdftex ifpdfabsdim ifpdfabsnum ifpdfprimitive pdfadjustspacing pdfannot contained syn keyword texPdftex ifpdfabsdim ifpdfabsnum ifpdfprimitive pdfadjustspacing pdfannot contained
@ -145,39 +172,39 @@ syn keyword texPdftex pdfinfoomitdate pdfinsertht pdflastannot pdflastlinedepth
syn keyword texPdftex pdflastobj pdflastxform pdflastximage pdflastximagepages pdflastxpos contained syn keyword texPdftex pdflastobj pdflastxform pdflastximage pdflastximagepages pdflastxpos contained
syn keyword texPdftex pdflastypos pdflinkmargin pdfliteral pdfmajorversion pdfmapfile contained syn keyword texPdftex pdflastypos pdflinkmargin pdfliteral pdfmajorversion pdfmapfile contained
syn keyword texPdftex pdfmapline pdfminorversion pdfnames pdfnoligatures pdfnormaldeviate contained syn keyword texPdftex pdfmapline pdfminorversion pdfnames pdfnoligatures pdfnormaldeviate contained
syn keyword texPdftex pdfobj pdfobjcompresslevel pdfomitcharset pdfomitcidset pdfoutline contained syn keyword texPdftex pdfobj pdfobjcompresslevel pdfomitcharset pdfomitcidset pdfomitinfodict contained
syn keyword texPdftex pdfoutput pdfpageattr pdfpagebox pdfpageheight pdfpageref contained syn keyword texPdftex pdfoutline pdfoutput pdfpageattr pdfpagebox pdfpageheight contained
syn keyword texPdftex pdfpageresources pdfpagesattr pdfpagewidth pdfpkfixeddpi pdfpkmode contained syn keyword texPdftex pdfpageref pdfpageresources pdfpagesattr pdfpagewidth pdfpkfixeddpi contained
syn keyword texPdftex pdfpkresolution pdfprimitive pdfprotrudechars pdfpxdimen pdfrandomseed contained syn keyword texPdftex pdfpkmode pdfpkresolution pdfprimitive pdfprotrudechars pdfpxdimen contained
syn keyword texPdftex pdfrecompress pdfrefobj pdfrefxform pdfrefximage pdfreplacefont contained syn keyword texPdftex pdfrandomseed pdfrecompress pdfrefobj pdfrefxform pdfrefximage contained
syn keyword texPdftex pdfrestore pdfretval pdfsave pdfsavepos pdfsetmatrix contained syn keyword texPdftex pdfreplacefont pdfrestore pdfretval pdfsave pdfsavepos contained
syn keyword texPdftex pdfsetrandomseed pdfstartlink pdfstartthread pdfsuppressoptionalinfo pdfsuppressptexinfo contained syn keyword texPdftex pdfsetmatrix pdfsetrandomseed pdfstartlink pdfstartthread pdfsuppressoptionalinfo contained
syn keyword texPdftex pdftexbanner pdftexrevision pdftexversion pdfthread pdfthreadmargin contained syn keyword texPdftex pdfsuppressptexinfo pdftexbanner pdftexrevision pdftexversion pdfthread contained
syn keyword texPdftex pdftracingfonts pdftrailer pdftrailerid pdfuniformdeviate pdfuniqueresname contained syn keyword texPdftex pdfthreadmargin pdftracingfonts pdftrailer pdftrailerid pdfuniformdeviate contained
syn keyword texPdftex pdfvorigin pdfxform pdfxformattr pdfxformmargin pdfxformname contained syn keyword texPdftex pdfuniqueresname pdfvorigin pdfxform pdfxformattr pdfxformmargin contained
syn keyword texPdftex pdfxformresources pdfximage contained syn keyword texPdftex pdfxformname pdfxformresources pdfximage contained
syn keyword texTex - / above abovedisplayshortskip contained syn keyword texTex - / above abovedisplayshortskip contained
syn keyword texTex abovedisplayskip abovewithdelims accent adjdemerits advance contained syn keyword texTex abovedisplayskip abovewithdelims accent adjdemerits advance contained
syn keyword texTex afterassignment aftergroup aligncontent atop atopwithdelims contained syn keyword texTex afterassignment aftergroup atop atopwithdelims badness contained
syn keyword texTex badness baselineskip batchmode begingroup belowdisplayshortskip contained syn keyword texTex baselineskip batchmode begingroup belowdisplayshortskip belowdisplayskip contained
syn keyword texTex belowdisplayskip binoppenalty botmark box boxmaxdepth contained syn keyword texTex binoppenalty botmark box boxmaxdepth brokenpenalty contained
syn keyword texTex brokenpenalty catcode char chardef cleaders contained syn keyword texTex catcode char chardef cleaders clubpenalty contained
syn keyword texTex clubpenalty copy count countdef cr contained syn keyword texTex copy count countdef cr crcr contained
syn keyword texTex crcr csname day deadcycles def contained syn keyword texTex csname day deadcycles def defaulthyphenchar contained
syn keyword texTex defaulthyphenchar defaultskewchar delcode delimiter delimiterfactor contained syn keyword texTex defaultskewchar delcode delimiter delimiterfactor delimitershortfall contained
syn keyword texTex delimitershortfall dimen dimendef discretionary displayindent contained syn keyword texTex dimen dimendef discretionary displayindent displaylimits contained
syn keyword texTex displaylimits displaystyle displaywidowpenalty displaywidth divide contained syn keyword texTex displaystyle displaywidowpenalty displaywidth divide doubleadjdemerits contained
syn keyword texTex doublehyphendemerits dp dump edef else contained syn keyword texTex doublehyphendemerits dp dump edef else contained
syn keyword texTex emergencystretch end endcsname endgroup endinput contained syn keyword texTex emergencyextrastretch emergencystretch end endcsname endgroup contained
syn keyword texTex endlinechar eqno errhelp errmessage errorcontextlines contained syn keyword texTex endinput endlinechar eofinput eqno errhelp contained
syn keyword texTex errorstopmode escapechar everycr everydisplay everyhbox contained syn keyword texTex errmessage errorcontextlines errorstopmode escapechar everycr contained
syn keyword texTex everyjob everymath everypar everyvbox exhyphenchar contained syn keyword texTex everydisplay everyhbox everyjob everymath everypar contained
syn keyword texTex exhyphenpenalty expandafter fam fi finalhyphendemerits contained syn keyword texTex everyvbox exhyphenchar exhyphenpenalty expandafter fam contained
syn keyword texTex firstmark floatingpenalty font fontdimen fontname contained syn keyword texTex fi finalhyphendemerits firstmark floatingpenalty font contained
syn keyword texTex fontspecifiedname futurelet gdef global globaldefs contained syn keyword texTex fontdimen fontname futurelet gdef global contained
syn keyword texTex glyph halign hangafter hangindent hbadness contained syn keyword texTex globaldefs halign hangafter hangindent hbadness contained
syn keyword texTex hbox hfil hfill hfilneg hfuzz contained syn keyword texTex hbox hfil hfill hfilneg hfuzz contained
syn keyword texTex holdinginserts holdingmigrations hrule hsize hskip contained syn keyword texTex hkern holdinginserts hrule hsize hskip contained
syn keyword texTex hss ht hyphenation hyphenchar hyphenpenalty contained syn keyword texTex hss ht hyphenation hyphenchar hyphenpenalty contained
syn keyword texTex if ifcase ifcat ifdim iffalse contained syn keyword texTex if ifcase ifcat ifdim iffalse contained
syn keyword texTex ifhbox ifhmode ifinner ifmmode ifnum contained syn keyword texTex ifhbox ifhmode ifinner ifmmode ifnum contained
@ -188,38 +215,36 @@ syn keyword texTex language lastbox lastkern lastpenalty lastskip contained
syn keyword texTex lccode leaders left lefthyphenmin leftskip contained syn keyword texTex lccode leaders left lefthyphenmin leftskip contained
syn keyword texTex leqno let limits linepenalty lineskip contained syn keyword texTex leqno let limits linepenalty lineskip contained
syn keyword texTex lineskiplimit long looseness lower lowercase contained syn keyword texTex lineskiplimit long looseness lower lowercase contained
syn keyword texTex mark mathbin mathchar mathchardef mathchoice contained syn keyword texTex mark mathaccent mathbin mathchar mathchardef contained
syn keyword texTex mathclose mathcode mathinner mathop mathopen contained syn keyword texTex mathchoice mathclose mathcode mathinner mathop contained
syn keyword texTex mathord mathpunct mathrel mathsurround maxdeadcycles contained syn keyword texTex mathopen mathord mathpunct mathrel mathsurround contained
syn keyword texTex maxdepth meaning meaningasis meaningfull meaningless contained syn keyword texTex maxdeadcycles maxdepth meaning medmuskip message contained
syn keyword texTex medmuskip message middle mkern month contained syn keyword texTex middle mkern month moveleft moveright contained
syn keyword texTex moveleft moveright mskip multiply muskip contained syn keyword texTex mskip multiply muskip muskipdef newlinechar contained
syn keyword texTex muskipdef newlinechar noalign noexpand noindent contained syn keyword texTex noalign noexpand noindent nolimits nonscript contained
syn keyword texTex nolimits nonscript nonstopmode nulldelimiterspace nullfont contained syn keyword texTex nonstopmode nulldelimiterspace nullfont number omit contained
syn keyword texTex number omit or outer output contained syn keyword texTex or outer output outputpenalty over contained
syn keyword texTex outputpenalty over overfullrule overline overshoot contained syn keyword texTex overfullrule overline overwithdelims pagefilllstretch pagefillstretch contained
syn keyword texTex overwithdelims pagedepth pagefilllstretch pagefillstretch pagefilstretch contained syn keyword texTex pagefilstretch pagegoal pageshrink pagestretch pagetotal contained
syn keyword texTex pagegoal pageshrink pagestretch pagetotal par contained syn keyword texTex par parfillskip parindent parshape parskip contained
syn keyword texTex parfillleftskip parfillskip parindent parinitleftskip parinitrightskip contained syn keyword texTex patterns pausing penalty postdisplaypenalty predisplaypenalty contained
syn keyword texTex parshape parskip patterns pausing penalty contained syn keyword texTex predisplaysize pretolerance prevdepth prevgraf radical contained
syn keyword texTex postdisplaypenalty predisplaypenalty predisplaysize pretolerance prevdepth contained syn keyword texTex raise relax relpenalty right righthyphenmin contained
syn keyword texTex prevgraf radical raise relax relpenalty contained syn keyword texTex rightskip romannumeral scriptfont scriptscriptfont scriptscriptstyle contained
syn keyword texTex right righthyphenmin rightskip romannumeral scaledfontdimen contained syn keyword texTex scriptspace scriptstyle scrollmode setbox setlanguage contained
syn keyword texTex scriptfont scriptscriptfont scriptscriptstyle scriptspace scriptstyle contained syn keyword texTex sfcode shipout show showbox showboxbreadth contained
syn keyword texTex scrollmode setbox setlanguage sfcode shipout contained syn keyword texTex showboxdepth showlists shownodedetails showthe skewchar contained
syn keyword texTex show showbox showboxbreadth showboxdepth showlists contained syn keyword texTex skip skipdef spacefactor spaceskip span contained
syn keyword texTex shownodedetails showthe skewchar skip skipdef contained syn keyword texTex splitbotmark splitfirstmark splitmaxdepth splittopskip string contained
syn keyword texTex spacefactor spaceskip span splitbotmark splitfirstmark contained syn keyword texTex tabskip textfont textstyle the thickmuskip contained
syn keyword texTex splitmaxdepth splittopskip srule string tabskip contained syn keyword texTex thinmuskip time toks toksdef tolerance contained
syn keyword texTex textfont textstyle the thickmuskip thinmuskip contained syn keyword texTex topmark topskip tracingcommands tracinglostchars tracingmacros contained
syn keyword texTex time toks toksdef tolerance topmark contained syn keyword texTex tracingonline tracingoutput tracingpages tracingparagraphs tracingrestores contained
syn keyword texTex topskip tracingcommands tracinglostchars tracingmacros tracingonline contained syn keyword texTex tracingstats uccode uchyph unboundary underline contained
syn keyword texTex tracingoutput tracingpages tracingparagraphs tracingrestores tracingstats contained syn keyword texTex unhbox unhcopy unkern unpenalty unskip contained
syn keyword texTex uccode uchyph unboundary underline unhbox contained syn keyword texTex unvbox unvcopy uppercase vadjust valign contained
syn keyword texTex unhcopy unhpack unkern unpenalty unskip contained syn keyword texTex vbadness vbox vcenter vfil vfill contained
syn keyword texTex unvbox unvcopy unvpack uppercase vadjust contained syn keyword texTex vfilneg vfuzz vkern vrule vsize contained
syn keyword texTex valign vbadness vbox vcenter vfil contained
syn keyword texTex vfill vfilneg vfuzz vrule vsize contained
syn keyword texTex vskip vsplit vss vtop wd contained syn keyword texTex vskip vsplit vss vtop wd contained
syn keyword texTex widowpenalty xdef xleaders xspaceskip year contained syn keyword texTex widowpenalty xdef xleaders xspaceskip year contained
syn keyword texXetex XeTeXversion contained syn keyword texXetex XeTeXversion contained