From: Lifepillar Date: Sun, 11 Jan 2026 18:36:52 +0000 (+0000) Subject: runtime: Update files for ConTeXt, METAFONT, and MetaPost. X-Git-Tag: v9.1.2078~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb7cbfcc12437eb9fafad6dc37639d7ab51d9bfd;p=thirdparty%2Fvim.git runtime: Update files for ConTeXt, METAFONT, and MetaPost. This update is meant to be included in the upcoming 9.2 release. **New** - Support ConTeXt's convention to optionally specify an output directory in a comment line at the beginning of a source file. - If a log file is not found, Vim does not create a new buffer. - Removed `syntax/shared` files for the following reasons: - they are not necessary for the plugin to work (they only improve over existing syntax highlighting); - they are relative large; - they can be automatically (re)generated by users at any time using ConTeXt (explained in the doc); - since ConTeXt is updated frequently, they quickly become obsolete. **Minor** - Prefer `var` to `const` inside functions. - Prefer `$`-interpolation to `printf()`. - All revision dates set to the same date for consistency. - Updated the error format. - Various tweaks to the documentation, but nothing disruptive or new. closes: #19148 Signed-off-by: Lifepillar Signed-off-by: Christian Brabandt --- diff --git a/.github/MAINTAINERS b/.github/MAINTAINERS index f21bc31b0c..048445721b 100644 --- a/.github/MAINTAINERS +++ b/.github/MAINTAINERS @@ -10,6 +10,7 @@ # will be requested to review. nsis/lang/russian.nsi @RestorerZ +runtime/autoload/context.vim @lifepillar runtime/autoload/freebasic.vim @dkearns runtime/autoload/hare.vim @selenebun runtime/autoload/hcl.vim @gpanders @@ -17,6 +18,7 @@ runtime/autoload/javascriptcomplete.vim @jsit runtime/autoload/modula2.vim @dkearns runtime/autoload/rubycomplete.vim @segfault @dkearns runtime/autoload/rust.vim @lilyball +runtime/autoload/typeset.vim @lifepillar runtime/autoload/xmlformat.vim @chrisbra runtime/autoload/dist/json.vim @habamax runtime/colors/blue.vim @habamax @romainl @neutaaaaan @@ -48,6 +50,7 @@ runtime/colors/zellner.vim @habamax @romainl @neutaaaaan runtime/compiler/biome.vim @Konfekt runtime/compiler/checkstyle.vim @dkearns runtime/compiler/cm3.vim @dkearns +runtime/compiler/context.vim @lifepillar runtime/compiler/cucumber.vim @tpope runtime/compiler/dart.vim @dkearns runtime/compiler/dart2js.vim @dkearns @@ -142,6 +145,7 @@ runtime/ftplugin/chicken.vim @evhan runtime/ftplugin/clojure.vim @axvr runtime/ftplugin/cmakecache.vim @ribru17 runtime/ftplugin/codeowners.vim @jparise +runtime/ftplugin/context.vim @lifepillar runtime/ftplugin/cook.vim @ribru17 runtime/ftplugin/cs.vim @nickspoons runtime/ftplugin/csh.vim @dkearns @@ -241,9 +245,11 @@ runtime/ftplugin/markdown.vim @tpope runtime/ftplugin/mbsync.vim @fymyte runtime/ftplugin/mediawiki.vim @avidseeker runtime/ftplugin/meson.vim @Liambeguin +runtime/ftplugin/mf.vim @lifepillar runtime/ftplugin/modula2.vim @dkearns runtime/ftplugin/modula3.vim @dkearns runtime/ftplugin/mojo.vim @ribru17 +runtime/ftplugin/mp.vim @lifepillar runtime/ftplugin/mss.vim @Freed-Wu runtime/ftplugin/nginx.vim @chr4 runtime/ftplugin/nim.vim @ribru17 @@ -346,6 +352,7 @@ runtime/indent/cdl.vim @dkearns runtime/indent/chatito.vim @ObserverOfTime runtime/indent/clojure.vim @axvr runtime/indent/config.vim @dkearns +runtime/indent/context.vim @lifepillar runtime/indent/cs.vim @nickspoons runtime/indent/css.vim @dkearns runtime/indent/cucumber.vim @tpope @@ -392,8 +399,10 @@ runtime/indent/lua.vim @marcuscf runtime/indent/m17ndb.vim @dseomn runtime/indent/make.vim @dkearns runtime/indent/meson.vim @Liambeguin +runtime/indent/mf.vim @lifepillar runtime/indent/mma.vim @dkearns runtime/indent/mojo.vim @ribru17 +runtime/indent/mp.vim @lifepillar runtime/indent/nginx.vim @chr4 runtime/indent/nsis.vim @k-takata runtime/indent/nu.vim @elkasztano @@ -474,6 +483,7 @@ runtime/syntax/chicken.vim @evhan runtime/syntax/chuck.vim @andreacfromtheapp runtime/syntax/clojure.vim @axvr runtime/syntax/codeowners.vim @jparise +runtime/syntax/context.vim @lifepillar runtime/syntax/cs.vim @nickspoons runtime/syntax/css.vim @jsit runtime/syntax/csv.vim @habamax @@ -580,11 +590,13 @@ runtime/syntax/mbsync.vim @fymyte runtime/syntax/mason.vim @petdance runtime/syntax/mediawiki.vim @avidseeker runtime/syntax/meson.vim @Liambeguin +runtime/syntax/mf.vim @lifepillar runtime/syntax/modula2.vim @dkearns runtime/syntax/modula2/opt/iso.vim @trijezdci runtime/syntax/modula2/opt/pim.vim @trijezdci runtime/syntax/modula2/opt/r10.vim @trijezdci runtime/syntax/modula3.vim @dkearns +runtime/syntax/mp.vim @lifepillar runtime/syntax/mss.vim @Freed-Wu runtime/syntax/n1ql.vim @pr3d4t0r runtime/syntax/nginx.vim @chr4 diff --git a/runtime/autoload/context.vim b/runtime/autoload/context.vim index 07edd9ae4e..df418bf139 100644 --- a/runtime/autoload/context.vim +++ b/runtime/autoload/context.vim @@ -3,7 +3,7 @@ vim9script # Language: ConTeXt typesetting engine # Maintainer: Nicola Vitacolonna # Former Maintainers: Nikolai Weibull -# Latest Revision: 2023 Dec 26 +# Latest Revision: 2026 Jan 10 # Typesetting {{{ import autoload './typeset.vim' @@ -30,14 +30,21 @@ export def StopJobs() enddef export def Log(bufname: string) - execute 'edit' typeset.LogPath(bufname) + var logpath = typeset.LogPath(bufname) + + if filereadable(logpath) + execute 'edit' typeset.LogPath(bufname) + return + endif + + echomsg $'[ConTeXt] No log file found ({logpath})' enddef # }}} # Completion {{{ def BinarySearch(base: string, keywords: list): list - const pat = '^' .. base - const len = len(keywords) + var pat = '^' .. base + var len = len(keywords) var res = [] var lft = 0 var rgt = len diff --git a/runtime/autoload/typeset.vim b/runtime/autoload/typeset.vim index a1a809221c..ed808a817e 100644 --- a/runtime/autoload/typeset.vim +++ b/runtime/autoload/typeset.vim @@ -2,7 +2,7 @@ vim9script # Language: Generic TeX typesetting engine # Maintainer: Nicola Vitacolonna -# Latest Revision: 2022 Aug 12 +# Latest Revision: 2026 Jan 10 # Constants and helpers {{{ const SLASH = !exists("+shellslash") || &shellslash ? '/' : '\' @@ -11,7 +11,7 @@ def Echo(msg: string, mode: string, label: string) redraw echo "\r" execute 'echohl' mode - echomsg printf('[%s] %s', label, msg) + echomsg $'[{label}] {msg}' echohl None enddef @@ -29,7 +29,7 @@ enddef # }}} # Track jobs {{{ -var running_jobs = {} # Dictionary of job IDs of jobs currently executing +var running_jobs: dict> = {} def AddJob(label: string, j: job) if !has_key(running_jobs, label) @@ -55,7 +55,7 @@ def ProcessOutput(qfid: number, wd: string, efm: string, ch: channel, msg: strin # Make sure the quickfix list still exists if getqflist({'id': qfid}).id != qfid EchoErr("Quickfix list not found, stopping the job") - call job_stop(ch_getjob(ch)) + job_stop(ch_getjob(ch)) return endif @@ -106,31 +106,81 @@ enddef # # This function searches for the magic line in the first ten lines of the # given buffer, and returns the full path of the root document. -# -# NOTE: the value of "% !TEX root" *must* be a relative path. export def FindRootDocument(bufname: string = bufname("%")): string - const bufnr = bufnr(bufname) + var docpath = fnamemodify(bufname, ":p") + var bufnr = bufnr(bufname) + var header: list + var rootpath = docpath + + if bufexists(bufnr) + header = getbufline(bufnr, 1, 10) + elseif filereadable(bufname) + header = readfile(bufname, "", 10) + else + return simplify(rootpath) + endif + + # Search for magic line `% !TEX root = ...` in the first ten lines + var idx = match(header, '^\s*%\s\+!TEX\s\+root\s*=\s*\S') - if !bufexists(bufnr) - return bufname + if idx > -1 + rootpath = matchstr(header[idx], '!TEX\s\+root\s*=\s*\zs.*$') + + if !isabsolutepath(rootpath) # Path is relative to the buffer's path + rootpath = fnamemodify(docpath, ":h") .. SLASH .. rootpath + endif endif - var rootpath = fnamemodify(bufname(bufnr), ':p') + return simplify(rootpath) +enddef + +# ConTeXt documents may specify an output directory in a comment using the +# following syntax: +# +# runpath=texruns: +# +# This function looks for such a comment in the first ten lines of the given +# buffer, and returns the full path of the output directory. If the comment is +# not found then the output directory coincides with the directory of the +# buffer. +export def GetOutputDirectory(bufname: string = bufname("%")): string + var basedir = fnamemodify(bufname, ':p:h') + var bufnr = bufnr(bufname) + var header: list + var outdir = basedir + + if bufexists(bufnr) + header = getbufline(bufnr, 1, 10) + elseif filereadable(bufname) + header = readfile(bufname, "", 10) + else + return simplify(outdir) + endif + + # Search for output path in the first ten lines + var idx = match(header, '^\s*%.*\ -1 - const main = matchstr(header[idx], '!TEX\s\+root\s*=\s*\zs.*$') - rootpath = simplify(fnamemodify(rootpath, ":h") .. SLASH .. main) + outdir = matchstr(header[idx], '\, - path: string, - efm: string, - env: dict = {} -): bool - var fp = fnamemodify(path, ":p") - var wd = fnamemodify(fp, ":h") + label: string, + Cmd: func(string): list, + path: string, + efm: string, + env: dict = {} + ): bool + var fp = fnamemodify(path, ':p') + var wd = fnamemodify(fp, ':h') var qfid = NewQuickfixList(fp) if qfid == -1 @@ -162,7 +212,7 @@ export def Typeset( endif if !filereadable(fp) - EchoErr(printf('File not readable: %s', fp), label) + EchoErr($'File not readable: {fp}', label) return false endif @@ -173,7 +223,7 @@ export def Typeset( callback: (c, m) => ProcessOutput(qfid, wd, efm, c, m), close_cb: CloseCb, exit_cb: (j, e) => ExitCb(label, j, e), - }) + }) if job_status(jobid) ==# "fail" EchoErr("Failed to start job", label) @@ -188,7 +238,7 @@ export def Typeset( enddef export def JobStatus(label: string) - EchoMsg('Jobs still running: ' .. string(len(GetRunningJobs(label))), label) + EchoMsg($'Jobs still running: {len(GetRunningJobs(label))}', label) enddef export def StopJobs(label: string) @@ -211,20 +261,20 @@ enddef # true if the job is started successfully; # false otherwise. export def TypesetBuffer( - name: string, - Cmd: func(string): list, - env = {}, - label = 'Typeset' -): bool - const bufname = bufname(name) + name: string, + Cmd: func(string): list, + env = {}, + label = 'Typeset' + ): bool + var bufname = bufname(name) if empty(bufname) EchoErr('Please save the buffer first.', label) return false endif - const efm = getbufvar(bufnr(bufname), "&efm") - const rootpath = FindRootDocument(bufname) + var efm = getbufvar(bufnr(bufname), "&efm") + var rootpath = FindRootDocument(bufname) return Typeset('ConTeXt', Cmd, rootpath, efm, env) enddef diff --git a/runtime/compiler/context.vim b/runtime/compiler/context.vim index c3780d461b..82106ad75f 100644 --- a/runtime/compiler/context.vim +++ b/runtime/compiler/context.vim @@ -4,9 +4,7 @@ vim9script # Maintainer: Nicola Vitacolonna # Former Maintainers: Nikolai Weibull # Contributors: Enno Nagel -# Last Change: 2024 Mar 29 -# 2024 Apr 03 by The Vim Project (removed :CompilerSet definition) -# 2025 Mar 11 by The Vim Project (add comment for Dispatch) +# Last Change: 2026 Jan 10 if exists("g:current_compiler") finish @@ -16,7 +14,6 @@ import autoload '../autoload/context.vim' g:current_compiler = 'context' -# CompilerSet makeprg=context if get(b:, 'context_ignore_makefile', get(g:, 'context_ignore_makefile', 0)) || (!filereadable('Makefile') && !filereadable('makefile')) var makeprg = join(context.ConTeXtCmd(shellescape(expand('%:p:t'))), ' ') @@ -30,14 +27,14 @@ const context_errorformat = join([ "%-Qclose source%.%#> %f", "%-Popen source%.%#name '%f'", "%-Qclose source%.%#name '%f'", - "tex %trror%.%#error on line %l in file %f: %m", + "%E! %m", + "%Ztex %trror%.%#error on line %l in file %f", "%Elua %trror%.%#error on line %l in file %f:", "%+Emetapost %#> error: %#", "%Emetafun%.%#error: %m", - "! error: %#%m", "%-C %#", "%C! %m", - "%Z[ctxlua]%m", + "%Z%.%#[ctxlua]:%l:%m", "%+C<*> %.%#", "%-C%.%#", "%Z...%m", diff --git a/runtime/doc/ft_context.txt b/runtime/doc/ft_context.txt index fa8316457b..a7400d0b31 100644 --- a/runtime/doc/ft_context.txt +++ b/runtime/doc/ft_context.txt @@ -1,8 +1,8 @@ -*ft_context.txt* For Vim version 9.1. Last change: 2024 Jan 01 +*ft_context.txt* For Vim version 9.2. Last change: 2026 Jan 10 This is the documentation for the ConTeXt filetype plugin. -NOTE: the plugin requires +vim9script. +NOTE: the plugin requires |+vim9script|. ============================================================================== CONTENTS *context.vim* *ft-context* @@ -19,11 +19,11 @@ Introduction ~ ConTeXt, similarly to LaTeX, is a macro-based typesetting system built on TeX: > https://wiki.contextgarden.net - https://wiki.contextgarden.net/Vim + https://wiki.contextgarden.net/Input_and_compilation/Text_editors/Vim < The ConTeXt plugin provides syntax highlighting, completion and support for typesetting ConTeXt documents. The recommended way to typeset a document is to -use |:ConTeXt|. This will invoke the `mtxrun` script that is found in `$PATH`. +use |:ConTeXt|, which invokes the `mtxrun` script that is found in $PATH. For more fine grained control over the command and its environment, `context.Typeset()` can be used directly (or `context#Typeset()` from legacy @@ -32,26 +32,31 @@ Vim script). For instance, if a version of ConTeXt is installed in > import autoload 'context.vim' + var os = "linux" # Update to match your system + var arch = "arm64" # Update to match your system + def MyConTeXt() - const env = {'PATH': - printf("%s/context/tex/texmf--/bin:%s", $HOME, $PATH)} - context.Typeset("%", env) + var env = { + 'PATH': $'{$HOME}/context/tex/texmf-{os}-{arch}/bin:{$PATH}' + } + context.Typeset("%", env) enddef -This code may go in `~/.vim/after/ftplugin/context.vim`. A mapping can then be -defined to invoke the custom command: -> nnoremap t MyConTeXt() < +This code should go in `~/.vim/after/ftplugin/context.vim`. + `context.Typeset()` accepts a third optional argument to specify a custom typesetting command. That must be a function that takes a path and returns the -command as a List. For example: +command as a |list|. For example: > def ConTeXtCustomCommand(path: string): list return ['mtxrun', '--script', 'context', '--nonstopmode', path] enddef - context.ConTeXtTypeset("%", v:none, ConTeXtCustomCommand) + def MyContext() + context.Typeset("%", v:none, ConTeXtCustomCommand) + enddef < Large projects are often organized as a root document and various chapter files. When editing a chapter file, it is convenient to invoke |:ConTeXt| @@ -67,7 +72,7 @@ one in the current buffer. The root document does not have to be opened in Vim. To extend completion and syntax highlighting, you may generate supporting -files using ConTeXt and add them to your configuration. If you configuration +files using ConTeXt and add them to your configuration. If your configuration resides in `~/.vim`, you may use these commands: > mkdir -p ~/.vim/syntax/shared @@ -81,7 +86,8 @@ The last command will create the following syntax files: - `context-data-metafun.vim`; - `context-data-tex.vim`. -The same command can be used to update those syntax files. +If present, such files will be automatically loaded to enhance syntax +highlighting. The same command can be used to update those syntax files. *ft-context-commands* Commands ~ @@ -109,8 +115,9 @@ and this option is not set, standard `make` is used. If this option is set, > g:context_ignore_makefile = 0 < -NOTE: before using |:make|, set the working directory of the buffer to the -directory of the file to be typeset. +NOTE: before using |:make|, ensure that the working directory of the buffer is +set to the directory of the file you want to typeset. Additionally, be aware +that |:make| searches for `mtxrun in $PATH. *'g:context_extra_options'* A list of additional options to pass to `mtxrun`. @@ -135,11 +142,11 @@ When set, do not define any mappings. *ft-context-mappings* Mappings ~ -tp "reflow TeX paragraph". +tp "reflow TeX paragraph" (motion). -i$ "inside inline math block". +i$ "inside inline math block" (text object selection). -a$ "around inline math block". +a$ "around inline math block" (text object selection). ]] [count] start of sections forward. diff --git a/runtime/doc/ft_mp.txt b/runtime/doc/ft_mp.txt index 11ddd3b796..df00bf76b4 100644 --- a/runtime/doc/ft_mp.txt +++ b/runtime/doc/ft_mp.txt @@ -1,10 +1,10 @@ -*ft_mp.txt* For Vim version 9.1. Last change: 2022 Aug 12 +*ft_mp.txt* For Vim version 9.2. Last change: 2026 Jan 10 This is the documentation for the METAFONT and MetaPost filetype plugins. Unless otherwise specified, the commands, settings and mappings defined below apply equally to both filetypes. -NOTE: the plugin requires +vim9script. +NOTE: the plugin requires |+vim9script|. ============================================================================== CONTENTS *mp.vim* *ft-metapost* @@ -38,25 +38,25 @@ next line should not change from whatever it has been manually set. For example, this is the default indentation of a simple macro: > - def foo = - makepen( - subpath(T-n,t) of r - shifted .5down - --subpath(t,T) of r shifted .5up -- cycle - ) - withcolor black - enddef + def foo = + makepen( + subpath(T-n,t) of r + shifted .5down + --subpath(t,T) of r shifted .5up -- cycle + ) + withcolor black + enddef < By adding the special comments, the indentation can be adjusted arbitrarily: > - def foo = - makepen( - subpath(T-n,t) of r %> - shifted .5down %> - --subpath(t,T) of r shifted .5up -- cycle %<<< - ) - withcolor black - enddef + def foo = + makepen( + subpath(T-n,t) of r %> + shifted .5down %> + --subpath(t,T) of r shifted .5up -- cycle %<<< + ) + withcolor black + enddef < *ft-metapost-commands* Commands ~ diff --git a/runtime/ftplugin/context.vim b/runtime/ftplugin/context.vim index b39a306d73..79b59723a4 100644 --- a/runtime/ftplugin/context.vim +++ b/runtime/ftplugin/context.vim @@ -4,7 +4,7 @@ vim9script # Language: ConTeXt typesetting engine # Maintainer: Nicola Vitacolonna # Former Maintainers: Nikolai Weibull -# Latest Revision: 2024 Oct 04 +# Latest Revision: 2026 Jan 10 if exists("b:did_ftplugin") finish @@ -110,7 +110,7 @@ endif b:undo_ftplugin ..= "| sil! delc -buffer ConTeXt | sil! delc -buffer ConTeXtLog | sil! delc -buffer ConTeXtJobStatus | sil! delc -buffer ConTeXtStopJobs" # Commands for asynchronous typesetting command! -buffer -nargs=? -complete=buffer ConTeXt context.Typeset() -command! -buffer -nargs=0 ConTeXtLog context.Log('%') +command! -buffer -nargs=0 ConTeXtLog context.Log(bufname('%')) command! -nargs=0 ConTeXtJobStatus context.JobStatus() command! -nargs=0 ConTeXtStopJobs context.StopJobs() diff --git a/runtime/ftplugin/mf.vim b/runtime/ftplugin/mf.vim index 7e7dfa7dca..3b9cc41579 100644 --- a/runtime/ftplugin/mf.vim +++ b/runtime/ftplugin/mf.vim @@ -4,8 +4,7 @@ vim9script # Language: METAFONT # Maintainer: Nicola Vitacolonna # Former Maintainers: Nikolai Weibull -# Latest Revision: 2022 Aug 12 -# 2024 Jan 14 by Vim Project (browsefilter) +# Latest Revision: 2026 Jan 10 if exists("b:did_ftplugin") finish diff --git a/runtime/ftplugin/mp.vim b/runtime/ftplugin/mp.vim index 87ad9f8de4..06e8314465 100644 --- a/runtime/ftplugin/mp.vim +++ b/runtime/ftplugin/mp.vim @@ -4,8 +4,7 @@ vim9script # Language: MetaPost # Maintainer: Nicola Vitacolonna # Former Maintainers: Nikolai Weibull -# Latest Revision: 2022 Aug 12 -# 2024 Jan 14 by Vim Project (browsefilter) +# Latest Revision: 2026 Jan 10 if exists("b:did_ftplugin") finish diff --git a/runtime/indent/context.vim b/runtime/indent/context.vim index 9656151e74..b1dc36c32e 100644 --- a/runtime/indent/context.vim +++ b/runtime/indent/context.vim @@ -3,7 +3,7 @@ vim9script # Language: ConTeXt typesetting engine # Maintainer: Nicola Vitacolonna # Former Maintainers: Nikolai Weibull -# Latest Revision: 2023 Dec 26 +# Latest Revision: 2026 Jan 10 if exists("b:did_indent") finish @@ -39,10 +39,10 @@ def ConTeXtIndent(): number return g:MetaPostIndent() endif - const prevlnum = PrevNotComment(v:lnum - 1) - const prevind = indent(prevlnum) - const prevline = getline(prevlnum) - const currline = getline(v:lnum) + var prevlnum = PrevNotComment(v:lnum - 1) + var prevind = indent(prevlnum) + var prevline = getline(prevlnum) + var currline = getline(v:lnum) # If the current line starts with ], match indentation. if currline =~# '^\s*\]' diff --git a/runtime/indent/mf.vim b/runtime/indent/mf.vim index 893323d711..c542403eb2 100644 --- a/runtime/indent/mf.vim +++ b/runtime/indent/mf.vim @@ -1,6 +1,10 @@ -" METAFONT indent file -" Language: METAFONT -" Maintainer: Nicola Vitacolonna -" Latest Revision: 2022 Aug 12 +vim9script + +# METAFONT indent file +# Language: METAFONT +# Maintainer: Nicola Vitacolonna +# Latest Revision: 2026 Jan 10 runtime! indent/mp.vim + +# vim: sw=2 fdm=marker diff --git a/runtime/indent/mp.vim b/runtime/indent/mp.vim index 07873e13a1..50e520b008 100644 --- a/runtime/indent/mp.vim +++ b/runtime/indent/mp.vim @@ -4,7 +4,7 @@ vim9script # Language: MetaPost # Maintainer: Nicola Vitacolonna # Former Maintainers: Eugene Minkovskii -# Latest Revision: 2022 Aug 12 +# Latest Revision: 2026 Jan 10 if exists("b:did_indent") finish diff --git a/runtime/syntax/context.vim b/runtime/syntax/context.vim index c5bbbb472b..07b59c0fcb 100644 --- a/runtime/syntax/context.vim +++ b/runtime/syntax/context.vim @@ -4,7 +4,7 @@ vim9script # Language: ConTeXt typesetting engine # Maintainer: Nicola Vitacolonna # Former Maintainers: Nikolai Weibull -# Latest Revision: 2023 Dec 26 +# Latest Revision: 2026 Jan 10 if exists("b:current_syntax") finish diff --git a/runtime/syntax/mf.vim b/runtime/syntax/mf.vim index d1faa1913e..d4acbed19b 100644 --- a/runtime/syntax/mf.vim +++ b/runtime/syntax/mf.vim @@ -4,7 +4,7 @@ vim9script # Language: METAFONT # Maintainer: Nicola Vitacolonna # Former Maintainers: Andreas Scherer -# Latest Revision: 2022 Aug 12 +# Latest Revision: 2026 Jan 10 if exists("b:current_syntax") finish diff --git a/runtime/syntax/mp.vim b/runtime/syntax/mp.vim index 36c07e64c9..541ac4791d 100644 --- a/runtime/syntax/mp.vim +++ b/runtime/syntax/mp.vim @@ -4,7 +4,7 @@ vim9script # Language: MetaPost # Maintainer: Nicola Vitacolonna # Former Maintainers: Andreas Scherer -# Latest Revision: 2022 Aug 12 +# Latest Revision: 2026 Jan 10 if exists("b:current_syntax") finish diff --git a/runtime/syntax/shared/context-data-context.vim b/runtime/syntax/shared/context-data-context.vim deleted file mode 100644 index a8e124f807..0000000000 --- a/runtime/syntax/shared/context-data-context.vim +++ /dev/null @@ -1,340 +0,0 @@ -vim9script - -# Vim syntax file -# Language: ConTeXt -# Automatically generated by mtx-interface (2023-12-26 16:40) - -syn keyword contextConstants zerocount minusone minustwo plusone plustwo contained -syn keyword contextConstants plusthree plusfour plusfive plussix plusseven contained -syn keyword contextConstants pluseight plusnine plusten pluseleven plustwelve contained -syn keyword contextConstants plussixteen plusfifty plushundred plusonehundred plustwohundred contained -syn keyword contextConstants plusfivehundred plusthousand plustenthousand plustwentythousand medcard contained -syn keyword contextConstants maxcard maxcardminusone maxiterator zeropoint onepoint contained -syn keyword contextConstants halfapoint onebasepoint maxcount maxdimen scaledpoint contained -syn keyword contextConstants thousandpoint points halfpoint zeroskip centeringskip contained -syn keyword contextConstants stretchingskip shrinkingskip centeringfillskip stretchingfillskip shrinkingfillskip contained -syn keyword contextConstants zeromuskip onemuskip pluscxxvii pluscxxviii pluscclv contained -syn keyword contextConstants pluscclvi normalpagebox binaryshiftedten binaryshiftedtwenty binaryshiftedthirty contained -syn keyword contextConstants thickermuskip directionlefttoright directionrighttoleft endoflinetoken outputnewlinechar contained -syn keyword contextConstants emptytoks empty undefined prerollrun voidbox contained -syn keyword contextConstants emptybox emptyvbox emptyhbox bigskipamount medskipamount contained -syn keyword contextConstants smallskipamount fmtname fmtversion texengine texenginename contained -syn keyword contextConstants texengineversion texenginefunctionality luatexengine pdftexengine xetexengine contained -syn keyword contextConstants unknownengine contextformat contextversion contextlmtxmode contextmark contained -syn keyword contextConstants mksuffix activecatcode bgroup egroup endline contained -syn keyword contextConstants conditionaltrue conditionalfalse attributeunsetvalue statuswrite uprotationangle contained -syn keyword contextConstants rightrotationangle downrotationangle leftrotationangle inicatcodes ctxcatcodes contained -syn keyword contextConstants texcatcodes notcatcodes txtcatcodes vrbcatcodes prtcatcodes contained -syn keyword contextConstants nilcatcodes luacatcodes tpacatcodes tpbcatcodes xmlcatcodes contained -syn keyword contextConstants ctdcatcodes rlncatcodes escapecatcode begingroupcatcode endgroupcatcode contained -syn keyword contextConstants mathshiftcatcode alignmentcatcode endoflinecatcode parametercatcode superscriptcatcode contained -syn keyword contextConstants subscriptcatcode ignorecatcode spacecatcode lettercatcode othercatcode contained -syn keyword contextConstants activecatcode commentcatcode invalidcatcode tabasciicode newlineasciicode contained -syn keyword contextConstants formfeedasciicode endoflineasciicode endoffileasciicode commaasciicode spaceasciicode contained -syn keyword contextConstants periodasciicode hashasciicode dollarasciicode commentasciicode ampersandasciicode contained -syn keyword contextConstants colonasciicode semicolonasciicode backslashasciicode circumflexasciicode underscoreasciicode contained -syn keyword contextConstants leftbraceasciicode barasciicode rightbraceasciicode tildeasciicode delasciicode contained -syn keyword contextConstants leftparentasciicode rightparentasciicode lessthanasciicode morethanasciicode doublecommentsignal contained -syn keyword contextConstants atsignasciicode exclamationmarkasciicode questionmarkasciicode doublequoteasciicode singlequoteasciicode contained -syn keyword contextConstants forwardslashasciicode primeasciicode hyphenasciicode percentasciicode leftbracketasciicode contained -syn keyword contextConstants rightbracketasciicode zeroasciicode nineasciicode alowercaseasciicode zlowercaseasciicode contained -syn keyword contextConstants hsizefrozenparcode skipfrozenparcode hangfrozenparcode indentfrozenparcode parfillfrozenparcode contained -syn keyword contextConstants adjustfrozenparcode protrudefrozenparcode tolerancefrozenparcode stretchfrozenparcode loosenessfrozenparcode contained -syn keyword contextConstants lastlinefrozenparcode linepenaltyfrozenparcode clubpenaltyfrozenparcode widowpenaltyfrozenparcode displaypenaltyfrozenparcode contained -syn keyword contextConstants brokenpenaltyfrozenparcode demeritsfrozenparcode shapefrozenparcode linefrozenparcode hyphenationfrozenparcode contained -syn keyword contextConstants shapingpenaltyfrozenparcode orphanpenaltyfrozenparcode allfrozenparcode emergencyfrozenparcode parpassesfrozenparcode contained -syn keyword contextConstants singlelinepenaltyfrozenparcode activemathcharcode activetabtoken activeformfeedtoken activeendoflinetoken contained -syn keyword contextConstants batchmodecode nonstopmodecode scrollmodecode errorstopmodecode bottomlevelgroupcode contained -syn keyword contextConstants simplegroupcode hboxgroupcode adjustedhboxgroupcode vboxgroupcode vtopgroupcode contained -syn keyword contextConstants aligngroupcode noaligngroupcode outputgroupcode mathgroupcode discretionarygroupcode contained -syn keyword contextConstants insertgroupcode vadjustgroupcode vcentergroupcode mathabovegroupcode mathchoicegroupcode contained -syn keyword contextConstants alsosimplegroupcode semisimplegroupcode mathshiftgroupcode mathleftgroupcode localboxgroupcode contained -syn keyword contextConstants splitoffgroupcode splitkeepgroupcode preamblegroupcode alignsetgroupcode finrowgroupcode contained -syn keyword contextConstants discretionarygroupcode markautomigrationcode insertautomigrationcode adjustautomigrationcode preautomigrationcode contained -syn keyword contextConstants postautomigrationcode charnodecode hlistnodecode vlistnodecode rulenodecode contained -syn keyword contextConstants insertnodecode marknodecode adjustnodecode ligaturenodecode discretionarynodecode contained -syn keyword contextConstants whatsitnodecode mathnodecode gluenodecode kernnodecode penaltynodecode contained -syn keyword contextConstants unsetnodecode mathsnodecode overrulemathcontrolcode underrulemathcontrolcode radicalrulemathcontrolcode contained -syn keyword contextConstants fractionrulemathcontrolcode accentskewhalfmathcontrolcode accentskewapplymathcontrolcode applyordinarykernpairmathcontrolcode applyverticalitalickernmathcontrolcode contained -syn keyword contextConstants applyordinaryitalickernmathcontrolcode applycharitalickernmathcontrolcode reboxcharitalickernmathcontrolcode applyboxeditalickernmathcontrolcode staircasekernmathcontrolcode contained -syn keyword contextConstants applytextitalickernmathcontrolcode applyscriptitalickernmathcontrolcode checkspaceitalickernmathcontrolcode checktextitalickernmathcontrolcode analyzescriptnucleuscharmathcontrolcode contained -syn keyword contextConstants analyzescriptnucleuslistmathcontrolcode analyzescriptnucleusboxmathcontrolcode accenttopskewwithoffsetmathcontrolcode ignorekerndimensionsmathcontrolcode ignoreflataccentsmathcontrolcode contained -syn keyword contextConstants extendaccentsmathcontrolcode extenddelimitersmathcontrolcode noligaturingglyphoptioncode nokerningglyphoptioncode noexpansionglyphoptioncode contained -syn keyword contextConstants noprotrusionglyphoptioncode noleftkerningglyphoptioncode noleftligaturingglyphoptioncode norightkerningglyphoptioncode norightligaturingglyphoptioncode contained -syn keyword contextConstants noitaliccorrectionglyphoptioncode islargeoperatorglyphoptioncode hasitalicshapeglyphoptioncode normalparcontextcode vmodeparcontextcode contained -syn keyword contextConstants vboxparcontextcode vtopparcontextcode vcenterparcontextcode vadjustparcontextcode insertparcontextcode contained -syn keyword contextConstants outputparcontextcode alignparcontextcode noalignparcontextcode spanparcontextcode resetparcontextcode contained -syn keyword contextConstants leftoriginlistanchorcode leftheightlistanchorcode leftdepthlistanchorcode rightoriginlistanchorcode rightheightlistanchorcode contained -syn keyword contextConstants rightdepthlistanchorcode centeroriginlistanchorcode centerheightlistanchorcode centerdepthlistanchorcode halfwaytotallistanchorcode contained -syn keyword contextConstants halfwayheightlistanchorcode halfwaydepthlistanchorcode halfwayleftlistanchorcode halfwayrightlistanchorcode negatexlistsigncode contained -syn keyword contextConstants negateylistsigncode negatelistsigncode fontslantperpoint fontinterwordspace fontinterwordstretch contained -syn keyword contextConstants fontinterwordshrink fontexheight fontemwidth fontextraspace slantperpoint contained -syn keyword contextConstants mathexheight mathemwidth interwordspace interwordstretch interwordshrink contained -syn keyword contextConstants exheight emwidth extraspace mathaxisheight muquad contained -syn keyword contextConstants startmode stopmode startnotmode stopnotmode startmodeset contained -syn keyword contextConstants stopmodeset doifmode doifelsemode doifmodeelse doifnotmode contained -syn keyword contextConstants startmodeset stopmodeset startallmodes stopallmodes startnotallmodes contained -syn keyword contextConstants stopnotallmodes doifallmodes doifelseallmodes doifallmodeselse doifnotallmodes contained -syn keyword contextConstants startenvironment stopenvironment environment startcomponent stopcomponent contained -syn keyword contextConstants component startlocalcomponent stoplocalcomponent startproduct stopproduct contained -syn keyword contextConstants product startproject stopproject project starttext contained -syn keyword contextConstants stoptext startnotext stopnotext startdocument stopdocument contained -syn keyword contextConstants documentvariable unexpandeddocumentvariable setupdocument presetdocument doifelsedocumentvariable contained -syn keyword contextConstants doifdocumentvariableelse doifdocumentvariable doifnotdocumentvariable startmodule stopmodule contained -syn keyword contextConstants usemodule usetexmodule useluamodule setupmodule currentmoduleparameter contained -syn keyword contextConstants moduleparameter everystarttext everystoptext everyforgetall luaenvironment contained -syn keyword contextConstants startTEXpage stopTEXpage enablemode disablemode preventmode contained -syn keyword contextConstants definemode globalenablemode globaldisablemode globalpreventmode pushmode contained -syn keyword contextConstants popmode typescriptone typescripttwo typescriptthree mathsizesuffix contained -syn keyword contextConstants mathordinarycode mathordcode mathoperatorcode mathopcode mathbinarycode contained -syn keyword contextConstants mathbincode mathrelationcode mathrelcode mathopencode mathclosecode contained -syn keyword contextConstants mathpunctuationcode mathpunctcode mathovercode mathundercode mathinnercode contained -syn keyword contextConstants mathradicalcode mathfractioncode mathmiddlecode mathaccentcode mathfencedcode contained -syn keyword contextConstants mathghostcode mathvariablecode mathactivecode mathvcentercode mathconstructcode contained -syn keyword contextConstants mathwrappedcode mathbegincode mathendcode mathexplicitcode mathdivisioncode contained -syn keyword contextConstants mathfactorialcode mathdimensioncode mathexperimentalcode mathtextpunctuationcode mathimaginarycode contained -syn keyword contextConstants mathdifferentialcode mathexponentialcode mathellipsiscode mathfunctioncode mathdigitcode contained -syn keyword contextConstants mathalphacode mathboxcode mathchoicecode mathnothingcode mathlimopcode contained -syn keyword contextConstants mathnolopcode mathunsetcode mathunspacedcode mathallcode mathfakecode contained -syn keyword contextConstants mathunarycode mathmaybeordinarycode mathmayberelationcode mathmaybebinarycode mathnumbergroupcode contained -syn keyword contextConstants mathchemicalbondcode constantnumber constantnumberargument constantdimen constantdimenargument contained -syn keyword contextConstants constantemptyargument luastringsep !!bs !!es lefttorightmark contained -syn keyword contextConstants righttoleftmark lrm rlm bidilre bidirle contained -syn keyword contextConstants bidipop bidilro bidirlo breakablethinspace nobreakspace contained -syn keyword contextConstants nonbreakablespace narrownobreakspace zerowidthnobreakspace ideographicspace ideographichalffillspace contained -syn keyword contextConstants twoperemspace threeperemspace fourperemspace fiveperemspace sixperemspace contained -syn keyword contextConstants figurespace punctuationspace hairspace enquad emquad contained -syn keyword contextConstants zerowidthspace zerowidthnonjoiner zerowidthjoiner zwnj zwj contained -syn keyword contextConstants optionalspace asciispacechar softhyphen autoinsertedspace Ux contained -syn keyword contextConstants eUx startlmtxmode stoplmtxmode startmkivmode stopmkivmode contained -syn keyword contextConstants wildcardsymbol normalhyphenationcode automatichyphenationcode explicithyphenationcode syllablehyphenationcode contained -syn keyword contextConstants uppercasehyphenationcode collapsehyphenationcode compoundhyphenationcode strictstarthyphenationcode strictendhyphenationcode contained -syn keyword contextConstants automaticpenaltyhyphenationcode explicitpenaltyhyphenationcode permitgluehyphenationcode permitallhyphenationcode permitmathreplacehyphenationcode contained -syn keyword contextConstants forcecheckhyphenationcode lazyligatureshyphenationcode forcehandlerhyphenationcode feedbackcompoundhyphenationcode ignoreboundshyphenationcode contained -syn keyword contextConstants partialhyphenationcode completehyphenationcode normalizelinenormalizecode parindentskipnormalizecode swaphangindentnormalizecode contained -syn keyword contextConstants swapparsshapenormalizecode breakafterdirnormalizecode removemarginkernsnormalizecode clipwidthnormalizecode flattendiscretionariesnormalizecode contained -syn keyword contextConstants discardzerotabskipsnormalizecode flattenhleadersnormalizecode normalizeparnormalizeparcode flattenvleadersnormalizeparcode limitprevgrafnormalizeparcode contained -syn keyword contextConstants nopreslackclassoptioncode nopostslackclassoptioncode lefttopkernclassoptioncode righttopkernclassoptioncode leftbottomkernclassoptioncode contained -syn keyword contextConstants rightbottomkernclassoptioncode lookaheadforendclassoptioncode noitaliccorrectionclassoptioncode defaultmathclassoptions checkligatureclassoptioncode 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 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 immutableflagcode mutableflagcode globalflagcode overloadedflagcode immediateflagcode contained -syn keyword contextConstants conditionalflagcode valueflagcode instanceflagcode ordmathflattencode binmathflattencode contained -syn keyword contextConstants relmathflattencode punctmathflattencode innermathflattencode normalworddiscoptioncode preworddiscoptioncode 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 stopluasetups starttexsetups stoptexsetups startrawsetups stoprawsetups contained -syn keyword contextHelpers startlocalsetups stoplocalsetups starttexdefinition stoptexdefinition starttexcode contained -syn keyword contextHelpers stoptexcode startcontextcode stopcontextcode startcontextdefinitioncode stopcontextdefinitioncode contained -syn keyword contextHelpers texdefinition doifelsesetups doifsetupselse doifsetups doifnotsetups contained -syn keyword contextHelpers setup setups texsetup xmlsetup luasetup contained -syn keyword contextHelpers directsetup fastsetup copysetups resetsetups doifelsecommandhandler contained -syn keyword contextHelpers doifcommandhandlerelse doifnotcommandhandler doifcommandhandler newmode setmode contained -syn keyword contextHelpers resetmode newsystemmode setsystemmode resetsystemmode pushsystemmode contained -syn keyword contextHelpers popsystemmode globalsetmode globalresetmode globalsetsystemmode globalresetsystemmode contained -syn keyword contextHelpers booleanmodevalue newcount newdimen newskip newmuskip contained -syn keyword contextHelpers newbox newtoks newread newwrite newmarks contained -syn keyword contextHelpers newinsert newattribute newif newfloat newlanguage contained -syn keyword contextHelpers newfamily newfam newhelp newuserunit newinteger contained -syn keyword contextHelpers newdimension newgluespec newmugluespec newposit aliasinteger contained -syn keyword contextHelpers aliasdimension aliasposit then begcsname autorule contained -syn keyword contextHelpers tobits tohexa strippedcsname checkedstrippedcsname nofarguments contained -syn keyword contextHelpers firstargumentfalse firstargumenttrue secondargumentfalse secondargumenttrue thirdargumentfalse contained -syn keyword contextHelpers thirdargumenttrue fourthargumentfalse fourthargumenttrue fifthargumentfalse fifthargumenttrue contained -syn keyword contextHelpers sixthargumentfalse sixthargumenttrue seventhargumentfalse seventhargumenttrue doglobal contained -syn keyword contextHelpers dodoglobal redoglobal resetglobal donothing untraceddonothing contained -syn keyword contextHelpers dontcomplain moreboxtracing lessboxtracing noboxtracing forgetall contained -syn keyword contextHelpers donetrue donefalse foundtrue foundfalse inlineordisplaymath contained -syn keyword contextHelpers indisplaymath forcedisplaymath startforceddisplaymath stopforceddisplaymath startpickupmath contained -syn keyword contextHelpers stoppickupmath reqno forceinlinemath mathortext thebox contained -syn keyword contextHelpers htdp unvoidbox hfilll vfilll mathbox contained -syn keyword contextHelpers mathlimop mathnolop mathnothing mathalpha currentcatcodetable contained -syn keyword contextHelpers defaultcatcodetable catcodetablename newcatcodetable startcatcodetable stopcatcodetable contained -syn keyword contextHelpers startextendcatcodetable stopextendcatcodetable pushcatcodetable popcatcodetable restorecatcodes contained -syn keyword contextHelpers setcatcodetable letcatcodecommand defcatcodecommand uedcatcodecommand hglue contained -syn keyword contextHelpers vglue hfillneg vfillneg hfilllneg vfilllneg contained -syn keyword contextHelpers hsplit ruledhss ruledhfil ruledhfill ruledhfilll contained -syn keyword contextHelpers ruledhfilneg ruledhfillneg normalhfillneg normalhfilllneg ruledvss contained -syn keyword contextHelpers ruledvfil ruledvfill ruledvfilll ruledvfilneg ruledvfillneg contained -syn keyword contextHelpers normalvfillneg normalvfilllneg ruledhbox ruledvbox ruledvtop contained -syn keyword contextHelpers ruleddbox ruledvcenter ruledmbox ruledhpack ruledvpack contained -syn keyword contextHelpers ruledtpack ruleddpack ruledvsplit ruledtsplit ruleddsplit contained -syn keyword contextHelpers ruledhskip ruledvskip ruledkern ruledmskip ruledmkern contained -syn keyword contextHelpers ruledhglue ruledvglue normalhglue normalvglue ruledpenalty contained -syn keyword contextHelpers filledhboxb filledhboxr filledhboxg filledhboxc filledhboxm contained -syn keyword contextHelpers filledhboxy filledhboxk scratchstring scratchstringone scratchstringtwo contained -syn keyword contextHelpers tempstring scratchcounter globalscratchcounter privatescratchcounter scratchfloat contained -syn keyword contextHelpers globalscratchfloat privatescratchfloat scratchdimen globalscratchdimen privatescratchdimen contained -syn keyword contextHelpers scratchskip globalscratchskip privatescratchskip scratchmuskip globalscratchmuskip contained -syn keyword contextHelpers privatescratchmuskip scratchtoks globalscratchtoks privatescratchtoks scratchbox contained -syn keyword contextHelpers globalscratchbox privatescratchbox scratchmacro scratchmacroone scratchmacrotwo contained -syn keyword contextHelpers scratchconditiontrue scratchconditionfalse ifscratchcondition scratchconditiononetrue scratchconditiononefalse contained -syn keyword contextHelpers ifscratchconditionone scratchconditiontwotrue scratchconditiontwofalse ifscratchconditiontwo globalscratchcounterone contained -syn keyword contextHelpers globalscratchcountertwo globalscratchcounterthree groupedcommand groupedcommandcs triggergroupedcommand contained -syn keyword contextHelpers triggergroupedcommandcs simplegroupedcommand simplegroupedcommandcs pickupgroupedcommand pickupgroupedcommandcs contained -syn keyword contextHelpers mathgroupedcommandcs usedbaselineskip usedlineskip usedlineskiplimit availablehsize contained -syn keyword contextHelpers localhsize setlocalhsize distributedhsize hsizefraction next contained -syn keyword contextHelpers nexttoken nextbox dowithnextbox dowithnextboxcs dowithnextboxcontent contained -syn keyword contextHelpers dowithnextboxcontentcs flushnextbox boxisempty boxtostring contentostring contained -syn keyword contextHelpers prerolltostring givenwidth givenheight givendepth scangivendimensions contained -syn keyword contextHelpers scratchwidth scratchheight scratchdepth scratchoffset scratchdistance contained -syn keyword contextHelpers scratchtotal scratchitalic scratchhsize scratchvsize scratchxoffset contained -syn keyword contextHelpers scratchyoffset scratchhoffset scratchvoffset scratchxposition scratchyposition contained -syn keyword contextHelpers scratchtopoffset scratchbottomoffset scratchleftoffset scratchrightoffset scratchcounterone contained -syn keyword contextHelpers scratchcountertwo scratchcounterthree scratchcounterfour scratchcounterfive scratchcountersix contained -syn keyword contextHelpers scratchfloatone scratchfloattwo scratchfloatthree scratchfloatfour scratchfloatfive contained -syn keyword contextHelpers scratchfloatsix scratchdimenone scratchdimentwo scratchdimenthree scratchdimenfour contained -syn keyword contextHelpers scratchdimenfive scratchdimensix scratchskipone scratchskiptwo scratchskipthree 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 doifnot doifelse firstinset doifinset doifnotinset contained -syn keyword contextHelpers doifelseinset doifinsetelse doifelsenextchar doifnextcharelse doifelsenextcharcs contained -syn keyword contextHelpers doifnextcharcselse doifelsenextoptional doifnextoptionalelse doifelsenextoptionalcs doifnextoptionalcselse contained -syn keyword contextHelpers doifelsefastoptionalcheck doiffastoptionalcheckelse doifelsefastoptionalcheckcs doiffastoptionalcheckcselse doifelsenextbgroup contained -syn keyword contextHelpers doifnextbgroupelse doifelsenextbgroupcs doifnextbgroupcselse doifelsenextparenthesis doifnextparenthesiselse contained -syn keyword contextHelpers doifelseundefined doifundefinedelse doifelsedefined doifdefinedelse doifundefined contained -syn keyword contextHelpers doifdefined doifelsevalue doifvalue doifnotvalue doifnothing contained -syn keyword contextHelpers doifsomething doifelsenothing doifnothingelse doifelsesomething doifsomethingelse contained -syn keyword contextHelpers doifvaluenothing doifvaluesomething doifelsevaluenothing doifvaluenothingelse doifelsedimension contained -syn keyword contextHelpers doifdimensionelse doifelsenumber doifnumberelse doifnumber doifnotnumber contained -syn keyword contextHelpers doifelsecommon doifcommonelse doifcommon doifnotcommon doifinstring contained -syn keyword contextHelpers doifnotinstring doifelseinstring doifinstringelse doifelseassignment doifassignmentelse contained -syn keyword contextHelpers docheckassignment doifelseassignmentcs doifassignmentelsecs validassignment novalidassignment contained -syn keyword contextHelpers doiftext doifelsetext doiftextelse doifnottext validtext contained -syn keyword contextHelpers quitcondition truecondition falsecondition tracingall tracingnone contained -syn keyword contextHelpers loggingall tracingcatcodes showluatokens aliasmacro removetoks contained -syn keyword contextHelpers appendtoks prependtoks appendtotoks prependtotoks to contained -syn keyword contextHelpers endgraf endpar reseteverypar finishpar empty contained -syn keyword contextHelpers null space quad enspace emspace contained -syn keyword contextHelpers charspace nbsp crlf obeyspaces obeylines contained -syn keyword contextHelpers obeytabs obeypages obeyedspace obeyedline obeyedtab contained -syn keyword contextHelpers obeyedpage normalspace naturalspace controlspace normalspaces contained -syn keyword contextHelpers ignoretabs ignorelines ignorepages ignoreeofs setcontrolspaces contained -syn keyword contextHelpers executeifdefined singleexpandafter doubleexpandafter tripleexpandafter dontleavehmode contained -syn keyword contextHelpers removelastspace removeunwantedspaces keepunwantedspaces removepunctuation ignoreparskip contained -syn keyword contextHelpers forcestrutdepth onlynonbreakablespace wait writestatus define contained -syn keyword contextHelpers defineexpandable redefine setmeasure setemeasure setgmeasure contained -syn keyword contextHelpers setxmeasure definemeasure freezemeasure measure measured contained -syn keyword contextHelpers directmeasure setquantity setequantity setgquantity setxquantity contained -syn keyword contextHelpers definequantity freezequantity quantity quantitied directquantity contained -syn keyword contextHelpers installcorenamespace getvalue getuvalue setvalue setevalue contained -syn keyword contextHelpers setgvalue setxvalue letvalue letgvalue resetvalue contained -syn keyword contextHelpers undefinevalue ignorevalue setuvalue setuevalue setugvalue contained -syn keyword contextHelpers setuxvalue globallet udef ugdef uedef contained -syn keyword contextHelpers uxdef checked unique getparameters geteparameters contained -syn keyword contextHelpers getgparameters getxparameters forgetparameters copyparameters getdummyparameters contained -syn keyword contextHelpers dummyparameter directdummyparameter setdummyparameter letdummyparameter setexpandeddummyparameter contained -syn keyword contextHelpers resetdummyparameter usedummystyleandcolor usedummystyleparameter usedummycolorparameter processcommalist contained -syn keyword contextHelpers processcommacommand quitcommalist quitprevcommalist processaction processallactions contained -syn keyword contextHelpers processfirstactioninset processallactionsinset unexpanded expanded startexpanded contained -syn keyword contextHelpers stopexpanded protect unprotect firstofoneargument firstoftwoarguments contained -syn keyword contextHelpers secondoftwoarguments firstofthreearguments secondofthreearguments thirdofthreearguments firstoffourarguments contained -syn keyword contextHelpers secondoffourarguments thirdoffourarguments fourthoffourarguments firstoffivearguments secondoffivearguments contained -syn keyword contextHelpers thirdoffivearguments fourthoffivearguments fifthoffivearguments firstofsixarguments secondofsixarguments contained -syn keyword contextHelpers thirdofsixarguments fourthofsixarguments fifthofsixarguments sixthofsixarguments firstofoneunexpanded contained -syn keyword contextHelpers firstoftwounexpanded secondoftwounexpanded firstofthreeunexpanded secondofthreeunexpanded thirdofthreeunexpanded contained -syn keyword contextHelpers gobbleoneargument gobbletwoarguments gobblethreearguments gobblefourarguments gobblefivearguments contained -syn keyword contextHelpers gobblesixarguments gobblesevenarguments gobbleeightarguments gobbleninearguments gobbletenarguments contained -syn keyword contextHelpers gobbleoneoptional gobbletwooptionals gobblethreeoptionals gobblefouroptionals gobblefiveoptionals contained -syn keyword contextHelpers dorecurse doloop exitloop dostepwiserecurse recurselevel contained -syn keyword contextHelpers recursedepth dofastloopcs fastloopindex fastloopfinal dowith contained -syn keyword contextHelpers doloopovermatch doloopovermatched doloopoverlist newconstant setnewconstant contained -syn keyword contextHelpers setconstant setconstantvalue newconditional settrue setfalse contained -syn keyword contextHelpers settruevalue setfalsevalue setconditional newmacro setnewmacro contained -syn keyword contextHelpers newfraction newsignal newboundary dosingleempty dodoubleempty contained -syn keyword contextHelpers dotripleempty doquadrupleempty doquintupleempty dosixtupleempty doseventupleempty contained -syn keyword contextHelpers dosingleargument dodoubleargument dotripleargument doquadrupleargument doquintupleargument contained -syn keyword contextHelpers dosixtupleargument doseventupleargument dosinglegroupempty dodoublegroupempty dotriplegroupempty contained -syn keyword contextHelpers doquadruplegroupempty doquintuplegroupempty permitspacesbetweengroups dontpermitspacesbetweengroups nopdfcompression contained -syn keyword contextHelpers maximumpdfcompression normalpdfcompression onlypdfobjectcompression nopdfobjectcompression modulonumber contained -syn keyword contextHelpers dividenumber getfirstcharacter doifelsefirstchar doiffirstcharelse mathclassvalue contained -syn keyword contextHelpers startnointerference stopnointerference twodigits threedigits leftorright contained -syn keyword contextHelpers offinterlineskip oninterlineskip nointerlineskip strut halfstrut contained -syn keyword contextHelpers quarterstrut depthstrut halflinestrut noheightstrut setstrut contained -syn keyword contextHelpers strutbox strutht strutdp strutwd struthtdp 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 hpackbox vpackedbox hpackedbox normalreqno startimath contained -syn keyword contextHelpers stopimath normalstartimath normalstopimath startdmath stopdmath contained -syn keyword contextHelpers normalstartdmath normalstopdmath normalsuperscript normalsubscript normalnosuperscript contained -syn keyword contextHelpers normalnosubscript normalprimescript superscript subscript nosuperscript contained -syn keyword contextHelpers nosubscript primescript superprescript subprescript nosuperprescript contained -syn keyword contextHelpers nosubsprecript uncramped cramped mathstyletrigger triggermathstyle contained -syn keyword contextHelpers triggeredmathstyle mathstylefont mathsmallstylefont mathstyleface mathsmallstyleface contained -syn keyword contextHelpers mathstylecommand mathpalette mathstylehbox mathstylevbox mathstylevcenter contained -syn keyword contextHelpers mathstylevcenteredhbox mathstylevcenteredvbox mathtext setmathsmalltextbox setmathtextbox contained -syn keyword contextHelpers pushmathstyle popmathstyle triggerdisplaystyle triggertextstyle triggerscriptstyle contained -syn keyword contextHelpers triggerscriptscriptstyle triggeruncrampedstyle triggercrampedstyle triggersmallstyle triggeruncrampedsmallstyle contained -syn keyword contextHelpers triggercrampedsmallstyle triggerbigstyle triggeruncrampedbigstyle triggercrampedbigstyle luaexpr contained -syn keyword contextHelpers expelsedoif expdoif expdoifnot expdoifelsecommon expdoifcommonelse contained -syn keyword contextHelpers expdoifelseinset expdoifinsetelse glyphscaled ctxdirectlua ctxlatelua contained -syn keyword contextHelpers ctxsprint ctxwrite ctxcommand ctxdirectcommand ctxlatecommand contained -syn keyword contextHelpers ctxreport ctxlua luacode lateluacode directluacode contained -syn keyword contextHelpers registerctxluafile ctxloadluafile luaversion luamajorversion luaminorversion contained -syn keyword contextHelpers ctxluacode luaconditional luaexpanded ctxluamatch ctxluamatchfile contained -syn keyword contextHelpers startluaparameterset stopluaparameterset luaparameterset definenamedlua obeylualines contained -syn keyword contextHelpers obeyluatokens startluacode stopluacode startlua stoplua contained -syn keyword contextHelpers startctxfunction stopctxfunction ctxfunction startctxfunctiondefinition stopctxfunctiondefinition contained -syn keyword contextHelpers installctxfunction installprotectedctxfunction installprotectedctxscanner installctxscanner resetctxscanner contained -syn keyword contextHelpers cldprocessfile cldloadfile cldloadviafile cldcontext cldcommand contained -syn keyword contextHelpers carryoverpar freezeparagraphproperties defrostparagraphproperties setparagraphfreezing forgetparagraphfreezing contained -syn keyword contextHelpers updateparagraphproperties updateparagraphpenalties updateparagraphdemerits updateparagraphshapes updateparagraphlines contained -syn keyword contextHelpers updateparagraphpasses lastlinewidth assumelongusagecs righttolefthbox lefttorighthbox contained -syn keyword contextHelpers righttoleftvbox lefttorightvbox righttoleftvtop lefttorightvtop rtlhbox contained -syn keyword contextHelpers ltrhbox rtlvbox ltrvbox rtlvtop ltrvtop contained -syn keyword contextHelpers autodirhbox autodirvbox autodirvtop leftorrighthbox leftorrightvbox contained -syn keyword contextHelpers leftorrightvtop lefttoright righttoleft checkedlefttoright checkedrighttoleft contained -syn keyword contextHelpers synchronizelayoutdirection synchronizedisplaydirection synchronizeinlinedirection dirlre dirrle contained -syn keyword contextHelpers dirlro dirrlo rtltext ltrtext lesshyphens contained -syn keyword contextHelpers morehyphens nohyphens dohyphens dohyphencollapsing nohyphencollapsing contained -syn keyword contextHelpers compounddiscretionary Ucheckedstartdisplaymath Ucheckedstopdisplaymath break nobreak contained -syn keyword contextHelpers allowbreak goodbreak nospace nospacing dospacing contained -syn keyword contextHelpers naturalhbox naturalvbox naturalvtop naturalhpack naturalvpack contained -syn keyword contextHelpers naturaltpack reversehbox reversevbox reversevtop reversehpack contained -syn keyword contextHelpers reversevpack reversetpack hcontainer vcontainer tcontainer contained -syn keyword contextHelpers frule compoundhyphenpenalty start stop unsupportedcs contained -syn keyword contextHelpers openout closeout write openin closein contained -syn keyword contextHelpers read readline readlinedirect readfromterminal boxlines contained -syn keyword contextHelpers boxline setboxline copyboxline boxlinewd boxlineht contained -syn keyword contextHelpers boxlinedp boxlinenw boxlinenh boxlinend boxlinels contained -syn keyword contextHelpers boxliners boxlinelh boxlinerh boxlinelp boxlinerp contained -syn keyword contextHelpers boxlinein boxrangewd boxrangeht boxrangedp bitwiseset contained -syn keyword contextHelpers bitwiseand bitwiseor bitwisexor bitwisenot bitwisenil contained -syn keyword contextHelpers ifbitwiseand bitwise bitwiseshift bitwiseflip textdir contained -syn keyword contextHelpers linedir pardir boxdir prelistbox postlistbox contained -syn keyword contextHelpers prelistcopy postlistcopy setprelistbox setpostlistbox noligaturing contained -syn keyword contextHelpers nokerning noexpansion noprotrusion noleftkerning noleftligaturing contained -syn keyword contextHelpers norightkerning norightligaturing noitaliccorrection futureletnexttoken defbackslashbreak contained -syn keyword contextHelpers letbackslashbreak pushoverloadmode popoverloadmode pushrunstate poprunstate contained -syn keyword contextHelpers suggestedalias showboxhere discoptioncodestring flagcodestring frozenparcodestring contained -syn keyword contextHelpers glyphoptioncodestring groupcodestring hyphenationcodestring mathcontrolcodestring mathflattencodestring contained -syn keyword contextHelpers normalizecodestring parcontextcodestring newlocalcount newlocaldimen newlocalskip contained -syn keyword contextHelpers newlocalmuskip newlocaltoks newlocalbox newlocalwrite newlocalread contained -syn keyword contextHelpers setnewlocalcount setnewlocaldimen setnewlocalskip setnewlocalmuskip setnewlocaltoks contained -syn keyword contextHelpers setnewlocalbox ifexpression localcontrolledrepeating expandedrepeating unexpandedrepeating contained -syn keyword contextHelpers lastchkinteger ifchkinteger mathordinary mathoperator mathbinary contained -syn keyword contextHelpers mathrelation mathpunctuation mathfraction mathradical mathmiddle contained -syn keyword contextHelpers mathaccent mathfenced mathghost mathvariable mathactive contained -syn keyword contextHelpers mathvcenter mathimaginary mathdifferential mathexponential mathdigit contained -syn keyword contextHelpers mathdivision mathfactorial mathwrapped mathconstruct mathdimension contained -syn keyword contextHelpers mathunary mathchemicalbond filebasename filenameonly filedirname contained -syn keyword contextHelpers filesuffix setmathoption resetmathoption contained diff --git a/runtime/syntax/shared/context-data-interfaces.vim b/runtime/syntax/shared/context-data-interfaces.vim deleted file mode 100644 index 36ef059beb..0000000000 --- a/runtime/syntax/shared/context-data-interfaces.vim +++ /dev/null @@ -1,1185 +0,0 @@ -vim9script - -# Vim syntax file -# Language: ConTeXt -# Automatically generated by mtx-interface (2023-12-26 16:40) - -syn keyword contextCommon AEacute AEligature AEmacron AMSTEX Aacute contained -syn keyword contextCommon Abreve Abreveacute Abrevedotbelow Abrevegrave Abrevehook contained -syn keyword contextCommon Abrevetilde Acaron Acircumflex Acircumflexacute Acircumflexdotbelow contained -syn keyword contextCommon Acircumflexgrave Acircumflexhook Acircumflextilde Adiaeresis Adiaeresismacron contained -syn keyword contextCommon Adotaccent Adotaccentmacron Adotbelow Adoublegrave AfterPar contained -syn keyword contextCommon Agrave Ahook Ainvertedbreve Alpha Alphabeticnumerals contained -syn keyword contextCommon AmSTeX Amacron And Angstrom Aogonek contained -syn keyword contextCommon Aring Aringacute Arrowvert Astroke Atilde contained -syn keyword contextCommon BeforePar Beta Bhook Big Bigg contained -syn keyword contextCommon Biggl Biggm Biggr Bigl Bigm contained -syn keyword contextCommon Bigr Box Bumpeq CONTEXT Cacute contained -syn keyword contextCommon Cap Caps Ccaron Ccedilla Ccircumflex contained -syn keyword contextCommon Cdotaccent Character Characters Chi Chook contained -syn keyword contextCommon ConTeXt Context ConvertConstantAfter ConvertToConstant Cstroke contained -syn keyword contextCommon Cup DAYLONG DAYSHORT DZcaronligature DZligature contained -syn keyword contextCommon Dafrican Dcaron Dd Ddownarrow Delta contained -syn keyword contextCommon Dhook Doteq Downarrow Dstroke Dzcaronligature contained -syn keyword contextCommon Dzligature ETEX Eacute Ebreve Ecaron contained -syn keyword contextCommon Ecedilla Ecircumflex Ecircumflexacute Ecircumflexdotbelow Ecircumflexgrave contained -syn keyword contextCommon Ecircumflexhook Ecircumflextilde Ediaeresis Edotaccent Edotbelow contained -syn keyword contextCommon Edoublegrave Egrave Ehook Einvertedbreve Emacron contained -syn keyword contextCommon Eogonek Epsilon Eta Eth Etilde contained -syn keyword contextCommon Eulerconst EveryLine EveryPar Fhook Finv contained -syn keyword contextCommon Gacute Game Gamma Gbreve Gcaron contained -syn keyword contextCommon Gcircumflex Gcommaaccent Gdotaccent GetPar Ghook contained -syn keyword contextCommon GotoPar Greeknumerals Gstroke Hcaron Hcircumflex contained -syn keyword contextCommon Hstroke IJligature INRSTEX Iacute Ibreve contained -syn keyword contextCommon Icaron Icircumflex Idiaeresis Idotaccent Idotbelow contained -syn keyword contextCommon Idoublegrave Igrave Ihook Iinvertedbreve Im contained -syn keyword contextCommon Imacron Iogonek Iota Istroke Itilde contained -syn keyword contextCommon JScode JSpreamble Jcircumflex Join Kappa contained -syn keyword contextCommon Kcaron Kcommaaccent Khook LAMSTEX LATEX contained -syn keyword contextCommon LJligature LUA LUAJITTEX LUAMETATEX LUATEX contained -syn keyword contextCommon LaTeX Lacute LamSTeX Lambda Lbar contained -syn keyword contextCommon Lcaron Lcommaaccent Ldotmiddle Ldsh Leftarrow contained -syn keyword contextCommon Leftrightarrow Ljligature Lleftarrow Longleftarrow Longleftrightarrow contained -syn keyword contextCommon Longmapsfrom Longmapsto Longrightarrow Lsh Lstroke contained -syn keyword contextCommon Lua LuaMetaTeX LuaTeX LuajitTeX METAFONT contained -syn keyword contextCommon METAFUN METAPOST MKII MKIV MKIX contained -syn keyword contextCommon MKLX MKVI MKXI MKXL MONTH contained -syn keyword contextCommon MONTHLONG MONTHSHORT MP MPII MPIV contained -syn keyword contextCommon MPLX MPVI MPXL MPanchor MPbetex contained -syn keyword contextCommon MPc MPclip MPcode MPcolor MPcoloronly contained -syn keyword contextCommon MPcolumn MPd MPdefinitions MPdrawing MPenvironment contained -syn keyword contextCommon MPextensions MPfontsizehskip MPgetmultipars MPgetmultishape MPgetposboxes contained -syn keyword contextCommon MPh MPinclusions MPinitializations MPleftskip MPll contained -syn keyword contextCommon MPlr MPls MPmenubuttons MPn MPoptions contained -syn keyword contextCommon MPoverlayanchor MPp MPpage MPpardata MPplus contained -syn keyword contextCommon MPpos MPpositiongraphic MPpositionmethod MPposset MPr contained -syn keyword contextCommon MPrawvar MPregion MPrest MPrightskip MPrs contained -syn keyword contextCommon MPrun MPstring MPtext MPtransparency MPul contained -syn keyword contextCommon MPur MPv MPvar MPvariable MPvv contained -syn keyword contextCommon MPw MPwhd MPx MPxy MPxywhd contained -syn keyword contextCommon MPy Mapsfrom Mapsto MetaFont MetaFun contained -syn keyword contextCommon MetaPost Mu NJligature Nacute Ncaron contained -syn keyword contextCommon Ncommaaccent Nearrow Neng Ngrave Njligature contained -syn keyword contextCommon NormalizeFontHeight NormalizeFontWidth NormalizeTextHeight NormalizeTextWidth Ntilde contained -syn keyword contextCommon Nu Numbers Nwarrow OEligature Oacute contained -syn keyword contextCommon Obreve Ocaron Ocircumflex Ocircumflexacute Ocircumflexdotbelow contained -syn keyword contextCommon Ocircumflexgrave Ocircumflexhook Ocircumflextilde Odiaeresis Odiaeresismacron contained -syn keyword contextCommon Odotaccent Odotaccentmacron Odotbelow Odoublegrave Ograve contained -syn keyword contextCommon Ohook Ohorn Ohornacute Ohorndotbelow Ohorngrave contained -syn keyword contextCommon Ohornhook Ohorntilde Ohungarumlaut Oinvertedbreve Omacron contained -syn keyword contextCommon Omega Omicron Oogonek Oogonekmacron Ostroke contained -syn keyword contextCommon Ostrokeacute Otilde Otildemacron P PARSEDXML contained -syn keyword contextCommon PDFETEX PDFTEX PDFcolor PICTEX PPCHTEX contained -syn keyword contextCommon PPCHTeX PRAGMA Phi Phook Pi contained -syn keyword contextCommon PiCTeX Plankconst PointsToBigPoints PointsToReal PointsToWholeBigPoints contained -syn keyword contextCommon PropertyLine Psi PtToCm Racute Rcaron contained -syn keyword contextCommon Rcommaaccent Rdoublegrave Rdsh Re ReadFile contained -syn keyword contextCommon Relbar Rho Rightarrow Rinvertedbreve Romannumerals contained -syn keyword contextCommon Rrightarrow Rsh S Sacute ScaledPointsToBigPoints contained -syn keyword contextCommon ScaledPointsToWholeBigPoints Scaron Scedilla Schwa Scircumflex contained -syn keyword contextCommon Scommaaccent Searrow Sigma Smallcapped Subset contained -syn keyword contextCommon Supset Swarrow TABLE TABLEbody TABLEfoot contained -syn keyword contextCommon TABLEhead TABLEnested TABLEnext TC TD contained -syn keyword contextCommon TDs TEX TEXpage TH TN contained -syn keyword contextCommon TR TRs TX TY TaBlE contained -syn keyword contextCommon Tau Tcaron Tcedilla Tcommaaccent TeX contained -syn keyword contextCommon TheNormalizedFontSize Theta Thook Thorn TransparencyHack contained -syn keyword contextCommon Tstroke Uacute Ubreve Ucaron Ucircumflex contained -syn keyword contextCommon Udiaeresis Udiaeresisacute Udiaeresiscaron Udiaeresisgrave Udiaeresismacron contained -syn keyword contextCommon Udotbelow Udoublegrave Ugrave Uhook Uhorn contained -syn keyword contextCommon Uhornacute Uhorndotbelow Uhorngrave Uhornhook Uhorntilde contained -syn keyword contextCommon Uhungarumlaut Uinvertedbreve Umacron Uogonek Uparrow contained -syn keyword contextCommon Updownarrow Upsilon Uring Utilde Uuparrow contained -syn keyword contextCommon VDash Vdash VerboseNumber Vert Vhook contained -syn keyword contextCommon Vvdash WEEKDAY WORD WORDS Wcircumflex contained -syn keyword contextCommon WidthSpanningText Word Words XETEX XML contained -syn keyword contextCommon XeTeX Xi Yacute Ycircumflex Ydiaeresis contained -syn keyword contextCommon Ydotbelow Ygrave Yhook Ymacron Ytilde contained -syn keyword contextCommon Zacute Zcaron Zdotaccent Zeta Zhook contained -syn keyword contextCommon Zstroke aacute abbreviation abjadnaivenumerals abjadnodotnumerals contained -syn keyword contextCommon abjadnumerals about abreve abreveacute abrevedotbelow contained -syn keyword contextCommon abrevegrave abrevehook abrevetilde acaron acircumflex contained -syn keyword contextCommon acircumflexacute acircumflexdotbelow acircumflexgrave acircumflexhook acircumflextilde contained -syn keyword contextCommon activatespacehandler actualday actualmonth actualyear actuarial contained -syn keyword contextCommon acute acwopencirclearrow adaptcollector adaptfontfeature adaptlayout contained -syn keyword contextCommon adaptpapersize addfeature addtoJSpreamble addtocommalist addvalue contained -syn keyword contextCommon adiaeresis adiaeresismacron adotaccent adotaccentmacron adotbelow contained -syn keyword contextCommon adoublegrave aeacute aeligature aemacron afghanicurrency contained -syn keyword contextCommon aftersplitstring aftertestandsplitstring agrave ahook ainvertedbreve contained -syn keyword contextCommon aleph align alignbottom aligned alignedbox contained -syn keyword contextCommon alignedline alignhere alignment alignmentcharacter allinputpaths contained -syn keyword contextCommon allmodes alpha alphabeticnumerals alwayscitation alwayscite contained -syn keyword contextCommon amacron amalg ampersand anchor angle contained -syn keyword contextCommon aogonek appendetoks appendgvalue appendices appendtocommalist contained -syn keyword contextCommon appendtoks appendtoksonce appendvalue apply applyalternativestyle contained -syn keyword contextCommon applyfunction applyprocessor applytocharacters applytofirstcharacter applytosplitstringchar contained -syn keyword contextCommon applytosplitstringcharspaced applytosplitstringline applytosplitstringlinespaced applytosplitstringword applytosplitstringwordspaced contained -syn keyword contextCommon applytowords approx approxEq approxeq approxnEq contained -syn keyword contextCommon arabicakbar arabicalayhe arabicallah arabicallallahou arabicasterisk contained -syn keyword contextCommon arabicbasmalah arabiccomma arabiccuberoot arabicdateseparator arabicdecimals contained -syn keyword contextCommon arabicdisputedendofayah arabicendofayah arabicexnumerals arabicfootnotemarker arabicfourthroot contained -syn keyword contextCommon arabichighain arabichighalayheassallam arabichigheqala arabichighesala arabichighfootnotemarker contained -syn keyword contextCommon arabichighjeem arabichighlamalef arabichighmadda arabichighmeemlong arabichighmeemshort contained -syn keyword contextCommon arabichighnisf arabichighnoon arabichighnoonkasra arabichighqaf arabichighqif contained -syn keyword contextCommon arabichighradiallahouanhu arabichighrahmatullahalayhe arabichighrubc arabichighsad arabichighsajda contained -syn keyword contextCommon arabichighsakta arabichighsallallahou arabichighseen arabichighsmallsafha arabichightah contained -syn keyword contextCommon arabichightakhallus arabichighthalatha arabichighwaqf arabichighyeh arabichighzain contained -syn keyword contextCommon arabicjallajalalouhou arabiclettermark arabiclowmeemlong arabiclownoonkasra arabiclowseen contained -syn keyword contextCommon arabicmisra arabicmuhammad arabicnumber arabicnumberabove arabicnumerals contained -syn keyword contextCommon arabicparenleft arabicparenright arabicpercent arabicperiod arabicpermille contained -syn keyword contextCommon arabicpertenthousand arabicpoeticverse arabicqala arabicquestion arabicrasoul contained -syn keyword contextCommon arabicray arabicrialsign arabicsafha arabicsajdah arabicsalla contained -syn keyword contextCommon arabicsamvat arabicsanah arabicsemicolon arabicshighthreedots arabicslcm contained -syn keyword contextCommon arabicstartofrubc arabictripledot arabicvowelwaw arabicvowelyeh arabicwasallam contained -syn keyword contextCommon arg aring aringacute arrangedpages asciimode contained -syn keyword contextCommon asciistr aside assignalfadimension assigndimen assigndimension contained -syn keyword contextCommon assignifempty assigntranslation assignvalue assignwidth assumelongusagecs contained -syn keyword contextCommon ast astype asymp at atilde contained -syn keyword contextCommon atleftmargin atpage atrightmargin attachment autocap contained -syn keyword contextCommon autodirhbox autodirvbox autodirvtop autoinsertnextspace autointegral contained -syn keyword contextCommon automathematics autoorientation autopagestaterealpage autopagestaterealpageorder autorule contained -syn keyword contextCommon autosetups availablehsize averagecharwidth backepsilon background contained -syn keyword contextCommon backgroundimage backgroundimagefill backgroundline backmatter backprime contained -syn keyword contextCommon backsim backslash bar barleftarrow barleftarrowrightarrowbar contained -syn keyword contextCommon barovernorthwestarrow barwedge basegrid baselinebottom baselineleftbox contained -syn keyword contextCommon baselinemiddlebox baselinerightbox bbordermatrix bbox because contained -syn keyword contextCommon beforesplitstring beforetestandsplitstring beta beth between contained -syn keyword contextCommon bhook big bigbodyfont bigcap bigcirc contained -syn keyword contextCommon bigcircle bigcup bigdiamond bigg bigger contained -syn keyword contextCommon biggl biggm biggr bigl bigm contained -syn keyword contextCommon bigodot bigoplus bigotimes bigr bigskip contained -syn keyword contextCommon bigsqcap bigsqcup bigsquare bigstar bigtimes contained -syn keyword contextCommon bigtriangledown bigtriangleup bigudot biguplus bigvee contained -syn keyword contextCommon bigwedge binom bitmapimage blacklozenge blackrule contained -syn keyword contextCommon blackrules blacksquare blacktriangle blacktriangledown blacktriangleleft contained -syn keyword contextCommon blacktriangleright blank blap bleed bleedheight contained -syn keyword contextCommon bleedwidth blockligatures blockquote blocksynctexfile blockuservariable contained -syn keyword contextCommon bodyfontenvironmentlist bodyfontsize bodymatter bold boldface contained -syn keyword contextCommon bolditalic boldslanted bookmark booleanmodevalue bordermatrix contained -syn keyword contextCommon bot bottombox bottomleftbox bottomrightbox bowtie contained -syn keyword contextCommon boxcursor boxdot boxedcolumns boxmarker boxminus contained -syn keyword contextCommon boxofsize boxplus boxreference boxtimes bpos contained -syn keyword contextCommon breakablethinspace breakhere breve bstroke btxabbreviatedjournal contained -syn keyword contextCommon btxaddjournal btxalwayscitation btxauthorfield btxdetail btxdirect contained -syn keyword contextCommon btxdoif btxdoifcombiinlistelse btxdoifelse btxdoifelsecombiinlist btxdoifelsesameasprevious contained -syn keyword contextCommon btxdoifelsesameaspreviouschecked btxdoifelseuservariable btxdoifnot btxdoifsameaspreviouscheckedelse btxdoifsameaspreviouselse contained -syn keyword contextCommon btxdoifuservariableelse btxexpandedjournal btxfield btxfieldname btxfieldtype contained -syn keyword contextCommon btxfirstofrange btxflush btxflushauthor btxflushauthorinverted btxflushauthorinvertedshort contained -syn keyword contextCommon btxflushauthorname btxflushauthornormal btxflushauthornormalshort btxflushsuffix btxfoundname contained -syn keyword contextCommon btxfoundtype btxhiddencitation btxhybridcite btxlabellanguage btxlabeltext contained -syn keyword contextCommon btxlistcitation btxloadjournalist btxoneorrange btxremapauthor btxrenderingdefinitions contained -syn keyword contextCommon btxsavejournalist btxsetup btxsingularorplural btxsingularplural btxtextcitation contained -syn keyword contextCommon buffer buildmathaccent buildtextaccent buildtextbottomcomma buildtextbottomdot contained -syn keyword contextCommon buildtextcedilla buildtextgrave buildtextmacron buildtextognek bullet contained -syn keyword contextCommon button cacute calligraphic camel cap contained -syn keyword contextCommon capital carriagereturn cases catcodetable catcodetablename contained -syn keyword contextCommon cbox ccaron ccedilla ccircumflex ccurl contained -syn keyword contextCommon cdot cdotaccent cdotp cdots centeraligned contained -syn keyword contextCommon centerbox centerdot centeredbox centeredlastline centerednextbox contained -syn keyword contextCommon centerline cfrac chapter character characteralign contained -syn keyword contextCommon characters chardescription charwidthlanguage check checkcharacteralign contained -syn keyword contextCommon checkedblank checkedchar checkedfences checkedfiller checkedstrippedcsname contained -syn keyword contextCommon checkinjector checkmark checknextindentation checknextinjector checkpage contained -syn keyword contextCommon checkparameters checkpreviousinjector checksoundtrack checktwopassdata checkvariables contained -syn keyword contextCommon chem chemical chemicalbottext chemicalmidtext chemicalsymbol contained -syn keyword contextCommon chemicaltext chemicaltoptext chi chineseallnumerals chinesecapnumerals contained -syn keyword contextCommon chinesenumerals chook circ circeq circlearrowleft contained -syn keyword contextCommon circlearrowright circledR circledS circledast circledcirc contained -syn keyword contextCommon circleddash circledequals circleonrightarrow citation cite contained -syn keyword contextCommon clap classfont cldcommand cldcontext cldloadfile contained -syn keyword contextCommon cldprocessfile cleftarrow clip clippedoverlayimage clonefield contained -syn keyword contextCommon clubsuit collect collectedtext collectexpanded collecting contained -syn keyword contextCommon colon coloncolonequals colonequals color colorbar contained -syn keyword contextCommon colorcomponents colored colorintent coloronly colorset contained -syn keyword contextCommon colorvalue column columnbreak columns columnset contained -syn keyword contextCommon columnsetspan columnsetspanwidth combination combinepages commalistelement contained -syn keyword contextCommon commalistsentence commalistsize comment comparecolorgroup comparedimension contained -syn keyword contextCommon comparedimensioneps comparepalet complement completebtxrendering completecontent contained -syn keyword contextCommon completeindex completelist completelistofabbreviations completelistofchemicals completelistoffigures contained -syn keyword contextCommon completelistofgraphics completelistofintermezzi completelistoflogos completelistofpublications completelistofsorts contained -syn keyword contextCommon completelistofsynonyms completelistoftables completepagenumber completeregister complexes contained -syn keyword contextCommon complexorsimple complexorsimpleempty component composedcollector composedlayer contained -syn keyword contextCommon compounddiscretionary compresult cong constantdimen constantdimenargument contained -syn keyword contextCommon constantemptyargument constantnumber constantnumberargument contentreference contextcode contained -syn keyword contextCommon contextdefinitioncode continuednumber continueifinputfile convertargument convertcommand contained -syn keyword contextCommon convertedcounter converteddimen convertedsubcounter convertmonth convertnumber contained -syn keyword contextCommon convertvalue convertvboxtohbox coprod copyboxfromcache copybtxlabeltext contained -syn keyword contextCommon copyfield copyheadtext copylabeltext copymathlabeltext copyoperatortext contained -syn keyword contextCommon copypages copyparameters copyposition copyprefixtext copyright contained -syn keyword contextCommon copysetups copysuffixtext copytaglabeltext copyunittext correctwhitespace contained -syn keyword contextCommon countersubs counttoken counttokens cramped crampedclap contained -syn keyword contextCommon crampedllap crampedrlap crightarrow crightoverleftarrow crlf contained -syn keyword contextCommon crlfplaceholder cstroke ctop ctxcommand ctxdirectcommand contained -syn keyword contextCommon ctxdirectlua ctxfunction ctxfunctiondefinition ctxlatecommand ctxlatelua contained -syn keyword contextCommon ctxloadluafile ctxlua ctxluabuffer ctxluacode ctxreport contained -syn keyword contextCommon ctxsprint cup curlyeqprec curlyeqsucc curlyvee contained -syn keyword contextCommon curlywedge currentassignmentlistkey currentassignmentlistvalue currentbtxuservariable currentcolor contained -syn keyword contextCommon currentcommalistitem currentcomponent currentdate currentenvironment currentfeaturetest contained -syn keyword contextCommon currentheadnumber currentinterface currentlanguage currentlistentrydestinationattribute currentlistentrylimitedtext contained -syn keyword contextCommon currentlistentrynumber currentlistentrypagenumber currentlistentryreferenceattribute currentlistentrytitle currentlistentrytitlerendered contained -syn keyword contextCommon currentlistentrywrapper currentlistsymbol currentmainlanguage currentmessagetext currentmoduleparameter contained -syn keyword contextCommon currentoutputstream currentproduct currentproject currentregime currentregisterpageuserdata contained -syn keyword contextCommon currentresponses currenttime currentvalue currentxtablecolumn currentxtablerow contained -syn keyword contextCommon curvearrowleft curvearrowright cwopencirclearrow cyrillicA cyrillicAE contained -syn keyword contextCommon cyrillicAbreve cyrillicAdiaeresis cyrillicB cyrillicBIGYUS cyrillicBIGYUSiotified contained -syn keyword contextCommon cyrillicC cyrillicCH cyrillicCHEDC cyrillicCHEDCabkhasian cyrillicCHEabkhasian contained -syn keyword contextCommon cyrillicCHEdiaeresis cyrillicCHEkhakassian cyrillicCHEvertstroke cyrillicD cyrillicDASIAPNEUMATA contained -syn keyword contextCommon cyrillicDJE cyrillicDZE cyrillicDZEabkhasian cyrillicDZHE cyrillicE contained -syn keyword contextCommon cyrillicELtail cyrillicEMtail cyrillicENDC cyrillicENGHE cyrillicENhook contained -syn keyword contextCommon cyrillicENtail cyrillicEREV cyrillicERY cyrillicERtick cyrillicEbreve contained -syn keyword contextCommon cyrillicEdiaeresis cyrillicEgrave cyrillicEiotified cyrillicF cyrillicFITA contained -syn keyword contextCommon cyrillicG cyrillicGHEmidhook cyrillicGHEstroke cyrillicGHEupturn cyrillicGJE contained -syn keyword contextCommon cyrillicH cyrillicHA cyrillicHADC cyrillicHRDSN cyrillicI contained -syn keyword contextCommon cyrillicIE cyrillicII cyrillicISHRT cyrillicISHRTtail cyrillicIZHITSA contained -syn keyword contextCommon cyrillicIZHITSAdoublegrave cyrillicIdiaeresis cyrillicIgrave cyrillicImacron cyrillicJE contained -syn keyword contextCommon cyrillicK cyrillicKADC cyrillicKAbashkir cyrillicKAhook cyrillicKAstroke contained -syn keyword contextCommon cyrillicKAvertstroke cyrillicKJE cyrillicKOPPA cyrillicKSI cyrillicL contained -syn keyword contextCommon cyrillicLITTLEYUS cyrillicLITTLEYUSiotified cyrillicLJE cyrillicM cyrillicN contained -syn keyword contextCommon cyrillicNJE cyrillicO cyrillicOMEGA cyrillicOMEGAround cyrillicOMEGAtitlo contained -syn keyword contextCommon cyrillicOT cyrillicObarred cyrillicObarreddiaeresis cyrillicOdiaeresis cyrillicP contained -syn keyword contextCommon cyrillicPALATALIZATION cyrillicPALOCHKA cyrillicPEmidhook cyrillicPSI cyrillicPSILIPNEUMATA contained -syn keyword contextCommon cyrillicR cyrillicS cyrillicSCHWA cyrillicSCHWAdiaeresis cyrillicSDSC contained -syn keyword contextCommon cyrillicSEMISOFT cyrillicSFTSN cyrillicSH cyrillicSHCH cyrillicSHHA contained -syn keyword contextCommon cyrillicT cyrillicTEDC cyrillicTETSE cyrillicTITLO cyrillicTSHE contained -syn keyword contextCommon cyrillicU cyrillicUK cyrillicUSHRT cyrillicUdiaeresis cyrillicUdoubleacute contained -syn keyword contextCommon cyrillicUmacron cyrillicV cyrillicYA cyrillicYAT cyrillicYERUdiaeresis contained -syn keyword contextCommon cyrillicYI cyrillicYO cyrillicYU cyrillicYstr cyrillicYstrstroke contained -syn keyword contextCommon cyrillicZ cyrillicZDSC cyrillicZEdiaeresis cyrillicZH cyrillicZHEbreve contained -syn keyword contextCommon cyrillicZHEdescender cyrillicZHEdiaeresis cyrillica cyrillicabreve cyrillicadiaeresis contained -syn keyword contextCommon cyrillicae cyrillicb cyrillicbigyus cyrillicbigyusiotified cyrillicc contained -syn keyword contextCommon cyrillicch cyrilliccheabkhasian cyrillicchedc cyrillicchedcabkhasian cyrillicchediaeresis contained -syn keyword contextCommon cyrillicchekhakassian cyrillicchevertstroke cyrillicd cyrillicdje cyrillicdze contained -syn keyword contextCommon cyrillicdzeabkhasian cyrillicdzhe cyrillice cyrillicebreve cyrillicediaeresis contained -syn keyword contextCommon cyrillicegrave cyrilliceiotified cyrilliceltail cyrillicemtail cyrillicendc contained -syn keyword contextCommon cyrillicenghe cyrillicenhook cyrillicentail cyrillicerev cyrillicertick contained -syn keyword contextCommon cyrillicery cyrillicf cyrillicfita cyrillicg cyrillicghemidhook contained -syn keyword contextCommon cyrillicghestroke cyrillicgheupturn cyrillicgje cyrillich cyrillicha contained -syn keyword contextCommon cyrillichadc cyrillichrdsn cyrillici cyrillicidiaeresis cyrillicie contained -syn keyword contextCommon cyrillicigrave cyrillicii cyrillicimacron cyrillicishrt cyrillicishrttail contained -syn keyword contextCommon cyrillicizhitsa cyrillicizhitsadoublegrave cyrillicje cyrillick cyrillickabashkir contained -syn keyword contextCommon cyrillickadc cyrillickahook cyrillickastroke cyrillickavertstroke cyrillickje contained -syn keyword contextCommon cyrillickoppa cyrillicksi cyrillicl cyrilliclittleyus cyrilliclittleyusiotified contained -syn keyword contextCommon cyrilliclje cyrillicm cyrillicn cyrillicnje cyrillico contained -syn keyword contextCommon cyrillicobarred cyrillicobarreddiaeresis cyrillicodiaeresis cyrillicomega cyrillicomegaround contained -syn keyword contextCommon cyrillicomegatitlo cyrillicot cyrillicp cyrillicpemidhook cyrillicpsi contained -syn keyword contextCommon cyrillicr cyrillics cyrillicschwa cyrillicschwadiaeresis cyrillicsdsc contained -syn keyword contextCommon cyrillicsemisoft cyrillicsftsn cyrillicsh cyrillicshch cyrillicshha contained -syn keyword contextCommon cyrillict cyrillictedc cyrillictetse cyrillictshe cyrillicu contained -syn keyword contextCommon cyrillicudiaeresis cyrillicudoubleacute cyrillicuk cyrillicumacron cyrillicushrt contained -syn keyword contextCommon cyrillicv cyrillicya cyrillicyat cyrillicyerudiaeresis cyrillicyi contained -syn keyword contextCommon cyrillicyo cyrillicystr cyrillicystrstroke cyrillicyu cyrillicz contained -syn keyword contextCommon cyrilliczdsc cyrilliczediaeresis cyrilliczh cyrilliczhebreve cyrilliczhedescender contained -syn keyword contextCommon cyrilliczhediaeresis d dag dagger daleth contained -syn keyword contextCommon dasharrow dashedleftarrow dashedrightarrow dashv datasetvariable contained -syn keyword contextCommon date daylong dayoftheweek dayshort dayspermonth contained -syn keyword contextCommon dbinom dcaron dcurl dd ddag contained -syn keyword contextCommon ddagger dddot ddot ddots decrement contained -syn keyword contextCommon decrementcounter decrementedcounter decrementpagenumber decrementsubpagenumber decrementvalue contained -syn keyword contextCommon defaultinterface defaultobjectpage defaultobjectreference defcatcodecommand defconvertedargument contained -syn keyword contextCommon defconvertedcommand defconvertedvalue define defineMPinstance defineTABLEsetup contained -syn keyword contextCommon defineaccent defineactivecharacter definealternativestyle defineanchor defineattachment contained -syn keyword contextCommon defineattribute definebackground definebar defineblock definebodyfont contained -syn keyword contextCommon definebodyfontenvironment definebodyfontswitch definebreakpoint definebreakpoints definebtx contained -syn keyword contextCommon definebtxdataset definebtxregister definebtxrendering definebuffer definebutton contained -syn keyword contextCommon definecapitals definecharacter definecharacterkerning definecharacterspacing definechemical contained -syn keyword contextCommon definechemicals definechemicalsymbol definecollector definecolor definecolorgroup contained -syn keyword contextCommon definecolumnbreak definecolumnset definecolumnsetarea definecolumnsetspan definecombination contained -syn keyword contextCommon definecombinedlist definecommand definecomment definecomplexorsimple definecomplexorsimpleempty contained -syn keyword contextCommon defineconversion defineconversionset definecounter definedataset definedate contained -syn keyword contextCommon definedelimitedtext definedeq definedescription definedfont definedocument contained -syn keyword contextCommon defineeffect defineenumeration defineexpandable defineexpansion defineexternalfigure contained -syn keyword contextCommon definefacingfloat definefallbackfamily definefield definefieldbody definefieldbodyset contained -syn keyword contextCommon definefieldcategory definefieldstack definefiguresymbol definefileconstant definefilefallback contained -syn keyword contextCommon definefilesynonym definefiller definefirstline definefittingpage definefloat contained -syn keyword contextCommon definefont definefontalternative definefontfallback definefontfamily definefontfamilypreset contained -syn keyword contextCommon definefontfeature definefontfile definefontsize definefontsolution definefontstyle contained -syn keyword contextCommon definefontsynonym defineformula defineformulaalternative defineformulaframed defineframed contained -syn keyword contextCommon defineframedcontent defineframedtable defineframedtext definefrozenfont defineglobalcolor contained -syn keyword contextCommon definegraphictypesynonym definegridsnapping definehbox definehead defineheadalternative contained -syn keyword contextCommon definehelp definehigh definehighlight definehspace definehyphenationfeatures contained -syn keyword contextCommon defineindentedtext defineindenting defineinitial defineinsertion defineinteraction contained -syn keyword contextCommon defineinteractionbar defineinteractionmenu defineinterfaceconstant defineinterfaceelement defineinterfacevariable contained -syn keyword contextCommon defineinterlinespace defineintermediatecolor defineitemgroup defineitems definelabel contained -syn keyword contextCommon definelabelclass definelayer definelayerpreset definelayout definelinefiller contained -syn keyword contextCommon definelinenote definelinenumbering definelines definelist definelistalternative contained -syn keyword contextCommon definelistextra definelow definelowhigh definelowmidhigh definemakeup contained -syn keyword contextCommon definemarginblock definemargindata definemarker definemarking definemathaccent contained -syn keyword contextCommon definemathalignment definemathcases definemathcommand definemathdouble definemathdoubleextensible contained -syn keyword contextCommon definemathematics definemathextensible definemathfence definemathfraction definemathframed contained -syn keyword contextCommon definemathmatrix definemathornament definemathover definemathoverextensible definemathovertextextensible contained -syn keyword contextCommon definemathradical definemathstackers definemathstyle definemathtriplet definemathunder contained -syn keyword contextCommon definemathunderextensible definemathundertextextensible definemathunstacked definemeasure definemessageconstant contained -syn keyword contextCommon definemixedcolumns definemode definemulticolumns definemultitonecolor definenamedcolor contained -syn keyword contextCommon definenamespace definenarrower definenote defineorientation defineornament contained -syn keyword contextCommon defineoutputroutine defineoutputroutinecommand defineoverlay definepage definepagebreak contained -syn keyword contextCommon definepagechecker definepagecolumns definepageinjection definepageinjectionalternative definepageshift contained -syn keyword contextCommon definepagestate definepairedbox definepalet definepapersize defineparagraph contained -syn keyword contextCommon defineparagraphs defineparallel defineparbuilder defineperiodkerning defineplaceholder contained -syn keyword contextCommon defineplacement definepositioning defineprefixset defineprocesscolor defineprocessor contained -syn keyword contextCommon defineprofile defineprogram definepushbutton definepushsymbol definereference contained -syn keyword contextCommon definereferenceformat defineregister definerenderingwindow defineresetset defineruby contained -syn keyword contextCommon definescale definescript definesection definesectionblock definesectionlevels contained -syn keyword contextCommon defineselector defineseparatorset defineshift definesidebar definesort contained -syn keyword contextCommon definesorting definespotcolor definestartstop definestyle definestyleinstance contained -syn keyword contextCommon definesubfield definesubformula definesymbol definesynonym definesynonyms contained -syn keyword contextCommon definesystemattribute definesystemconstant definesystemvariable definetabletemplate definetabulate contained -syn keyword contextCommon definetext definetextbackground definetextflow definetextnote definetokenlist contained -syn keyword contextCommon definetooltip definetransparency definetwopasslist definetype definetypeface contained -syn keyword contextCommon definetypescriptprefix definetypescriptsynonym definetypesetting definetyping defineunit contained -syn keyword contextCommon defineuserdata defineuserdataalternative defineviewerlayer definevspace definevspacing contained -syn keyword contextCommon definevspacingamount definextable defrostparagraphproperties delimited delimitedtext contained -syn keyword contextCommon delta depthofstring depthonlybox depthspanningtext depthstrut contained -syn keyword contextCommon determineheadnumber determinelistcharacteristics determinenoflines determineregistercharacteristics devanagarinumerals contained -syn keyword contextCommon dfrac dhook diameter diamond diamondsuit contained -syn keyword contextCommon differentialD differentiald digamma digits dimensiontocount contained -syn keyword contextCommon directboxfromcache directcolor directcolored directconvertedcounter directcopyboxfromcache contained -syn keyword contextCommon directdummyparameter directgetboxllx directgetboxlly directhighlight directlocalframed contained -syn keyword contextCommon directluacode directparwrapper directselect directsetbar directsetup contained -syn keyword contextCommon directsymbol directvspacing dis disabledirectives disableexperiments contained -syn keyword contextCommon disablemode disableoutputstream disableparpositions disableregime disabletrackers contained -syn keyword contextCommon displaymath displaymathematics displaymessage disposeluatable distributedhsize contained -syn keyword contextCommon div dividedsize divideontimes divides dmath contained -syn keyword contextCommon doadaptleftskip doadaptrightskip doaddfeature doassign doassignempty contained -syn keyword contextCommon doboundtext docheckassignment docheckedpair document documentvariable contained -syn keyword contextCommon dodoubleargument dodoubleargumentwithset dodoubleempty dodoubleemptywithset dodoublegroupempty contained -syn keyword contextCommon doeassign doexpandedrecurse dofastloopcs dogetattribute dogetattributeid contained -syn keyword contextCommon dogetcommacommandelement dogobbledoubleempty dogobblesingleempty dohyphens doif contained -syn keyword contextCommon doifMPgraphicelse doifallcommon doifallcommonelse doifalldefinedelse doifallmodes contained -syn keyword contextCommon doifallmodeselse doifassignmentelse doifassignmentelsecs doifblackelse doifbothsides contained -syn keyword contextCommon doifbothsidesoverruled doifboxelse doifbufferelse doifcheckedpagestate doifcolor contained -syn keyword contextCommon doifcolorelse doifcommandhandler doifcommandhandlerelse doifcommon doifcommonelse contained -syn keyword contextCommon doifcontent doifconversiondefinedelse doifconversionnumberelse doifcounter doifcounterelse contained -syn keyword contextCommon doifcurrentfonthasfeatureelse doifdefined doifdefinedcounter doifdefinedcounterelse doifdefinedelse contained -syn keyword contextCommon doifdimensionelse doifdimenstringelse doifdocumentargument doifdocumentargumentelse doifdocumentfilename contained -syn keyword contextCommon doifdocumentfilenameelse doifdocumentvariable doifdocumentvariableelse doifdrawingblackelse doifelse contained -syn keyword contextCommon doifelseMPgraphic doifelseallcommon doifelsealldefined doifelseallmodes doifelseassignment contained -syn keyword contextCommon doifelseassignmentcs doifelseblack doifelsebox doifelseboxincache doifelsebuffer contained -syn keyword contextCommon doifelsecolor doifelsecommandhandler doifelsecommon doifelseconversiondefined doifelseconversionnumber contained -syn keyword contextCommon doifelsecounter doifelsecurrentfonthasfeature doifelsecurrentsortingused doifelsecurrentsynonymshown doifelsecurrentsynonymused contained -syn keyword contextCommon doifelsedefined doifelsedefinedcounter doifelsedimension doifelsedimenstring doifelsedocumentargument contained -syn keyword contextCommon doifelsedocumentfilename doifelsedocumentvariable doifelsedrawingblack doifelseempty doifelseemptyvalue contained -syn keyword contextCommon doifelseemptyvariable doifelseenv doifelsefastoptionalcheck doifelsefastoptionalcheckcs doifelsefieldbody contained -syn keyword contextCommon doifelsefieldcategory doifelsefigure doifelsefile doifelsefiledefined doifelsefileexists contained -syn keyword contextCommon doifelsefirstchar doifelseflagged doifelsefontchar doifelsefontfeature doifelsefontpresent contained -syn keyword contextCommon doifelsefontsynonym doifelseframed doifelsehasspace doifelsehelp doifelseincsname contained -syn keyword contextCommon doifelseindented doifelseinelement doifelseinputfile doifelseinsertion doifelseinset contained -syn keyword contextCommon doifelseinstring doifelseinsymbolset doifelseintoks doifelseintwopassdata doifelseitalic contained -syn keyword contextCommon doifelselanguage doifelselayerdata doifelselayoutdefined doifelselayoutsomeline doifelselayouttextline contained -syn keyword contextCommon doifelseleapyear doifelselist doifelselocation doifelselocfile doifelsemainfloatbody contained -syn keyword contextCommon doifelsemarkedcontent doifelsemarkedpage doifelsemarking doifelsemeaning doifelsemessage contained -syn keyword contextCommon doifelsemode doifelsenextbgroup doifelsenextbgroupcs doifelsenextchar doifelsenextoptional contained -syn keyword contextCommon doifelsenextoptionalcs doifelsenextparenthesis doifelsenonzeropositive doifelsenoteonsamepage doifelsenothing contained -syn keyword contextCommon doifelsenumber doifelseobjectfound doifelseobjectreferencefound doifelseoddpage doifelseoddpagefloat contained -syn keyword contextCommon doifelseoldercontext doifelseolderversion doifelseorientation doifelseoverlapping doifelseoverlay contained -syn keyword contextCommon doifelseparallel doifelseparentfile doifelseparwrapper doifelsepath doifelsepathexists contained -syn keyword contextCommon doifelsepatterns doifelseposition doifelsepositionaction doifelsepositiononpage doifelsepositionsonsamepage contained -syn keyword contextCommon doifelsepositionsonthispage doifelsepositionsused doifelsereferencefound doifelserightpage doifelserightpagefloat contained -syn keyword contextCommon doifelserighttoleftinbox doifelsesamelinereference doifelsesamestring doifelsesetups doifelsesomebackground contained -syn keyword contextCommon doifelsesomespace doifelsesomething doifelsesometoks doifelsestringinstring doifelsestructurelisthasnumber contained -syn keyword contextCommon doifelsestructurelisthaspage doifelsesymboldefined doifelsesymbolset doifelsetext doifelsetextflow contained -syn keyword contextCommon doifelsetextflowcollector doifelsetopofpage doifelsetypingfile doifelseundefined doifelseurldefined contained -syn keyword contextCommon doifelsevalue doifelsevaluenothing doifelsevariable doifempty doifemptyelse contained -syn keyword contextCommon doifemptytoks doifemptyvalue doifemptyvalueelse doifemptyvariable doifemptyvariableelse contained -syn keyword contextCommon doifenv doifenvelse doiffastoptionalcheckcselse doiffastoptionalcheckelse doiffieldbodyelse contained -syn keyword contextCommon doiffieldcategoryelse doiffigureelse doiffile doiffiledefinedelse doiffileelse contained -syn keyword contextCommon doiffileexistselse doiffirstcharelse doifflaggedelse doiffontcharelse doiffontfeatureelse contained -syn keyword contextCommon doiffontpresentelse doiffontsynonymelse doifhasspaceelse doifhelpelse doifincsnameelse contained -syn keyword contextCommon doifinelementelse doifinputfileelse doifinsertionelse doifinset doifinsetelse contained -syn keyword contextCommon doifinstring doifinstringelse doifinsymbolset doifinsymbolsetelse doifintokselse contained -syn keyword contextCommon doifintwopassdataelse doifitalicelse doiflanguageelse doiflayerdataelse doiflayoutdefinedelse contained -syn keyword contextCommon doiflayoutsomelineelse doiflayouttextlineelse doifleapyearelse doiflistelse doiflocationelse contained -syn keyword contextCommon doiflocfileelse doifmainfloatbodyelse doifmarkingelse doifmeaningelse doifmessageelse contained -syn keyword contextCommon doifmode doifmodeelse doifnextbgroupcselse doifnextbgroupelse doifnextcharelse contained -syn keyword contextCommon doifnextoptionalcselse doifnextoptionalelse doifnextparenthesiselse doifnonzeropositiveelse doifnot contained -syn keyword contextCommon doifnotallcommon doifnotallmodes doifnotcommandhandler doifnotcommon doifnotcounter contained -syn keyword contextCommon doifnotdocumentargument doifnotdocumentfilename doifnotdocumentvariable doifnotempty doifnotemptyvalue contained -syn keyword contextCommon doifnotemptyvariable doifnotenv doifnoteonsamepageelse doifnotescollected doifnotfile contained -syn keyword contextCommon doifnotflagged doifnothing doifnothingelse doifnotinset doifnotinsidesplitfloat contained -syn keyword contextCommon doifnotinstring doifnotmode doifnotnumber doifnotsamestring doifnotsetups contained -syn keyword contextCommon doifnotvalue doifnotvariable doifnumber doifnumberelse doifobjectfoundelse contained -syn keyword contextCommon doifobjectreferencefoundelse doifoddpageelse doifoddpagefloatelse doifoldercontextelse doifolderversionelse contained -syn keyword contextCommon doifoutervmode doifoverlappingelse doifoverlayelse doifparallelelse doifparentfileelse contained -syn keyword contextCommon doifpathelse doifpathexistselse doifpatternselse doifposition doifpositionaction contained -syn keyword contextCommon doifpositionactionelse doifpositionelse doifpositiononpageelse doifpositionsonsamepageelse doifpositionsonthispageelse contained -syn keyword contextCommon doifpositionsusedelse doifreferencefoundelse doifrightpageelse doifrightpagefloatelse doifrighttoleftinboxelse contained -syn keyword contextCommon doifsamelinereferenceelse doifsamestring doifsamestringelse doifsetups doifsetupselse contained -syn keyword contextCommon doifsomebackground doifsomebackgroundelse doifsomespaceelse doifsomething doifsomethingelse contained -syn keyword contextCommon doifsometoks doifsometokselse doifstringinstringelse doifstructurelisthasnumberelse doifstructurelisthaspageelse contained -syn keyword contextCommon doifsymboldefinedelse doifsymbolsetelse doiftext doiftextelse doiftextflowcollectorelse contained -syn keyword contextCommon doiftextflowelse doiftopofpageelse doiftypingfileelse doifundefined doifundefinedcounter contained -syn keyword contextCommon doifundefinedelse doifunknownfontfeature doifurldefinedelse doifvalue doifvalueelse contained -syn keyword contextCommon doifvaluenothing doifvaluenothingelse doifvaluesomething doifvariable doifvariableelse contained -syn keyword contextCommon doindentation dollar doloop doloopoverlist donothing contained -syn keyword contextCommon dontconvertfont dontleavehmode dontpermitspacesbetweengroups dopositionaction doprocesslocalsetups contained -syn keyword contextCommon doquadrupleargument doquadrupleempty doquadruplegroupempty doquintupleargument doquintupleempty contained -syn keyword contextCommon doquintuplegroupempty dorechecknextindentation dorecurse dorepeatwithcommand doreplacefeature contained -syn keyword contextCommon doresetandafffeature doresetattribute dorotatebox dosetattribute dosetleftskipadaption contained -syn keyword contextCommon dosetrightskipadaption dosetupcheckedinterlinespace doseventupleargument doseventupleempty dosingleargument contained -syn keyword contextCommon dosingleempty dosinglegroupempty dosixtupleargument dosixtupleempty dosomebreak contained -syn keyword contextCommon dostepwiserecurse dosubtractfeature dot doteq doteqdot contained -syn keyword contextCommon dotfill dotfskip dotlessI dotlessJ dotlessi contained -syn keyword contextCommon dotlessj dotlessjstroke dotminus dotoks dotplus contained -syn keyword contextCommon dotripleargument dotripleargumentwithset dotripleempty dotripleemptywithset dotriplegroupempty contained -syn keyword contextCommon dots dottedcircle dottedrightarrow doublebar doublebond contained -syn keyword contextCommon doublebrace doublebracket doublecap doublecup doubleparent contained -syn keyword contextCommon doubleprime doubleverticalbar dowith dowithnextbox dowithnextboxcontent contained -syn keyword contextCommon dowithnextboxcontentcs dowithnextboxcs dowithpargument dowithrange dowithwargument contained -syn keyword contextCommon downarrow downdasharrow downdownarrows downharpoonleft downharpoonright contained -syn keyword contextCommon downuparrows downwhitearrow downzigzagarrow dpofstring dstroke contained -syn keyword contextCommon dtail dummydigit dummyparameter dzcaronligature dzligature contained -syn keyword contextCommon eTeX eacute ebreve ecaron ecedilla contained -syn keyword contextCommon ecircumflex ecircumflexacute ecircumflexdotbelow ecircumflexgrave ecircumflexhook contained -syn keyword contextCommon ecircumflextilde edefconvertedargument ediaeresis edotaccent edotbelow contained -syn keyword contextCommon edoublegrave ee efcmaxheight efcmaxwidth efcminheight contained -syn keyword contextCommon efcminwidth efcparameter effect egrave ehook contained -syn keyword contextCommon einvertedbreve elapsedseconds elapsedsteptime elapsedtime eleftarrowfill contained -syn keyword contextCommon eleftharpoondownfill eleftharpoonupfill eleftrightarrowfill element ell contained -syn keyword contextCommon em emacron embeddedxtable emdash emphasisboldface contained -syn keyword contextCommon emphasistypeface emptylines emptyset emquad emspace contained -syn keyword contextCommon enableasciimode enabledirectives enableexperiments enablemode enableoutputstream contained -syn keyword contextCommon enableparpositions enableregime enabletrackers endash endnote contained -syn keyword contextCommon endofline enquad enskip enspace env contained -syn keyword contextCommon environment envvar eogonek eoverbarfill eoverbracefill contained -syn keyword contextCommon eoverbracketfill eoverparentfill epos epsilon eq contained -syn keyword contextCommon eqcirc eqeq eqeqeq eqgtr eqless contained -syn keyword contextCommon eqsim eqslantgtr eqslantless equaldigits equalscolon contained -syn keyword contextCommon equiv erightarrowfill erightharpoondownfill erightharpoonupfill eta contained -syn keyword contextCommon eth ethiopic etilde etwoheadrightarrowfill eunderbarfill contained -syn keyword contextCommon eunderbracefill eunderbracketfill eunderparentfill exceptions exclamdown contained -syn keyword contextCommon executeifdefined exists exitloop exitloopnow expandcheckedcsname contained -syn keyword contextCommon expanded expandedcollect expandeddoif expandeddoifelse expandeddoifnot contained -syn keyword contextCommon expandfontsynonym expdoif expdoifcommonelse expdoifelse expdoifelsecommon contained -syn keyword contextCommon expdoifelseinset expdoifinsetelse expdoifnot exponentiale extendedcatcodetable contained -syn keyword contextCommon externalfigure externalfigurecollection externalfigurecollectionmaxheight externalfigurecollectionmaxwidth externalfigurecollectionminheight contained -syn keyword contextCommon externalfigurecollectionminwidth externalfigurecollectionparameter facingfloat fact fakebox contained -syn keyword contextCommon fallingdotseq fastdecrement fastincrement fastlocalframed fastloopfinal contained -syn keyword contextCommon fastloopindex fastscale fastsetup fastsetupwithargument fastsetupwithargumentswapped contained -syn keyword contextCommon fastswitchtobodyfont fastsxsy feature fence fenced contained -syn keyword contextCommon fetchallmarkings fetchallmarks fetchmark fetchmarking fetchonemark contained -syn keyword contextCommon fetchonemarking fetchruntinecommand fetchtwomarkings fetchtwomarks ffiligature contained -syn keyword contextCommon ffligature fflligature fhook field fieldbody contained -syn keyword contextCommon fieldstack fifthoffivearguments fifthofsixarguments figure figuredash contained -syn keyword contextCommon figurefilename figurefilepath figurefiletype figurefullname figureheight contained -syn keyword contextCommon figurenaturalheight figurenaturalwidth figurespace figuresymbol figuretext contained -syn keyword contextCommon figurewidth filename filigature filledhboxb filledhboxc contained -syn keyword contextCommon filledhboxg filledhboxk filledhboxm filledhboxr filledhboxy contained -syn keyword contextCommon filler fillinline fillinrules fillintext fillupto contained -syn keyword contextCommon filterfromnext filterfromvalue filterpages filterreference findtwopassdata contained -syn keyword contextCommon finishregisterentry firstcharacter firstcounter firstcountervalue firstinlist contained -syn keyword contextCommon firstoffivearguments firstoffourarguments firstofoneargument firstofoneunexpanded firstofsixarguments contained -syn keyword contextCommon firstofthreearguments firstofthreeunexpanded firstoftwoarguments firstoftwounexpanded firstrealpage contained -syn keyword contextCommon firstrealpagenumber firstsubcountervalue firstsubpage firstsubpagenumber firstuserpage contained -syn keyword contextCommon firstuserpagenumber fitfield fitfieldframed fittingpage fittopbaselinegrid contained -syn keyword contextCommon fiveeighths fivesixths fixed fixedspace fixedspaces contained -syn keyword contextCommon flag flat flligature floatcombination floatuserdataparameter contained -syn keyword contextCommon flushbox flushboxregister flushcollector flushedrightlastline flushlayer contained -syn keyword contextCommon flushlocalfloats flushnextbox flushnotes flushoutputstream flushshapebox contained -syn keyword contextCommon flushtextflow flushtokens flushtoks font fontalternative contained -syn keyword contextCommon fontbody fontchar fontcharbyindex fontclass fontclassname contained -syn keyword contextCommon fontface fontfeaturelist fontsize fontsolution fontstyle contained -syn keyword contextCommon footnote footnotetext forall forcecharacterstripping forcelocalfloats contained -syn keyword contextCommon forgeteverypar forgetparagraphfreezing forgetparameters forgetparskip forgetparwrapper contained -syn keyword contextCommon forgetragged formula formulanumber formulas foundbox contained -syn keyword contextCommon fourfifths fourperemspace fourthoffivearguments fourthoffourarguments fourthofsixarguments contained -syn keyword contextCommon frac framed framedcell framedcontent frameddimension contained -syn keyword contextCommon framedparameter framedrow framedtable framedtext freezedimenmacro contained -syn keyword contextCommon freezemeasure freezeparagraphproperties frenchspacing from fromlinenote contained -syn keyword contextCommon frontmatter frown frozenhbox frule gacute contained -syn keyword contextCommon gamma gbreve gcaron gcircumflex gcommaaccent contained -syn keyword contextCommon gdefconvertedargument gdefconvertedcommand gdotaccent ge geq contained -syn keyword contextCommon geqq geqslant getMPdrawing getMPlayer getboxfromcache contained -syn keyword contextCommon getboxllx getboxlly getbuffer getbufferdata getcommacommandsize contained -syn keyword contextCommon getcommalistsize getdatavalue getdayoftheweek getdayspermonth getdefinedbuffer contained -syn keyword contextCommon getdocumentargument getdocumentargumentdefault getdocumentfilename getdummyparameters getemptyparameters contained -syn keyword contextCommon geteparameters getexpandedparameters getfiguredimensions getfirstcharacter getfirsttwopassdata contained -syn keyword contextCommon getfromcommacommand getfromcommalist getfromluatable getfromtwopassdata getglyphdirect contained -syn keyword contextCommon getglyphstyled getgparameters getinlineuserdata getlasttwopassdata getlocalfloat contained -syn keyword contextCommon getlocalfloats getmarking getmessage getnamedglyphdirect getnamedglyphstyled contained -syn keyword contextCommon getnamedtwopassdatalist getnaturaldimensions getnoflines getobject getobjectdimensions contained -syn keyword contextCommon getpaletsize getparameters getparwrapper getprivatechar getprivateslot contained -syn keyword contextCommon getrandomcount getrandomdimen getrandomfloat getrandomnumber getrandomseed contained -syn keyword contextCommon getraweparameters getrawgparameters getrawnoflines getrawparameters getrawxparameters contained -syn keyword contextCommon getreference getreferenceentry getroundednoflines gets getsubstring contained -syn keyword contextCommon gettokenlist gettwopassdata gettwopassdatalist getuserdata getuvalue contained -syn keyword contextCommon getvalue getvariable getvariabledefault getxparameters gg contained -syn keyword contextCommon ggg gggtr gimel globaldisablemode globalenablemode contained -syn keyword contextCommon globalletempty globalpopbox globalpopmacro globalpreventmode globalprocesscommalist contained -syn keyword contextCommon globalpushbox globalpushmacro globalswapcounts globalswapdimens globalswapmacros contained -syn keyword contextCommon globalundefine glyphfontfile gnapprox gneqq gnsim contained -syn keyword contextCommon gobbledoubleempty gobbleeightarguments gobblefivearguments gobblefiveoptionals gobblefourarguments contained -syn keyword contextCommon gobblefouroptionals gobbleninearguments gobbleoneargument gobbleoneoptional gobblesevenarguments contained -syn keyword contextCommon gobblesingleempty gobblesixarguments gobblespacetokens gobbletenarguments gobblethreearguments contained -syn keyword contextCommon gobblethreeoptionals gobbletwoarguments gobbletwooptionals gobbleuntil gobbleuntilrelax contained -syn keyword contextCommon godown goto gotobox gotopage grabbufferdata contained -syn keyword contextCommon grabbufferdatadirect grabuntil graphictext grave graycolor contained -syn keyword contextCommon grayvalue greedysplitstring greekAlpha greekAlphadasia greekAlphadasiaperispomeni contained -syn keyword contextCommon greekAlphadasiatonos greekAlphadasiavaria greekAlphaiotasub greekAlphaiotasubdasia greekAlphaiotasubdasiaperispomeni contained -syn keyword contextCommon greekAlphaiotasubdasiatonos greekAlphaiotasubdasiavaria greekAlphaiotasubpsili greekAlphaiotasubpsiliperispomeni greekAlphaiotasubpsilitonos contained -syn keyword contextCommon greekAlphaiotasubpsilivaria greekAlphamacron greekAlphapsili greekAlphapsiliperispomeni greekAlphapsilitonos contained -syn keyword contextCommon greekAlphapsilivaria greekAlphatonos greekAlphavaria greekAlphavrachy greekBeta contained -syn keyword contextCommon greekChi greekCoronis greekDelta greekEpsilon greekEpsilondasia contained -syn keyword contextCommon greekEpsilondasiatonos greekEpsilondasiavaria greekEpsilonpsili greekEpsilonpsilitonos greekEpsilonpsilivaria contained -syn keyword contextCommon greekEpsilontonos greekEpsilonvaria greekEta greekEtadasia greekEtadasiaperispomeni contained -syn keyword contextCommon greekEtadasiatonos greekEtadasiavaria greekEtaiotasub greekEtaiotasubdasia greekEtaiotasubdasiaperispomeni contained -syn keyword contextCommon greekEtaiotasubdasiatonos greekEtaiotasubdasiavaria greekEtaiotasubpsili greekEtaiotasubpsiliperispomeni greekEtaiotasubpsilitonos contained -syn keyword contextCommon greekEtaiotasubpsilivaria greekEtapsili greekEtapsiliperispomeni greekEtapsilitonos greekEtapsilivaria contained -syn keyword contextCommon greekEtatonos greekEtavaria greekGamma greekIota greekIotadasia contained -syn keyword contextCommon greekIotadasiaperispomeni greekIotadasiatonos greekIotadasiavaria greekIotadialytika greekIotamacron contained -syn keyword contextCommon greekIotapsili greekIotapsiliperispomeni greekIotapsilitonos greekIotapsilivaria greekIotatonos contained -syn keyword contextCommon greekIotavaria greekIotavrachy greekKappa greekLambda greekMu contained -syn keyword contextCommon greekNu greekOmega greekOmegadasia greekOmegadasiaperispomeni greekOmegadasiatonos contained -syn keyword contextCommon greekOmegadasiavaria greekOmegaiotasub greekOmegaiotasubdasia greekOmegaiotasubdasiaperispomeni greekOmegaiotasubdasiatonos contained -syn keyword contextCommon greekOmegaiotasubdasiavaria greekOmegaiotasubpsili greekOmegaiotasubpsiliperispomeni greekOmegaiotasubpsilitonos greekOmegaiotasubpsilivaria contained -syn keyword contextCommon greekOmegapsili greekOmegapsiliperispomeni greekOmegapsilitonos greekOmegapsilivaria greekOmegatonos contained -syn keyword contextCommon greekOmegavaria greekOmicron greekOmicrondasia greekOmicrondasiatonos greekOmicrondasiavaria contained -syn keyword contextCommon greekOmicronpsili greekOmicronpsilitonos greekOmicronpsilivaria greekOmicrontonos greekOmicronvaria contained -syn keyword contextCommon greekPhi greekPi greekPsi greekRho greekRhodasia contained -syn keyword contextCommon greekSigma greekSigmalunate greekTau greekTheta greekUpsilon contained -syn keyword contextCommon greekUpsilondasia greekUpsilondasiaperispomeni greekUpsilondasiatonos greekUpsilondasiavaria greekUpsilondialytika contained -syn keyword contextCommon greekUpsilonmacron greekUpsilontonos greekUpsilonvaria greekUpsilonvrachy greekXi contained -syn keyword contextCommon greekZeta greekalpha greekalphadasia greekalphadasiaperispomeni greekalphadasiatonos contained -syn keyword contextCommon greekalphadasiavaria greekalphaiotasub greekalphaiotasubdasia greekalphaiotasubdasiaperispomeni greekalphaiotasubdasiatonos contained -syn keyword contextCommon greekalphaiotasubdasiavaria greekalphaiotasubperispomeni greekalphaiotasubpsili greekalphaiotasubpsiliperispomeni greekalphaiotasubpsilitonos contained -syn keyword contextCommon greekalphaiotasubpsilivaria greekalphaiotasubtonos greekalphaiotasubvaria greekalphamacron greekalphaoxia contained -syn keyword contextCommon greekalphaperispomeni greekalphapsili greekalphapsiliperispomeni greekalphapsilitonos greekalphapsilivaria contained -syn keyword contextCommon greekalphatonos greekalphavaria greekalphavrachy greekbeta greekbetaalt contained -syn keyword contextCommon greekchi greekdasia greekdasiaperispomeni greekdasiavaria greekdelta contained -syn keyword contextCommon greekdialytikaperispomeni greekdialytikatonos greekdialytikavaria greekdigamma greekepsilon contained -syn keyword contextCommon greekepsilonalt greekepsilondasia greekepsilondasiatonos greekepsilondasiavaria greekepsilonoxia contained -syn keyword contextCommon greekepsilonpsili greekepsilonpsilitonos greekepsilonpsilivaria greekepsilontonos greekepsilonvaria contained -syn keyword contextCommon greeketa greeketadasia greeketadasiaperispomeni greeketadasiatonos greeketadasiavaria contained -syn keyword contextCommon greeketaiotasub greeketaiotasubdasia greeketaiotasubdasiaperispomeni greeketaiotasubdasiatonos greeketaiotasubdasiavaria contained -syn keyword contextCommon greeketaiotasubperispomeni greeketaiotasubpsili greeketaiotasubpsiliperispomeni greeketaiotasubpsilitonos greeketaiotasubpsilivaria contained -syn keyword contextCommon greeketaiotasubtonos greeketaiotasubvaria greeketaoxia greeketaperispomeni greeketapsili contained -syn keyword contextCommon greeketapsiliperispomeni greeketapsilitonos greeketapsilivaria greeketatonos greeketavaria contained -syn keyword contextCommon greekfinalsigma greekgamma greekiota greekiotadasia greekiotadasiaperispomeni contained -syn keyword contextCommon greekiotadasiatonos greekiotadasiavaria greekiotadialytika greekiotadialytikaperispomeni greekiotadialytikatonos contained -syn keyword contextCommon greekiotadialytikavaria greekiotamacron greekiotaoxia greekiotaperispomeni greekiotapsili contained -syn keyword contextCommon greekiotapsiliperispomeni greekiotapsilitonos greekiotapsilivaria greekiotatonos greekiotavaria contained -syn keyword contextCommon greekiotavrachy greekkappa greekkoppa greeklambda greekmu contained -syn keyword contextCommon greeknu greeknumerals greeknumkoppa greekomega greekomegadasia contained -syn keyword contextCommon greekomegadasiaperispomeni greekomegadasiatonos greekomegadasiavaria greekomegaiotasub greekomegaiotasubdasia contained -syn keyword contextCommon greekomegaiotasubdasiaperispomeni greekomegaiotasubdasiatonos greekomegaiotasubdasiavaria greekomegaiotasubperispomeni greekomegaiotasubpsili contained -syn keyword contextCommon greekomegaiotasubpsiliperispomeni greekomegaiotasubpsilitonos greekomegaiotasubpsilivaria greekomegaiotasubtonos greekomegaiotasubvaria contained -syn keyword contextCommon greekomegaoxia greekomegaperispomeni greekomegapsili greekomegapsiliperispomeni greekomegapsilitonos contained -syn keyword contextCommon greekomegapsilivaria greekomegatonos greekomegavaria greekomicron greekomicrondasia contained -syn keyword contextCommon greekomicrondasiatonos greekomicrondasiavaria greekomicronoxia greekomicronpsili greekomicronpsilitonos contained -syn keyword contextCommon greekomicronpsilivaria greekomicrontonos greekomicronvaria greekoxia greekperispomeni contained -syn keyword contextCommon greekphi greekphialt greekpi greekpialt greekprosgegrammeni contained -syn keyword contextCommon greekpsi greekpsili greekpsiliperispomeni greekpsilivaria greekrho contained -syn keyword contextCommon greekrhoalt greekrhodasia greekrhopsili greeksampi greeksigma contained -syn keyword contextCommon greeksigmalunate greekstigma greektau greektheta greekthetaalt contained -syn keyword contextCommon greektonos greekupsilon greekupsilondasia greekupsilondasiaperispomeni greekupsilondasiatonos contained -syn keyword contextCommon greekupsilondasiavaria greekupsilondiaeresis greekupsilondialytikaperispomeni greekupsilondialytikatonos greekupsilondialytikavaria contained -syn keyword contextCommon greekupsilonmacron greekupsilonoxia greekupsilonperispomeni greekupsilonpsili greekupsilonpsiliperispomeni contained -syn keyword contextCommon greekupsilonpsilitonos greekupsilonpsilivaria greekupsilontonos greekupsilonvaria greekupsilonvrachy contained -syn keyword contextCommon greekvaria greekxi greekzeta grid gridsnapping contained -syn keyword contextCommon groupedcommand gsetboxllx gsetboxlly gstroke gt contained -syn keyword contextCommon gtrapprox gtrdot gtreqless gtreqqless gtrless contained -syn keyword contextCommon gtrsim guilsingleleft guilsingleright gujaratinumerals gurmurkhinumerals contained -syn keyword contextCommon hairline hairspace halflinestrut halfstrut halfwaybox contained -syn keyword contextCommon handletokens handwritten hanging hangul hanzi contained -syn keyword contextCommon hash hat hbar hbox hboxestohbox contained -syn keyword contextCommon hboxofvbox hboxreference hboxregister hcaron hcircumflex contained -syn keyword contextCommon hdofstring head headhbox headlanguage headnumber contained -syn keyword contextCommon headnumbercontent headnumberdistance headnumberwidth headreferenceattributes headsetupspacing contained -syn keyword contextCommon headtext headtextcontent headtextdistance headtexts headtextwidth contained -syn keyword contextCommon headvbox headwidth heartsuit hebrewAlef hebrewAyin contained -syn keyword contextCommon hebrewBet hebrewDalet hebrewGimel hebrewHe hebrewHet contained -syn keyword contextCommon hebrewKaf hebrewKaffinal hebrewLamed hebrewMem hebrewMemfinal contained -syn keyword contextCommon hebrewNun hebrewNunfinal hebrewPe hebrewPefinal hebrewQof contained -syn keyword contextCommon hebrewResh hebrewSamekh hebrewShin hebrewTav hebrewTet contained -syn keyword contextCommon hebrewTsadi hebrewTsadifinal hebrewVav hebrewYod hebrewZayin contained -syn keyword contextCommon hebrewnumerals heightanddepthofstring heightofstring heightspanningtext helptext contained -syn keyword contextCommon hexnumber hexstringtonumber hglue hiddenbar hiddencitation contained -syn keyword contextCommon hiddencite hideblocks hiding high highlight contained -syn keyword contextCommon highordinalstr hilo himilo hl hookleftarrow contained -syn keyword contextCommon hookrightarrow horizontalgrowingbar horizontalpositionbar hpackbox hpackedbox contained -syn keyword contextCommon hphantom hpos hsizefraction hslash hsmash contained -syn keyword contextCommon hsmashbox hsmashed hspace hstroke htdpofstring contained -syn keyword contextCommon htofstring hyphen hyphenatedcoloredword hyphenatedfile hyphenatedfilename contained -syn keyword contextCommon hyphenatedhbox hyphenatedpar hyphenatedurl hyphenatedword hyphenation contained -syn keyword contextCommon iacute ibox ibreve icaron icircumflex contained -syn keyword contextCommon ideographichalffillspace ideographicspace idiaeresis idotaccent idotbelow contained -syn keyword contextCommon idoublegrave idxfromluatable ifassignment iff ifinobject contained -syn keyword contextCommon ifinoutputstream ifparameters iftrialtypesetting ignoreimplicitspaces ignoretagsinexport contained -syn keyword contextCommon ignorevalue igrave ihook ii iiiint contained -syn keyword contextCommon iiiintop iiint iiintop iint iintop contained -syn keyword contextCommon iinvertedbreve ijligature imacron imaginaryi imaginaryj contained -syn keyword contextCommon imath immediatesavetwopassdata impliedby implies imply contained -syn keyword contextCommon in includemenu includesvgbuffer includesvgfile includeversioninfo contained -syn keyword contextCommon increment incrementcounter incrementedcounter incrementpagenumber incrementsubpagenumber contained -syn keyword contextCommon incrementvalue indentation indentedtext index infofont contained -syn keyword contextCommon infofontbold inframed infty infull inheritparameter contained -syn keyword contextCommon inhibitblank ininner ininneredge ininnermargin initializeboxstack contained -syn keyword contextCommon inleft inleftedge inleftmargin inline inlinebuffer contained -syn keyword contextCommon inlinedbox inlinemath inlinemathematics inlinemessage inlineordisplaymath contained -syn keyword contextCommon inlineprettyprintbuffer inlinerange inmargin inmframed innerflushshapebox contained -syn keyword contextCommon inother inouter inouteredge inoutermargin input contained -syn keyword contextCommon inputfilebarename inputfilename inputfilerealsuffix inputfilesuffix inputgivenfile contained -syn keyword contextCommon inright inrightedge inrightmargin insertpages inspectluatable contained -syn keyword contextCommon installactionhandler installactivecharacter installanddefineactivecharacter installattributestack installautocommandhandler contained -syn keyword contextCommon installautosetuphandler installbasicautosetuphandler installbasicparameterhandler installbottomframerenderer installcommandhandler contained -syn keyword contextCommon installcorenamespace installctxfunction installctxscanner installdefinehandler installdefinitionset contained -syn keyword contextCommon installdefinitionsetmember installdirectcommandhandler installdirectparameterhandler installdirectparametersethandler installdirectsetuphandler contained -syn keyword contextCommon installdirectstyleandcolorhandler installframedautocommandhandler installframedcommandhandler installglobalmacrostack installlanguage contained -syn keyword contextCommon installleftframerenderer installmacrostack installnamespace installoutputroutine installpagearrangement contained -syn keyword contextCommon installparameterhandler installparameterhashhandler installparametersethandler installparentinjector installprotectedctxfunction contained -syn keyword contextCommon installprotectedctxscanner installrightframerenderer installrootparameterhandler installsetuphandler installsetuponlycommandhandler contained -syn keyword contextCommon installshipoutmethod installsimplecommandhandler installsimpleframedcommandhandler installstyleandcolorhandler installswitchcommandhandler contained -syn keyword contextCommon installswitchsetuphandler installtexdirective installtextracker installtopframerenderer installunitsseparator contained -syn keyword contextCommon installunitsspace installversioninfo int intclockwise integerrounding contained -syn keyword contextCommon integers interaction interactionbar interactionbuttons interactionmenu contained -syn keyword contextCommon intercal interface intermezzotext intertext interwordspaceafter contained -syn keyword contextCommon interwordspacebefore interwordspaces interwordspacesafter interwordspacesbefore intop contained -syn keyword contextCommon invisiblecomma invisibleplus invisibletimes invokepagehandler iogonek contained -syn keyword contextCommon iota italic italicbold italiccorrection italicface contained -syn keyword contextCommon item itemgroup itemgroupcolumns itemize items contained -syn keyword contextCommon itemtag itilde jcaron jcircumflex ji contained -syn keyword contextCommon jmath jobfilename jobfilesuffix kap kappa contained -syn keyword contextCommon kcaron kcommaaccent keepblocks keeplinestogether keepunwantedspaces contained -syn keyword contextCommon kerncharacters khook kkra knockout koreancirclenumerals contained -syn keyword contextCommon koreannumerals koreannumeralsc koreannumeralsp koreanparentnumerals lVert contained -syn keyword contextCommon labellanguage labeltext labeltexts lacute lambda contained -syn keyword contextCommon lambdabar land langle language languageCharacters contained -syn keyword contextCommon languagecharacters languagecharwidth laplace lastcounter lastcountervalue contained -syn keyword contextCommon lastdigit lastlinewidth lastnaturalboxdp lastnaturalboxht lastnaturalboxwd contained -syn keyword contextCommon lastparwrapper lastpredefinedsymbol lastrealpage lastrealpagenumber lastsubcountervalue contained -syn keyword contextCommon lastsubpage lastsubpagenumber lasttwodigits lastuserpage lastuserpagenumber contained -syn keyword contextCommon lateluacode latin layeredtext layerheight layerwidth contained -syn keyword contextCommon layout lazysavetaggedtwopassdata lazysavetwopassdata lbar lbox contained -syn keyword contextCommon lbrace lbracket lcaron lceil lchexnumber contained -syn keyword contextCommon lchexnumbers lcommaaccent lcurl ldot ldotmiddle contained -syn keyword contextCommon ldotp ldots le leadsto left contained -syn keyword contextCommon leftaligned leftarrow leftarrowtail leftarrowtriangle leftbottombox contained -syn keyword contextCommon leftbox leftdasharrow leftguillemot leftharpoondown leftharpoonup contained -syn keyword contextCommon lefthbox leftheadtext leftlabeltext leftleftarrows leftline contained -syn keyword contextCommon leftmathlabeltext leftorrighthbox leftorrightvbox leftorrightvtop leftrightarrow contained -syn keyword contextCommon leftrightarrows leftrightarrowtriangle leftrightharpoons leftrightsquigarrow leftskipadaption contained -syn keyword contextCommon leftsquigarrow leftsubguillemot leftthreetimes lefttopbox lefttoright contained -syn keyword contextCommon lefttorighthbox lefttorightvbox lefttorightvtop leftwavearrow leftwhitearrow contained -syn keyword contextCommon legend leq leqq leqslant lessapprox contained -syn keyword contextCommon lessdot lesseqgtr lesseqqgtr lessgtr lesssim contained -syn keyword contextCommon letbeundefined letcatcodecommand letcscsname letcsnamecs letcsnamecsname contained -syn keyword contextCommon letdummyparameter letempty letgvalue letgvalueempty letgvalurelax contained -syn keyword contextCommon letterampersand letterat letterbackslash letterbar letterbgroup contained -syn keyword contextCommon letterclosebrace lettercolon letterdollar letterdoublequote letteregroup contained -syn keyword contextCommon letterescape letterexclamationmark letterhash letterhat letterleftbrace contained -syn keyword contextCommon letterleftbracket letterleftparenthesis letterless lettermore letteropenbrace contained -syn keyword contextCommon letterpercent letterquestionmark letterrightbrace letterrightbracket letterrightparenthesis contained -syn keyword contextCommon lettersinglequote letterslash letterspacing lettertilde letterunderscore contained -syn keyword contextCommon letvalue letvalueempty letvaluerelax lfence lfloor contained -syn keyword contextCommon lgroup lhbox lhooknwarrow lhooksearrow limitatefirstline contained -syn keyword contextCommon limitatelines limitatetext line linealignment linebox contained -syn keyword contextCommon linecorrection linefeed linefiller linefillerhbox linefillervbox contained -syn keyword contextCommon linefillervtop linenote linenumbering lines linespanningtext contained -syn keyword contextCommon linetable linetablebody linetablecell linetablehead linethickness contained -syn keyword contextCommon linterval listcitation listcite listlength listnamespaces contained -syn keyword contextCommon literalmode ljligature ll llangle llap contained -syn keyword contextCommon llbracket llcorner lll llless llointerval contained -syn keyword contextCommon lmoustache lnapprox lneq lneqq lnot contained -syn keyword contextCommon lnsim loadanyfile loadanyfileonce loadbtxdefinitionfile loadbtxreplacementfile contained -syn keyword contextCommon loadcldfile loadcldfileonce loadfontgoodies loadluafile loadluafileonce contained -syn keyword contextCommon loadspellchecklist loadtexfile loadtexfileonce loadtypescriptfile localfootnotes contained -syn keyword contextCommon localframed localframedwithsettings localheadsetup localhsize locallinecorrection contained -syn keyword contextCommon localnotes localpopbox localpopmacro localpushbox localpushmacro contained -syn keyword contextCommon localsetups localundefine locatedfilepath locatefilepath locfilename contained -syn keyword contextCommon logo lohi lointerval lomihi longleftarrow contained -syn keyword contextCommon longleftrightarrow longmapsfrom longmapsto longrightarrow longrightsquigarrow contained -syn keyword contextCommon looparrowleft looparrowright lor low lowerbox contained -syn keyword contextCommon lowercased lowercasestring lowercasing lowerleftdoubleninequote lowerleftsingleninequote contained -syn keyword contextCommon lowerrightdoubleninequote lowerrightsingleninequote lozenge lparent lrcorner contained -syn keyword contextCommon lrointerval lrtbbox lstroke lt ltimes contained -syn keyword contextCommon ltop ltrhbox ltrvbox ltrvtop lua contained -syn keyword contextCommon luaTeX luacode luaconditional luaenvironment luaexpanded contained -syn keyword contextCommon luaexpr luafunction luajitTeX luamajorversion luametaTeX contained -syn keyword contextCommon luaminorversion luaparameterset luasetup luasetups luaversion contained -syn keyword contextCommon lvert m mLeftarrow mLeftrightarrow mRightarrow contained -syn keyword contextCommon mVert mainlanguage makecharacteractive makerawcommalist makestrutofbox contained -syn keyword contextCommon makeup maltese mapfontsize mapsdown mapsfrom contained -syn keyword contextCommon mapsto mapsup marginblock margindata marginrule contained -syn keyword contextCommon margintext markcontent markedcontent markedpages marking contained -syn keyword contextCommon markinjector markpage markpages markreferencepage mat contained -syn keyword contextCommon math mathalignment mathampersand mathbf mathbi contained -syn keyword contextCommon mathblackboard mathbs mathcases mathdefault mathdollar contained -syn keyword contextCommon mathdouble mathematics mathfraktur mathfunction mathhash contained -syn keyword contextCommon mathhyphen mathit mathitalic mathlabellanguage mathlabeltext contained -syn keyword contextCommon mathlabeltexts mathmatrix mathmode mathop mathover contained -syn keyword contextCommon mathpercent mathrm mathscript mathsl mathss contained -syn keyword contextCommon mathstyle mathtext mathtextbf mathtextbi mathtextbs contained -syn keyword contextCommon mathtextit mathtextsl mathtexttf mathtf mathtriplet contained -syn keyword contextCommon mathtt mathunder mathupright mathword mathwordbf contained -syn keyword contextCommon mathwordbi mathwordbs mathwordit mathwordsl mathwordtf contained -syn keyword contextCommon matrices matrix maxaligned mbox mcframed contained -syn keyword contextCommon mdformula measure measured measuredangle measuredeq contained -syn keyword contextCommon medskip medspace menubutton mequal message contained -syn keyword contextCommon mfence mframed mfunction mfunctionlabeltext mhbox contained -syn keyword contextCommon mho mhookleftarrow mhookrightarrow mid midaligned contained -syn keyword contextCommon middle middlealigned middlebox middlemakeup midhbox contained -syn keyword contextCommon midsubsentence minimalhbox minus minuscolon mirror contained -syn keyword contextCommon mixedcaps mixedcolumns mkvibuffer mleftarrow mleftharpoondown contained -syn keyword contextCommon mleftharpoonup mleftrightarrow mleftrightharpoons mmapsto mode contained -syn keyword contextCommon models modeset module moduleparameter moduletestsection contained -syn keyword contextCommon molecule mono monobold mononormal month contained -syn keyword contextCommon monthlong monthshort mp mpformula mprandomnumber contained -syn keyword contextCommon mrel mrightarrow mrightharpoondown mrightharpoonup mrightleftharpoons contained -syn keyword contextCommon mrightoverleftarrow mtext mtriplerel mtwoheadleftarrow mtwoheadrightarrow contained -syn keyword contextCommon mu multicolumns multimap mvert nHdownarrow contained -syn keyword contextCommon nHuparrow nLeftarrow nLeftrightarrow nRightarrow nVDash contained -syn keyword contextCommon nVdash nVleftarrow nVleftrightarrow nVrightarrow nabla contained -syn keyword contextCommon nacute namedheadnumber namedsection namedstructureheadlocation namedstructureuservariable contained -syn keyword contextCommon namedstructurevariable namedsubformulas namedtaggedlabeltexts napostrophe napprox contained -syn keyword contextCommon napproxEq narrow narrower narrownobreakspace nasymp contained -syn keyword contextCommon natural naturalhbox naturalhpack naturalnumbers naturaltpack contained -syn keyword contextCommon naturalvbox naturalvcenter naturalvpack naturalvtop naturalwd contained -syn keyword contextCommon ncaron ncommaaccent ncong ncurl ndivides contained -syn keyword contextCommon ne nearrow neg negatecolorbox negated contained -syn keyword contextCommon negative negativesign negemspace negenspace negthinspace contained -syn keyword contextCommon neng neq nequiv neswarrow newattribute contained -syn keyword contextCommon newcatcodetable newcounter newevery newfrenchspacing newluatable contained -syn keyword contextCommon newmode newsignal newsystemmode nexists nextbox contained -syn keyword contextCommon nextboxdp nextboxht nextboxhtdp nextboxwd nextcounter contained -syn keyword contextCommon nextcountervalue nextdepth nextparagraphs nextrealpage nextrealpagenumber contained -syn keyword contextCommon nextsubcountervalue nextsubpage nextsubpagenumber nextuserpage nextuserpagenumber contained -syn keyword contextCommon ngeq ngrave ngtr ngtrless ngtrsim contained -syn keyword contextCommon ni nicelyfilledbox nihongo nin njligature contained -syn keyword contextCommon nleftarrow nleftrightarrow nleq nless nlessgtr contained -syn keyword contextCommon nlesssim nmid nni nobar nobreakspace contained -syn keyword contextCommon nocap nocharacteralign nocitation nocite nodetostring contained -syn keyword contextCommon noffigurepages noflines noflinesinbox noflocalfloats noheaderandfooterlines contained -syn keyword contextCommon noheightstrut nohyphens noindentation nointerference noitem contained -syn keyword contextCommon nonfrenchspacing nonmathematics nonvalidassignment normal normalboldface contained -syn keyword contextCommon normalframedwithsettings normalitalicface normalizebodyfontsize normalizedfontsize normalizefontdepth contained -syn keyword contextCommon normalizefontheight normalizefontline normalizefontwidth normalizetextdepth normalizetextheight contained -syn keyword contextCommon normalizetextline normalizetextwidth normalslantedface normaltypeface nospace contained -syn keyword contextCommon not notallmodes note notesymbol notext contained -syn keyword contextCommon notin notmode notopandbottomlines notragged nowns contained -syn keyword contextCommon nparallel nprec npreccurlyeq nrightarrow nsim contained -syn keyword contextCommon nsimeq nsqsubseteq nsqsupseteq nsubset nsubseteq contained -syn keyword contextCommon nsucc nsucccurlyeq nsupset nsupseteq ntilde contained -syn keyword contextCommon ntimes ntriangleleft ntrianglelefteq ntriangleright ntrianglerighteq contained -syn keyword contextCommon nu numberofpoints numbers nvDash nvdash contained -syn keyword contextCommon nvleftarrow nvleftrightarrow nvrightarrow nwarrow nwsearrow contained -syn keyword contextCommon oacute obeydepth objectdepth objectheight objectmargin contained -syn keyword contextCommon objectwidth obox obreve ocaron ocircumflex contained -syn keyword contextCommon ocircumflexacute ocircumflexdotbelow ocircumflexgrave ocircumflexhook ocircumflextilde contained -syn keyword contextCommon octnumber octstringtonumber odiaeresis odiaeresismacron odot contained -syn keyword contextCommon odotaccent odotaccentmacron odotbelow odoublegrave oeligature contained -syn keyword contextCommon offset offsetbox ograve ohm ohook contained -syn keyword contextCommon ohorn ohornacute ohorndotbelow ohorngrave ohornhook contained -syn keyword contextCommon ohorntilde ohungarumlaut oiiint oiint oint contained -syn keyword contextCommon ointclockwise ointctrclockwise oinvertedbreve omacron omega contained -syn keyword contextCommon omicron ominus onedigitrounding oneeighth onefifth contained -syn keyword contextCommon onehalf onequarter onesixth onesuperior onethird contained -syn keyword contextCommon oogonek oogonekmacron operatorlanguage operatortext oplus contained -syn keyword contextCommon opposite ordfeminine ordinaldaynumber ordinalstr ordmasculine contained -syn keyword contextCommon ornamenttext oslash ostroke ostrokeacute otilde contained -syn keyword contextCommon otildemacron otimes outputfilename outputstream outputstreambox contained -syn keyword contextCommon outputstreamcopy outputstreamunvbox outputstreamunvcopy over overbar contained -syn keyword contextCommon overbars overbartext overbarunderbar overbrace overbracetext contained -syn keyword contextCommon overbraceunderbrace overbracket overbrackettext overbracketunderbracket overlay contained -syn keyword contextCommon overlaybutton overlaycolor overlaydepth overlayfigure overlayheight contained -syn keyword contextCommon overlayimage overlaylinecolor overlaylinewidth overlayoffset overlayrollbutton contained -syn keyword contextCommon overlaywidth overleftarrow overleftharpoondown overleftharpoonup overleftrightarrow contained -syn keyword contextCommon overloaderror overparent overparenttext overparentunderparent overprint contained -syn keyword contextCommon overrightarrow overrightharpoondown overrightharpoonup overset overstrike contained -syn keyword contextCommon overstrikes overtwoheadleftarrow overtwoheadrightarrow owns packed contained -syn keyword contextCommon page pagearea pagebreak pagecolumns pagecomment contained -syn keyword contextCommon pagefigure pageinjection pagelayout pagemakeup pagenumber contained -syn keyword contextCommon pagereference pagestaterealpage pagestaterealpageorder paletsize par contained -syn keyword contextCommon paragraph paragraphmark paragraphs paragraphscell parallel contained -syn keyword contextCommon parbuilder part partial path pdfTeX contained -syn keyword contextCommon pdfactualtext pdfbackendactualtext pdfbackendcurrentresources pdfbackendsetcatalog pdfbackendsetcolorspace contained -syn keyword contextCommon pdfbackendsetextgstate pdfbackendsetinfo pdfbackendsetname pdfbackendsetpageattribute pdfbackendsetpageresource contained -syn keyword contextCommon pdfbackendsetpagesattribute pdfbackendsetpattern pdfbackendsetshade pdfcolor pdfeTeX contained -syn keyword contextCommon percent percentdimen periodcentered periods permitcaretescape contained -syn keyword contextCommon permitcircumflexescape permitspacesbetweengroups perp persiandecimals persiandecimalseparator contained -syn keyword contextCommon persiannumerals persianthousandsseparator perthousand phantom phantombox contained -syn keyword contextCommon phi phook pi pickupgroupedcommand pitchfork contained -syn keyword contextCommon placeattachments placebookmarks placebtxrendering placechemical placecitation contained -syn keyword contextCommon placecombinedlist placecomments placecontent placecurrentformulanumber placedbox contained -syn keyword contextCommon placefigure placefloat placefloatcaption placefloatwithsetups placefootnotes contained -syn keyword contextCommon placeformula placeframed placegraphic placeheadnumber placeheadtext contained -syn keyword contextCommon placehelp placeholder placeindex placeinitial placeintermezzo contained -syn keyword contextCommon placelayer placelayeredtext placelegend placelist placelistofabbreviations contained -syn keyword contextCommon placelistofchemicals placelistoffigures placelistofgraphics placelistofintermezzi placelistoflogos contained -syn keyword contextCommon placelistofpublications placelistofsorts placelistofsynonyms placelistoftables placelocalfootnotes contained -syn keyword contextCommon placelocalnotes placement placenamedfloat placenamedformula placenotes contained -syn keyword contextCommon placeongrid placeontopofeachother placepagenumber placepairedbox placeparallel contained -syn keyword contextCommon placerawheaddata placerawheadnumber placerawheadtext placerawlist placeregister contained -syn keyword contextCommon placerenderingwindow placesidebyside placesubformula placetable pm contained -syn keyword contextCommon popattribute popmacro popmode popsystemmode position contained -syn keyword contextCommon positioning positionoverlay positionregionoverlay positive positivesign contained -syn keyword contextCommon postponenotes postponing postponingnotes prec precapprox contained -syn keyword contextCommon preccurlyeq preceq preceqq precnapprox precneq contained -syn keyword contextCommon precneqq precnsim precsim predefinedfont predefinefont contained -syn keyword contextCommon predefinesymbol prefixedpagenumber prefixlanguage prefixtext prependetoks contained -syn keyword contextCommon prependgvalue prependtocommalist prependtoks prependtoksonce prependvalue contained -syn keyword contextCommon prerollblank presetbtxlabeltext presetdocument presetfieldsymbols presetheadtext contained -syn keyword contextCommon presetlabeltext presetmathlabeltext presetoperatortext presetprefixtext presetsuffixtext contained -syn keyword contextCommon presettaglabeltext presetunittext pretocommalist prettyprintbuffer prevcounter contained -syn keyword contextCommon prevcountervalue preventmode prevrealpage prevrealpagenumber prevsubcountervalue contained -syn keyword contextCommon prevsubpage prevsubpagenumber prevuserpage prevuserpagenumber prime contained -syn keyword contextCommon primes procent processMPbuffer processMPfigurefile processaction contained -syn keyword contextCommon processallactionsinset processassignlist processassignmentcommand processassignmentlist processbetween contained -syn keyword contextCommon processblocks processbodyfontenvironmentlist processcolorcomponents processcommacommand processcommalist contained -syn keyword contextCommon processcommalistwithparameters processcontent processfile processfilemany processfilenone contained -syn keyword contextCommon processfileonce processfirstactioninset processisolatedchars processisolatedwords processlinetablebuffer contained -syn keyword contextCommon processlinetablefile processlist processmonth processranges processseparatedlist contained -syn keyword contextCommon processtexbuffer processtokens processuntil processxtablebuffer processyear contained -syn keyword contextCommon prod product profiledbox profilegivenbox program contained -syn keyword contextCommon project propto protect protectedcolors pseudoMixedCapped contained -syn keyword contextCommon pseudoSmallCapped pseudoSmallcapped pseudosmallcapped psi publication contained -syn keyword contextCommon punctuation punctuationspace purenumber pushattribute pushbutton contained -syn keyword contextCommon pushmacro pushmode pushoutputstream pushsystemmode putboxincache contained -syn keyword contextCommon putnextboxincache qquad quad quadrupleprime quads contained -syn keyword contextCommon quarterstrut questiondown questionedeq quitcommalist quitprevcommalist contained -syn keyword contextCommon quittypescriptscanning quotation quote quotedbl quotedblbase contained -syn keyword contextCommon quotedblleft quotedblright quoteleft quoteright quotesingle contained -syn keyword contextCommon quotesinglebase rVert racute raggedbottom raggedcenter contained -syn keyword contextCommon raggedleft raggedright raggedwidecenter raisebox randomized contained -syn keyword contextCommon randomizetext randomnumber randomseed rangle rationals contained -syn keyword contextCommon rawcounter rawcountervalue rawdate rawdoifelseinset rawdoifinset contained -syn keyword contextCommon rawdoifinsetelse rawgetparameters rawprocessaction rawprocesscommacommand rawprocesscommalist contained -syn keyword contextCommon rawsetups rawstructurelistuservariable rawsubcountervalue rbox rbrace contained -syn keyword contextCommon rbracket rcaron rceil rcommaaccent rdoublegrave contained -syn keyword contextCommon readfile readfixfile readingfile readjobfile readlocfile contained -syn keyword contextCommon readsetfile readsysfile readtexfile readxmlfile realSmallCapped contained -syn keyword contextCommon realSmallcapped realpagenumber reals realsmallcapped recursedepth contained -syn keyword contextCommon recurselevel recursestring redoconvertfont ref reference contained -syn keyword contextCommon referencecolumnnumber referencepagedetail referencepagestate referenceprefix referencerealpage contained -syn keyword contextCommon referencesymbol referring regime registerattachment registerctxluafile contained -syn keyword contextCommon registered registerexternalfigure registerfontclass registerhyphenationexception registerhyphenationpattern contained -syn keyword contextCommon registermenubuttons registerparwrapper registerparwrapperreverse registersort registersynonym contained -syn keyword contextCommon registerunit regular relatemarking relateparameterhandlers relaxvalueifundefined contained -syn keyword contextCommon relbar remainingcharacters remark removebottomthings removedepth contained -syn keyword contextCommon removefromcommalist removelastskip removelastspace removemarkedcontent removepunctuation contained -syn keyword contextCommon removesubstring removetoks removeunwantedspaces repeathead replacefeature contained -syn keyword contextCommon replaceincommalist replaceword rescan rescanwithsetup resetMPdrawing contained -syn keyword contextCommon resetMPenvironment resetMPinstance resetallattributes resetandaddfeature resetbar contained -syn keyword contextCommon resetboxesincache resetbreakpoints resetbuffer resetcharacteralign resetcharacterkerning contained -syn keyword contextCommon resetcharacterspacing resetcharacterstripping resetcollector resetcounter resetctxscanner contained -syn keyword contextCommon resetdigitsmanipulation resetdirection resetfeature resetflag resetfontcolorsheme contained -syn keyword contextCommon resetfontfallback resetfontsolution resethyphenationfeatures resetinjector resetinteractionmenu contained -syn keyword contextCommon resetitaliccorrection resetlayer resetlocalfloats resetmarker resetmarking contained -syn keyword contextCommon resetmode resetpagenumber resetparallel resetpath resetpenalties contained -syn keyword contextCommon resetperiodkerning resetprofile resetrecurselevel resetreference resetreplacements contained -syn keyword contextCommon resetscript resetsetups resetshownsynonyms resetsubpagenumber resetsymbolset contained -syn keyword contextCommon resetsystemmode resettimer resettokenlist resettrackers resettrialtypesetting contained -syn keyword contextCommon resetusedsortings resetusedsynonyms resetuserpagenumber resetvalue resetvisualizers contained -syn keyword contextCommon reshapebox resolvedglyphdirect resolvedglyphstyled restartcounter restorebox contained -syn keyword contextCommon restorecatcodes restorecounter restorecurrentattributes restoreendofline restoreglobalbodyfont contained -syn keyword contextCommon restriction retestfeature reusableMPgraphic reuseMPgraphic reuserandomseed contained -syn keyword contextCommon reverseddoubleprime reversedprime reversedtripleprime reversehbox reversehpack contained -syn keyword contextCommon reversetpack reversevbox reversevboxcontent reversevpack reversevtop contained -syn keyword contextCommon revivefeature rfence rfloor rgroup rhbox contained -syn keyword contextCommon rho rhooknearrow rhookswarrow right rightaligned contained -syn keyword contextCommon rightangle rightarrow rightarrowbar rightarrowtail rightarrowtriangle contained -syn keyword contextCommon rightbottombox rightbox rightdasharrow rightguillemot rightharpoondown contained -syn keyword contextCommon rightharpoonup righthbox rightheadtext rightlabeltext rightleftarrows contained -syn keyword contextCommon rightleftharpoons rightline rightmathlabeltext rightorleftpageaction rightpageorder contained -syn keyword contextCommon rightrightarrows rightskipadaption rightsquigarrow rightsubguillemot rightthreearrows contained -syn keyword contextCommon rightthreetimes righttoleft righttolefthbox righttoleftvbox righttoleftvtop contained -syn keyword contextCommon righttopbox rightwavearrow rightwhitearrow ring rinterval contained -syn keyword contextCommon rinvertedbreve risingdotseq rlap rlointerval rmoustache contained -syn keyword contextCommon rneq robustaddtocommalist robustdoifelseinset robustdoifinsetelse robustpretocommalist contained -syn keyword contextCommon rointerval rollbutton roman romanC romanD contained -syn keyword contextCommon romanI romanII romanIII romanIV romanIX contained -syn keyword contextCommon romanL romanM romanV romanVI romanVII contained -syn keyword contextCommon romanVIII romanX romanXI romanXII romanc contained -syn keyword contextCommon romand romani romanii romaniii romaniv contained -syn keyword contextCommon romanix romanl romanm romannumerals romanv contained -syn keyword contextCommon romanvi romanvii romanviii romanx romanxi contained -syn keyword contextCommon romanxii rootradical rotate rparent rrangle contained -syn keyword contextCommon rrbracket rrointerval rtimes rtlhbox rtlvbox contained -syn keyword contextCommon rtlvtop rtop ruby ruledhbox ruledhpack contained -syn keyword contextCommon ruledmbox ruledtopv ruledtpack ruledvbox ruledvpack contained -syn keyword contextCommon ruledvtop runMPbuffer runninghbox russianNumerals russiannumerals contained -syn keyword contextCommon rvert sacute safechar samplefile sans contained -syn keyword contextCommon sansbold sansnormal sansserif savebox savebtxdataset contained -syn keyword contextCommon savebuffer savecounter savecurrentattributes savenormalmeaning savetaggedtwopassdata contained -syn keyword contextCommon savetwopassdata sbox scale scaron scedilla contained -syn keyword contextCommon schwa schwahook scircumflex scommaaccent screen contained -syn keyword contextCommon script sdformula searrow secondoffivearguments secondoffourarguments contained -syn keyword contextCommon secondofsixarguments secondofthreearguments secondofthreeunexpanded secondoftwoarguments secondoftwounexpanded contained -syn keyword contextCommon section sectionblock sectionblockenvironment sectionlevel sectionmark contained -syn keyword contextCommon seeindex select selectblocks serializecommalist serializedcommalist contained -syn keyword contextCommon serif serifbold serifnormal setJSpreamble setMPlayer contained -syn keyword contextCommon setMPpositiongraphic setMPpositiongraphicrange setMPtext setMPvariable setMPvariables contained -syn keyword contextCommon setautopagestaterealpageno setbar setbigbodyfont setboxllx setboxlly contained -syn keyword contextCommon setbreakpoints setcapstrut setcatcodetable setcharacteralign setcharacteraligndetail contained -syn keyword contextCommon setcharactercasing setcharactercleaning setcharacterkerning setcharacterspacing setcharacterstripping contained -syn keyword contextCommon setcharstrut setcollector setcolormodell setcounter setcounterown contained -syn keyword contextCommon setctxluafunction setcurrentfontclass setdataset setdatavalue setdefaultpenalties contained -syn keyword contextCommon setdigitsmanipulation setdirection setdocumentargument setdocumentargumentdefault setdocumentfilename contained -syn keyword contextCommon setdummyparameter setelementexporttag setemeasure setevalue setevariable contained -syn keyword contextCommon setevariables setexpansion setfirstline setfirstpasscharacteralign setflag contained -syn keyword contextCommon setfont setfontcolorsheme setfontfeature setfontsolution setfontstrut contained -syn keyword contextCommon setfractions setglobalscript setgmeasure setgvalue setgvariable contained -syn keyword contextCommon setgvariables sethboxregister sethyphenatedurlafter sethyphenatedurlbefore sethyphenatedurlnormal contained -syn keyword contextCommon sethyphenationfeatures setinitial setinjector setinteraction setinterfacecommand contained -syn keyword contextCommon setinterfaceconstant setinterfaceelement setinterfacemessage setinterfacevariable setinternalrendering contained -syn keyword contextCommon setitaliccorrection setlayer setlayerframed setlayertext setlinefiller contained -syn keyword contextCommon setlocalhsize setlocalscript setluatable setmainbodyfont setmainparbuilder contained -syn keyword contextCommon setmarker setmarking setmathstyle setmeasure setmessagetext contained -syn keyword contextCommon setminus setmode setnostrut setnote setnotetext contained -syn keyword contextCommon setobject setoldstyle setpagereference setpagestate setpagestaterealpageno contained -syn keyword contextCommon setparagraphfreezing setpenalties setpercentdimen setperiodkerning setposition contained -syn keyword contextCommon setpositionbox setpositiondata setpositiondataplus setpositiononly setpositionplus contained -syn keyword contextCommon setpositionstrut setprofile setrandomseed setreference setreferencedobject contained -syn keyword contextCommon setregisterentry setreplacements setrigidcolumnbalance setrigidcolumnhsize setscript contained -syn keyword contextCommon setsecondpasscharacteralign setsectionblock setsimplecolumnshsize setsmallbodyfont setsmallcaps contained -syn keyword contextCommon setstackbox setstructurepageregister setstrut setsuperiors setsystemmode contained -syn keyword contextCommon settabular settaggedmetadata settestcrlf settextcontent settightobject contained -syn keyword contextCommon settightreferencedobject settightstrut settightunreferencedobject settokenlist settrialtypesetting contained -syn keyword contextCommon setuevalue setugvalue setunreferencedobject setup setupMPgraphics contained -syn keyword contextCommon setupMPinstance setupMPpage setupMPvariables setupTABLE setupTEXpage contained -syn keyword contextCommon setupalign setupalternativestyles setuparranging setupattachment setupattachments contained -syn keyword contextCommon setupbackend setupbackground setupbackgrounds setupbar setupbars contained -syn keyword contextCommon setupblackrules setupblank setupbleeding setupblock setupbodyfont contained -syn keyword contextCommon setupbodyfontenvironment setupbookmark setupbottom setupbottomtexts setupbtx contained -syn keyword contextCommon setupbtxdataset setupbtxlabeltext setupbtxlist setupbtxregister setupbtxrendering contained -syn keyword contextCommon setupbuffer setupbutton setupcapitals setupcaption setupcaptions contained -syn keyword contextCommon setupcharacteralign setupcharacterkerning setupcharacterspacing setupchemical setupchemicalframed contained -syn keyword contextCommon setupclipping setupcollector setupcolor setupcolors setupcolumns contained -syn keyword contextCommon setupcolumnset setupcolumnsetarea setupcolumnsetareatext setupcolumnsetlines setupcolumnsetspan contained -syn keyword contextCommon setupcolumnsetstart setupcombination setupcombinedlist setupcomment setupcontent contained -syn keyword contextCommon setupcounter setupdataset setupdelimitedtext setupdescription setupdescriptions contained -syn keyword contextCommon setupdirections setupdocument setupeffect setupenumeration setupenumerations contained -syn keyword contextCommon setupenv setupexpansion setupexport setupexternalfigure setupexternalfigures contained -syn keyword contextCommon setupexternalsoundtracks setupfacingfloat setupfield setupfieldbody setupfieldcategory contained -syn keyword contextCommon setupfieldcontentframed setupfieldlabelframed setupfields setupfieldtotalframed setupfiller contained -syn keyword contextCommon setupfillinlines setupfillinrules setupfirstline setupfittingpage setupfloat contained -syn keyword contextCommon setupfloatframed setupfloats setupfloatsplitting setupfontexpansion setupfontprotrusion contained -syn keyword contextCommon setupfonts setupfontsolution setupfooter setupfootertexts setupfootnotes contained -syn keyword contextCommon setupforms setupformula setupformulae setupformulaframed setupframed contained -syn keyword contextCommon setupframedcontent setupframedtable setupframedtablecolumn setupframedtablerow setupframedtext contained -syn keyword contextCommon setupframedtexts setupglobalreferenceprefix setuphead setupheadalternative setupheader contained -syn keyword contextCommon setupheadertexts setupheadnumber setupheads setupheadtext setuphelp contained -syn keyword contextCommon setuphigh setuphighlight setuphyphenation setuphyphenmark setupindentedtext contained -syn keyword contextCommon setupindenting setupindex setupinitial setupinsertion setupinteraction contained -syn keyword contextCommon setupinteractionbar setupinteractionmenu setupinteractionscreen setupinterlinespace setupitaliccorrection contained -syn keyword contextCommon setupitemgroup setupitemizations setupitemize setupitems setuplabel contained -syn keyword contextCommon setuplabeltext setuplanguage setuplayer setuplayeredtext setuplayout contained -syn keyword contextCommon setuplayouttext setuplegend setuplinefiller setuplinefillers setuplinenote contained -syn keyword contextCommon setuplinenumbering setuplines setuplinetable setuplinewidth setuplist contained -syn keyword contextCommon setuplistalternative setuplistextra setuplocalfloats setuplocalinterlinespace setuplow contained -syn keyword contextCommon setuplowhigh setuplowmidhigh setupmakeup setupmarginblock setupmargindata contained -syn keyword contextCommon setupmarginframed setupmarginrule setupmarginrules setupmarking setupmathalignment contained -syn keyword contextCommon setupmathcases setupmathematics setupmathfence setupmathfraction setupmathfractions contained -syn keyword contextCommon setupmathframed setupmathlabeltext setupmathmatrix setupmathornament setupmathradical contained -syn keyword contextCommon setupmathstackers setupmathstyle setupmixedcolumns setupmodule setupmulticolumns contained -syn keyword contextCommon setupnarrower setupnotation setupnotations setupnote setupnotes contained -syn keyword contextCommon setupoffset setupoffsetbox setupoperatortext setupoppositeplacing setuporientation contained -syn keyword contextCommon setupoutput setupoutputroutine setuppagechecker setuppagecolumns setuppagecomment contained -syn keyword contextCommon setuppageinjection setuppageinjectionalternative setuppagenumber setuppagenumbering setuppageshift contained -syn keyword contextCommon setuppagestate setuppagetransitions setuppairedbox setuppalet setuppaper contained -syn keyword contextCommon setuppapersize setupparagraph setupparagraphintro setupparagraphnumbering setupparagraphs contained -syn keyword contextCommon setupparallel setupperiodkerning setupperiods setupplaceholder setupplacement contained -syn keyword contextCommon setuppositionbar setuppositioning setupprefixtext setupprocessor setupprofile contained -syn keyword contextCommon setupprograms setupquotation setupquote setuprealpagenumber setupreferenceformat contained -syn keyword contextCommon setupreferenceprefix setupreferencestructureprefix setupreferencing setupregister setupregisters contained -syn keyword contextCommon setuprenderingwindow setuprotate setupruby setups setupscale contained -syn keyword contextCommon setupscript setupscripts setupsectionblock setupselector setupshift contained -syn keyword contextCommon setupsidebar setupsorting setupspacing setupspellchecking setupstartstop contained -syn keyword contextCommon setupstretched setupstrut setupstyle setupsubformula setupsubformulas contained -syn keyword contextCommon setupsubpagenumber setupsuffixtext setupsymbols setupsymbolset setupsynctex contained -syn keyword contextCommon setupsynonyms setupsystem setuptables setuptabulate setuptagging contained -syn keyword contextCommon setuptaglabeltext setuptext setuptextbackground setuptextflow setuptextnote contained -syn keyword contextCommon setuptextrules setuptexttexts setupthinrules setuptolerance setuptooltip contained -syn keyword contextCommon setuptop setuptoptexts setuptype setuptyping setupunit contained -syn keyword contextCommon setupunittext setupurl setupuserdata setupuserdataalternative setupuserpagenumber contained -syn keyword contextCommon setupversion setupviewerlayer setupvspacing setupwhitespace setupwithargument contained -syn keyword contextCommon setupwithargumentswapped setupxml setupxtable setuvalue setuxvalue contained -syn keyword contextCommon setvalue setvariable setvariables setvboxregister setvisualizerfont contained -syn keyword contextCommon setvtopregister setwidthof setxmeasure setxvalue setxvariable contained -syn keyword contextCommon setxvariables seveneighths sfrac shapebox shapedhbox contained -syn keyword contextCommon sharp shift shiftbox shiftdown shiftup contained -syn keyword contextCommon showallmakeup showattributes showbodyfont showbodyfontenvironment showboxes contained -syn keyword contextCommon showbtxdatasetauthors showbtxdatasetcompleteness showbtxdatasetfields showbtxfields showbtxhashedauthors contained -syn keyword contextCommon showbtxtables showchardata showcharratio showcolor showcolorbar contained -syn keyword contextCommon showcolorcomponents showcolorgroup showcolorset showcolorstruts showcounter contained -syn keyword contextCommon showdirectives showdirsinmargin showedebuginfo showexperiments showfont contained -syn keyword contextCommon showfontdata showfontexpansion showfontitalics showfontkerns showfontparameters contained -syn keyword contextCommon showfontstrip showfontstyle showframe showglyphdata showglyphs contained -syn keyword contextCommon showgrid showgridsnapping showhelp showhyphenationtrace showhyphens contained -syn keyword contextCommon showinjector showjustification showkerning showlayout showlayoutcomponents contained -syn keyword contextCommon showligature showligatures showlogcategories showluatables showmakeup contained -syn keyword contextCommon showmargins showmessage showminimalbaseline shownextbox showotfcomposition contained -syn keyword contextCommon showpalet showparentchain showparwrapperstate showprint showsetups contained -syn keyword contextCommon showsetupsdefinition showstruts showsymbolset showtimer showtokens contained -syn keyword contextCommon showtrackers showvalue showvariable showwarning sidebar contained -syn keyword contextCommon sigma signalrightpage sim simeq simplealignedbox contained -syn keyword contextCommon simplealignedboxplus simplealignedspreadbox simplecolumns simplegroupedcommand simplereversealignedbox contained -syn keyword contextCommon simplereversealignedboxplus singalcharacteralign singlebond singleverticalbar sixperemspace contained -syn keyword contextCommon sixthofsixarguments slanted slantedbold slantedface slash contained -syn keyword contextCommon slicepages slong slovenianNumerals sloveniannumerals small contained -syn keyword contextCommon smallbodyfont smallbold smallbolditalic smallboldslanted smallcappedcharacters contained -syn keyword contextCommon smallcappedromannumerals smallcaps smaller smallitalicbold smallnormal contained -syn keyword contextCommon smallskip smallslanted smallslantedbold smalltype smash contained -syn keyword contextCommon smashbox smashboxed smashedhbox smashedvbox smile contained -syn keyword contextCommon snaptogrid softhyphen solidus someheadnumber somekindoftab contained -syn keyword contextCommon someline somelocalfloat somenamedheadnumber someplace somewhere contained -syn keyword contextCommon space spaceddigits spaceddigitsmethod spaceddigitsseparator spaceddigitssymbol contained -syn keyword contextCommon spadesuit spanishNumerals spanishnumerals specialitem speech contained -syn keyword contextCommon spformula sphericalangle splitatasterisk splitatcolon splitatcolons contained -syn keyword contextCommon splitatcomma splitatperiod splitdfrac splitfilename splitfloat contained -syn keyword contextCommon splitformula splitfrac splitoffbase splitofffull splitoffkind contained -syn keyword contextCommon splitoffname splitoffpath splitoffroot splitofftokens splitofftype contained -syn keyword contextCommon splitstring splittext spread spreadhbox sqcap contained -syn keyword contextCommon sqcup sqrt sqsubset sqsubseteq sqsubsetneq contained -syn keyword contextCommon sqsupset sqsupseteq sqsupsetneq square squaredots contained -syn keyword contextCommon ssharp stackrel stackscripts standardmakeup star contained -syn keyword contextCommon stareq startline startlinenote startregister startstructurepageregister contained -syn keyword contextCommon staticMPfigure staticMPgraphic stligature stopline stoplinenote contained -syn keyword contextCommon stretched strictdoifelsenextoptional strictdoifnextoptionalelse strictinspectnextcharacter stripcharacter contained -syn keyword contextCommon strippedcsname stripspaces structurelistuservariable structurenumber structuretitle contained -syn keyword contextCommon structureuservariable structurevariable strut strutdp strutgap contained -syn keyword contextCommon strutht struthtdp struttedbox strutwd style contained -syn keyword contextCommon styleinstance subformulas subject subjectlevel subpagenumber contained -syn keyword contextCommon subsection subsentence subset subseteq subseteqq contained -syn keyword contextCommon subsetneq subsetneqq substack substituteincommalist subsubject contained -syn keyword contextCommon subsubsection subsubsubject subsubsubsection subsubsubsubject subsubsubsubsection contained -syn keyword contextCommon subsubsubsubsubject subtractfeature succ succapprox succcurlyeq contained -syn keyword contextCommon succeq succeqq succnapprox succneq succneqq contained -syn keyword contextCommon succnsim succsim suffixlanguage suffixtext sum contained -syn keyword contextCommon supset supseteq supseteqq supsetneq supsetneqq contained -syn keyword contextCommon surd surdradical swapcounts swapdimens swapface contained -syn keyword contextCommon swapmacros swaptypeface swarrow switchstyleonly switchtobodyfont contained -syn keyword contextCommon switchtocolor switchtointerlinespace symbol symbolreference symbolset contained -syn keyword contextCommon synchronizeblank synchronizeindenting synchronizemarking synchronizeoutputstreams synchronizestrut contained -syn keyword contextCommon synchronizewhitespace synctexblockfilename synctexresetfilename synctexsetfilename systemlog contained -syn keyword contextCommon systemlogfirst systemloglast systemsetups tLeftarrow tLeftrightarrow contained -syn keyword contextCommon tRightarrow table tablehead tables tabletail contained -syn keyword contextCommon tabletext tabulate tabulateautoline tabulateautorule tabulatehead contained -syn keyword contextCommon tabulateline tabulaterule tabulatetail tagged taggedctxcommand contained -syn keyword contextCommon taggedlabeltexts taglabellanguage taglabeltext tau tbinom contained -syn keyword contextCommon tbox tcaron tcedilla tcommaaccent tcurl contained -syn keyword contextCommon tequal test testandsplitstring testcolumn testfeature contained -syn keyword contextCommon testfeatureonce testpage testpageonly testpagesync testtokens contained -syn keyword contextCommon tex texcode texdefinition texsetup text contained -syn keyword contextCommon textAngstrom textacute textampersand textasciicircum textasciitilde contained -syn keyword contextCommon textat textbackground textbackgroundmanual textbackslash textbar contained -syn keyword contextCommon textbottomcomma textbottomdot textbraceleft textbraceright textbreve contained -syn keyword contextCommon textbrokenbar textbullet textcaron textcedilla textcelsius contained -syn keyword contextCommon textcent textcircledP textcircumflex textcitation textcite contained -syn keyword contextCommon textcolor textcolorintent textcomma textcontrolspace textcurrency contained -syn keyword contextCommon textdag textddag textdegree textdiaeresis textdiv contained -syn keyword contextCommon textdollar textdong textdotaccent textellipsis texteuro contained -syn keyword contextCommon textflow textflowcollector textfraction textgrave texthash contained -syn keyword contextCommon texthorizontalbar texthungarumlaut texthyphen textkelvin textlognot contained -syn keyword contextCommon textmacron textmakeup textmath textmho textminus contained -syn keyword contextCommon textmp textmu textmultiply textnumero textogonek contained -syn keyword contextCommon textohm textormathchar textormathchars textounce textpercent contained -syn keyword contextCommon textperiod textplus textpm textreference textring contained -syn keyword contextCommon textrule textslash textsterling texttilde textunderscore contained -syn keyword contextCommon textvisiblespace textyen thai thainumerals thedatavalue contained -syn keyword contextCommon thefirstcharacter thematrix thenormalizedbodyfontsize theorientation therefore contained -syn keyword contextCommon theremainingcharacters theta thickspace thinrule thinrules contained -syn keyword contextCommon thinspace thirdoffivearguments thirdoffourarguments thirdofsixarguments thirdofthreearguments contained -syn keyword contextCommon thirdofthreeunexpanded thook thookleftarrow thookrightarrow thorn contained -syn keyword contextCommon threedigitrounding threeeighths threefifths threeperemspace threequarter contained -syn keyword contextCommon threesuperior tibetannumerals tightlayer tilde times contained -syn keyword contextCommon tinyfont title tlap tleftarrow tleftharpoondown contained -syn keyword contextCommon tleftharpoonup tleftrightarrow tleftrightharpoons tmapsto to contained -syn keyword contextCommon tochar tokenlist tokens tolinenote tooltip contained -syn keyword contextCommon top topbox topleftbox toplinebox toprightbox contained -syn keyword contextCommon topskippedbox tracecatcodetables tracedfontname tracedpagestate traceoutputroutines contained -syn keyword contextCommon tracepositions trademark translate transparencycomponents transparent[] contained -syn keyword contextCommon trel triangle triangledown triangleleft triangleq contained -syn keyword contextCommon triangleright trightarrow trightharpoondown trightharpoonup trightleftharpoons contained -syn keyword contextCommon trightoverleftarrow triplebond tripleprime tripleverticalbar truefilename contained -syn keyword contextCommon truefontname tstroke ttraggedright ttriplerel ttwoheadleftarrow contained -syn keyword contextCommon ttwoheadrightarrow turnediota twodigitrounding twofifths twoheaddownarrow contained -syn keyword contextCommon twoheadleftarrow twoheadrightarrow twoheadrightarrowtail twoheaduparrow twosuperior contained -syn keyword contextCommon twothirds tx txx typ type contained -syn keyword contextCommon typebuffer typedefinedbuffer typeface typefile typeinlinebuffer contained -syn keyword contextCommon typescript typescriptcollection typescriptone typescriptprefix typescriptthree contained -syn keyword contextCommon typescripttwo typesetbuffer typesetbufferonly typesetfile typing contained -syn keyword contextCommon uacute ubreve ucaron uchexnumber uchexnumbers contained -syn keyword contextCommon ucircumflex uconvertnumber udiaeresis udiaeresisacute udiaeresiscaron contained -syn keyword contextCommon udiaeresisgrave udiaeresismacron udotbelow udots udoublegrave contained -syn keyword contextCommon uedcatcodecommand ugrave uhook uhorn uhornacute contained -syn keyword contextCommon uhorndotbelow uhorngrave uhornhook uhorntilde uhungarumlaut contained -syn keyword contextCommon uinvertedbreve ulcorner umacron undefinevalue undepthed contained -syn keyword contextCommon underbar underbars underbartext underbrace underbracetext contained -syn keyword contextCommon underbracket underbrackettext underdash underdashes underdot contained -syn keyword contextCommon underdots underleftarrow underleftharpoondown underleftharpoonup underleftrightarrow contained -syn keyword contextCommon underparent underparenttext underrandom underrandoms underrightarrow contained -syn keyword contextCommon underrightharpoondown underrightharpoonup underset understrike understrikes contained -syn keyword contextCommon undertwoheadleftarrow undertwoheadrightarrow undoassign unexpandeddocumentvariable unframed contained -syn keyword contextCommon unhhbox unihex uniqueMPgraphic uniqueMPpagegraphic unit contained -syn keyword contextCommon unitlanguage unitshigh unitslow unittext unknown contained -syn keyword contextCommon unpacked unprotected unregisterhyphenationpattern unregisterparwrapper unspaceafter contained -syn keyword contextCommon unspaceargument unspaced unspacestring unstackscripts untexargument contained -syn keyword contextCommon untexcommand uogonek upand uparrow updasharrow contained -syn keyword contextCommon updateparagraphdemerits updateparagraphpenalties updateparagraphproperties updateparagraphshapes updownarrow contained -syn keyword contextCommon updownarrowbar updownarrows upharpoonleft upharpoonright uplus contained -syn keyword contextCommon uppercased uppercasestring uppercasing upperleftdoubleninequote upperleftdoublesixquote contained -syn keyword contextCommon upperleftsingleninequote upperleftsinglesixquote upperrightdoubleninequote upperrightdoublesixquote upperrightsingleninequote contained -syn keyword contextCommon upperrightsinglesixquote upsilon upuparrows upwhitearrow urcorner contained -syn keyword contextCommon uring url usableMPgraphic useJSscripts useMPenvironmentbuffer contained -syn keyword contextCommon useMPgraphic useMPlibrary useMPrun useMPvariables useURL contained -syn keyword contextCommon usealignparameter useblankparameter useblocks usebodyfont usebodyfontparameter contained -syn keyword contextCommon usebtxdataset usebtxdefinitions usecitation usecolors usecomponent contained -syn keyword contextCommon usedirectory usedummycolorparameter usedummystyleandcolor usedummystyleparameter useenvironment contained -syn keyword contextCommon useexternaldocument useexternalfigure useexternalrendering useexternalsoundtrack usefigurebase contained -syn keyword contextCommon usefile usefontpath usegridparameter usehyphensparameter useindentingparameter contained -syn keyword contextCommon useindentnextparameter useinterlinespaceparameter uselanguageparameter useluamodule useluatable contained -syn keyword contextCommon usemathstyleparameter usemodule useproduct useprofileparameter useproject contained -syn keyword contextCommon userdata usereferenceparameter userpagenumber usesetupsparameter usestaticMPfigure contained -syn keyword contextCommon usesubpath usesymbols usetexmodule usetypescript usetypescriptfile contained -syn keyword contextCommon useurl usezipfile usingbtxspecification utfchar utflower contained -syn keyword contextCommon utfupper utilde utilityregisterlength vDash validassignment contained -syn keyword contextCommon varTheta varepsilon varkappa varnothing varphi contained -syn keyword contextCommon varpi varrho varsigma vartheta vbox contained -syn keyword contextCommon vboxreference vboxregister vboxtohbox vboxtohboxseparator vdash contained -syn keyword contextCommon vdots vec vee veebar veeeq contained -syn keyword contextCommon verbatim verbatimstring verbosenumber version vert contained -syn keyword contextCommon verticalgrowingbar verticalpositionbar veryraggedcenter veryraggedleft veryraggedright contained -syn keyword contextCommon vglue viewerlayer vl vpackbox vpackedbox contained -syn keyword contextCommon vphantom vpos vsmash vsmashbox vsmashed contained -syn keyword contextCommon vspace vspacing vtop vtopregister wcircumflex contained -syn keyword contextCommon wdofstring wedge wedgeeq weekday whitearrowupfrombar contained -syn keyword contextCommon wideacute widebar widebreve widecheck wideddot contained -syn keyword contextCommon widedot widegrave widehat widering widetilde contained -syn keyword contextCommon widthofstring widthspanningtext withoutpt word wordright contained -syn keyword contextCommon words wordtonumber wp wr writebetweenlist contained -syn keyword contextCommon writedatatolist writestatus writetolist xLeftarrow xLeftrightarrow contained -syn keyword contextCommon xRightarrow xcell xcellgroup xcolumn xdefconvertedargument contained -syn keyword contextCommon xequal xfrac xgroup xhookleftarrow xhookrightarrow contained -syn keyword contextCommon xi xleftarrow xleftharpoondown xleftharpoonup xleftrightarrow contained -syn keyword contextCommon xleftrightharpoons xmapsto xmladdindex xmlafterdocumentsetup xmlaftersetup contained -syn keyword contextCommon xmlall xmlappenddocumentsetup xmlappendsetup xmlapplyselectors xmlatt contained -syn keyword contextCommon xmlattdef xmlattribute xmlattributedef xmlbadinclusions xmlbeforedocumentsetup contained -syn keyword contextCommon xmlbeforesetup xmlchainatt xmlchainattdef xmlchecknamespace xmlcommand contained -syn keyword contextCommon xmlconcat xmlconcatrange xmlcontext xmlcount xmldefaulttotext contained -syn keyword contextCommon xmldepth xmldirectives xmldirectivesafter xmldirectivesbefore xmldisplayverbatim contained -syn keyword contextCommon xmldoif xmldoifatt xmldoifelse xmldoifelseatt xmldoifelseempty contained -syn keyword contextCommon xmldoifelseselfempty xmldoifelsetext xmldoifelsevalue xmldoifnot xmldoifnotatt contained -syn keyword contextCommon xmldoifnotselfempty xmldoifnottext xmldoifselfempty xmldoiftext xmlelement contained -syn keyword contextCommon xmlfilter xmlfirst xmlflush xmlflushcontext xmlflushdocumentsetups contained -syn keyword contextCommon xmlflushlinewise xmlflushpure xmlflushspacewise xmlflushtext xmlinclude contained -syn keyword contextCommon xmlinclusion xmlinclusions xmlinfo xmlinjector xmlinlineprettyprint contained -syn keyword contextCommon xmlinlineprettyprinttext xmlinlineverbatim xmlinstalldirective xmllast xmllastatt contained -syn keyword contextCommon xmllastmatch xmllastpar xmlloadbuffer xmlloaddata xmlloaddirectives contained -syn keyword contextCommon xmlloadfile xmlloadonly xmlmain xmlmapvalue xmlname contained -syn keyword contextCommon xmlnamespace xmlnonspace xmlpar xmlparam xmlpath contained -syn keyword contextCommon xmlpos xmlposition xmlprependdocumentsetup xmlprependsetup xmlprettyprint contained -syn keyword contextCommon xmlprettyprinttext xmlprocessbuffer xmlprocessdata xmlprocessfile xmlpure contained -syn keyword contextCommon xmlraw xmlrefatt xmlregistereddocumentsetups xmlregisteredsetups xmlregisterns contained -syn keyword contextCommon xmlremapname xmlremapnamespace xmlremovedocumentsetup xmlremovesetup xmlresetdocumentsetups contained -syn keyword contextCommon xmlresetinjectors xmlresetsetups xmlsave xmlsetatt xmlsetattribute contained -syn keyword contextCommon xmlsetentity xmlsetfunction xmlsetinjectors xmlsetpar xmlsetparam contained -syn keyword contextCommon xmlsetsetup xmlsetup xmlsetups xmlshow xmlsnippet contained -syn keyword contextCommon xmlstrip xmlstripnolines xmlstripped xmlstrippednolines xmltag contained -syn keyword contextCommon xmltexentity xmltext xmltobuffer xmltobufferverbose xmltofile contained -syn keyword contextCommon xmlvalue xmlverbatim xrel xrightarrow xrightharpoondown contained -syn keyword contextCommon xrightharpoonup xrightleftharpoons xrightoverleftarrow xrow xrowgroup contained -syn keyword contextCommon xsplitstring xtable xtablebody xtablefoot xtablehead contained -syn keyword contextCommon xtablenext xtriplerel xtwoheadleftarrow xtwoheadrightarrow xxfrac contained -syn keyword contextCommon xypos yacute ycircumflex ydiaeresis ydotbelow contained -syn keyword contextCommon yen ygrave yhook yiddishnumerals ymacron contained -syn keyword contextCommon ytilde zacute zcaron zdotaccent zeronumberconversion contained -syn keyword contextCommon zerowidthnobreakspace zerowidthspace zeta zhook zstroke contained -syn keyword contextCommon zwj zwnj contained diff --git a/runtime/syntax/shared/context-data-metafun.vim b/runtime/syntax/shared/context-data-metafun.vim deleted file mode 100644 index 5dc32739d7..0000000000 --- a/runtime/syntax/shared/context-data-metafun.vim +++ /dev/null @@ -1,117 +0,0 @@ -vim9script - -# Vim syntax file -# Language: ConTeXt -# Automatically generated by mtx-interface (2023-12-26 16:40) - -syn keyword metafunCommands loadfile loadimage loadmodule dispose nothing -syn keyword metafunCommands transparency tolist topath tocycle sqr -syn keyword metafunCommands log ln exp inv pow -syn keyword metafunCommands pi radian tand cotd sin -syn keyword metafunCommands cos tan cot atan asin -syn keyword metafunCommands acos invsin invcos invtan acosh -syn keyword metafunCommands asinh sinh cosh tanh zmod -syn keyword metafunCommands paired tripled unitcircle fulldiamond unitdiamond -syn keyword metafunCommands fullsquare unittriangle fulltriangle unitoctagon fulloctagon -syn keyword metafunCommands unithexagon fullhexagon llcircle lrcircle urcircle -syn keyword metafunCommands ulcircle tcircle bcircle lcircle rcircle -syn keyword metafunCommands lltriangle lrtriangle urtriangle ultriangle uptriangle -syn keyword metafunCommands downtriangle lefttriangle righttriangle triangle smoothed -syn keyword metafunCommands cornered superellipsed randomized randomizedcontrols squeezed -syn keyword metafunCommands enlonged shortened punked curved unspiked -syn keyword metafunCommands simplified blownup stretched enlarged leftenlarged -syn keyword metafunCommands topenlarged rightenlarged bottomenlarged crossed laddered -syn keyword metafunCommands randomshifted interpolated perpendicular paralleled cutends -syn keyword metafunCommands peepholed llenlarged lrenlarged urenlarged ulenlarged -syn keyword metafunCommands llmoved lrmoved urmoved ulmoved rightarrow -syn keyword metafunCommands leftarrow centerarrow drawdoublearrows boundingbox innerboundingbox -syn keyword metafunCommands outerboundingbox pushboundingbox popboundingbox boundingradius boundingcircle -syn keyword metafunCommands boundingpoint crossingunder insideof outsideof bottomboundary -syn keyword metafunCommands leftboundary topboundary rightboundary xsized ysized -syn keyword metafunCommands xysized sized xyscaled intersection_point intersection_found -syn keyword metafunCommands penpoint bbwidth bbheight withshade withcircularshade -syn keyword metafunCommands withlinearshade defineshade shaded shadedinto withshadecolors -syn keyword metafunCommands withshadedomain withshademethod withshadefactor withshadevector withshadecenter -syn keyword metafunCommands withshadedirection withshaderadius withshadetransform withshadecenterone withshadecentertwo -syn keyword metafunCommands withshadestep withshadefraction withshadeorigin shownshadevector shownshadeorigin -syn keyword metafunCommands shownshadedirection shownshadecenter cmyk spotcolor multitonecolor -syn keyword metafunCommands namedcolor drawfill undrawfill inverted uncolored -syn keyword metafunCommands softened grayed greyed onlayer along -syn keyword metafunCommands graphictext loadfigure externalfigure figure register -syn keyword metafunCommands outlinetext filloutlinetext drawoutlinetext outlinetexttopath checkedbounds -syn keyword metafunCommands checkbounds strut rule withmask bitmapimage -syn keyword metafunCommands colordecimals ddecimal dddecimal ddddecimal colordecimalslist -syn keyword metafunCommands textext thetextext rawtextext textextoffset texbox -syn keyword metafunCommands thetexbox rawtexbox istextext infotext rawmadetext -syn keyword metafunCommands validtexbox onetimetextext rawfmttext thefmttext fmttext -syn keyword metafunCommands onetimefmttext notcached keepcached verbatim thelabel -syn keyword metafunCommands label autoalign transparent[] withtransparency withopacity -syn keyword metafunCommands property properties withproperties asgroup withpattern -syn keyword metafunCommands withpatternscale withpatternfloat infont space crlf -syn keyword metafunCommands dquote percent SPACE CRLF DQUOTE -syn keyword metafunCommands PERCENT grayscale greyscale withgray withgrey -syn keyword metafunCommands colorpart colorlike readfile clearxy unitvector -syn keyword metafunCommands center epsed anchored originpath infinite -syn keyword metafunCommands break xstretched ystretched snapped pathconnectors -syn keyword metafunCommands function constructedfunction constructedpath constructedpairs straightfunction -syn keyword metafunCommands straightpath straightpairs curvedfunction curvedpath curvedpairs -syn keyword metafunCommands evenly oddly condition pushcurrentpicture popcurrentpicture -syn keyword metafunCommands arrowpath resetarrows tensecircle roundedsquare colortype -syn keyword metafunCommands whitecolor blackcolor basiccolors complementary complemented -syn keyword metafunCommands resolvedcolor normalfill normaldraw visualizepaths detailpaths -syn keyword metafunCommands naturalizepaths drawboundary drawwholepath drawpathonly visualizeddraw -syn keyword metafunCommands visualizedfill detaileddraw draworigin drawboundingbox drawpath -syn keyword metafunCommands drawpoint drawpoints drawcontrolpoints drawcontrollines drawpointlabels -syn keyword metafunCommands drawlineoptions drawpointoptions drawcontroloptions drawlabeloptions draworiginoptions -syn keyword metafunCommands drawboundoptions drawpathoptions resetdrawoptions undashed pencilled -syn keyword metafunCommands decorated redecorated undecorated passvariable passarrayvariable -syn keyword metafunCommands tostring topair format formatted quotation -syn keyword metafunCommands quote startpassingvariable stoppassingvariable eofill eoclip -syn keyword metafunCommands nofill dofill fillup eofillup nodraw -syn keyword metafunCommands dodraw enfill area addbackground shadedup -syn keyword metafunCommands shadeddown shadedleft shadedright sortlist copylist -syn keyword metafunCommands shapedlist listtocurves listtolines listsize listlast -syn keyword metafunCommands uniquelist circularpath squarepath linearpath theoffset -syn keyword metafunCommands texmode systemmode texvar texstr isarray -syn keyword metafunCommands prefix dimension getmacro getdimen getcount -syn keyword metafunCommands gettoks setmacro setdimen setcount settoks -syn keyword metafunCommands setglobalmacro setglobaldimen setglobalcount setglobaltoks positionpath -syn keyword metafunCommands positioncurve positionxy positionparagraph positioncolumn positionwhd -syn keyword metafunCommands positionpage positionregion positionbox positionx positiony -syn keyword metafunCommands positionanchor positioninregion positionatanchor positioncolumnbox overlaycolumnbox -syn keyword metafunCommands positioncolumnatx getposboxes getmultipars getpospage getposparagraph -syn keyword metafunCommands getposcolumn getposregion getposx getposy getposwidth -syn keyword metafunCommands getposheight getposdepth getposleftskip getposrightskip getposhsize -syn keyword metafunCommands getposparindent getposhangindent getposhangafter getposxy getposupperleft -syn keyword metafunCommands getposlowerleft getposupperright getposlowerright getposllx getposlly -syn keyword metafunCommands getposurx getposury wdpart htpart dppart -syn keyword metafunCommands texvar texstr inpath pointof leftof -syn keyword metafunCommands rightof utfnum utflen utfsub newhash -syn keyword metafunCommands disposehash inhash tohash fromhash isarray -syn keyword metafunCommands prefix isobject comment report lua -syn keyword metafunCommands lualist mp MP luacall mirrored -syn keyword metafunCommands mirroredabout xslanted yslanted scriptindex newscriptindex -syn keyword metafunCommands newcolor newrgbcolor newcmykcolor newnumeric newboolean -syn keyword metafunCommands newtransform newpath newpicture newstring newpair -syn keyword metafunCommands mpvard mpvarn mpvars mpvar withtolerance -syn keyword metafunCommands hatched withdashes processpath pencilled sortedintersectiontimes -syn keyword metafunCommands intersectionpath firstintersectionpath secondintersectionpath intersectionsfound cutbeforefirst -syn keyword metafunCommands cutafterfirst cutbeforelast cutafterlast xnormalized ynormalized -syn keyword metafunCommands xynormalized phantom scrutinized xshifted yshifted -syn keyword metafunInternals nocolormodel greycolormodel graycolormodel rgbcolormodel cmykcolormodel -syn keyword metafunInternals shadefactor shadeoffset textextoffset textextanchor normaltransparent -syn keyword metafunInternals multiplytransparent screentransparent overlaytransparent softlighttransparent hardlighttransparent -syn keyword metafunInternals colordodgetransparent colorburntransparent darkentransparent lightentransparent differencetransparent -syn keyword metafunInternals exclusiontransparent huetransparent saturationtransparent colortransparent luminositytransparent -syn keyword metafunInternals ahvariant ahdimple ahfactor ahscale metapostversion -syn keyword metafunInternals maxdimensions drawoptionsfactor dq sq crossingscale -syn keyword metafunInternals crossingoption crossingdebug contextlmtxmode metafunversion minifunversion -syn keyword metafunInternals getparameters presetparameters hasparameter hasoption getparameter -syn keyword metafunInternals getparameterdefault getparametercount getmaxparametercount getparameterpath getparameterpen -syn keyword metafunInternals getparametertext applyparameters mergeparameters pushparameters popparameters -syn keyword metafunInternals setluaparameter definecolor record newrecord setrecord -syn keyword metafunInternals getrecord cntrecord anchorxy anchorx anchory -syn keyword metafunInternals anchorht anchordp anchorul anchorll anchorlr -syn keyword metafunInternals anchorur localanchorbox localanchorcell localanchorspan anchorbox -syn keyword metafunInternals anchorcell anchorspan matrixbox matrixcell matrixspan -syn keyword metafunInternals pensilcolor pensilstep uu diff --git a/runtime/syntax/shared/context-data-tex.vim b/runtime/syntax/shared/context-data-tex.vim deleted file mode 100644 index cd95af20d9..0000000000 --- a/runtime/syntax/shared/context-data-tex.vim +++ /dev/null @@ -1,250 +0,0 @@ -vim9script - -# Vim syntax file -# Language: ConTeXt -# Automatically generated by mtx-interface (2023-12-26 16:40) - -syn keyword texAleph Alephminorversion Alephrevision Alephversion contained -syn keyword texEtex botmarks clubpenalties currentgrouplevel currentgrouptype currentifbranch contained -syn keyword texEtex currentiflevel currentiftype currentstacksize detokenize dimexpr contained -syn keyword texEtex displaywidowpenalties everyeof firstmarks fontchardp fontcharht contained -syn keyword texEtex fontcharic fontcharwd glueexpr glueshrink glueshrinkorder contained -syn keyword texEtex gluestretch gluestretchorder gluetomu ifcsname ifdefined contained -syn keyword texEtex iffontchar interactionmode interlinepenalties lastlinefit lastnodetype contained -syn keyword texEtex marks muexpr mutoglue numexpr pagediscards contained -syn keyword texEtex parshapedimen parshapeindent parshapelength predisplaydirection protected contained -syn keyword texEtex savinghyphcodes savingvdiscards scantokens showgroups showifs contained -syn keyword texEtex showtokens splitbotmarks splitdiscards splitfirstmarks topmarks contained -syn keyword texEtex tracingassigns tracinggroups tracingifs tracingnesting unexpanded contained -syn keyword texEtex unless widowpenalties contained -syn keyword texLuatex Uabove Uabovewithdelims Uatop Uatopwithdelims Uchar contained -syn keyword texLuatex Udelcode Udelimited Udelimiter Udelimiterover Udelimiterunder contained -syn keyword texLuatex Uhextensible Uleft Umathaccent Umathaccentbasedepth Umathaccentbaseheight contained -syn keyword texLuatex Umathaccentbottomovershoot Umathaccentbottomshiftdown Umathaccentextendmargin Umathaccentsuperscriptdrop Umathaccentsuperscriptpercent contained -syn keyword texLuatex Umathaccenttopovershoot Umathaccenttopshiftup Umathaccentvariant Umathadapttoleft Umathadapttoright contained -syn keyword texLuatex Umathaxis Umathbottomaccentvariant Umathchar Umathcharclass Umathchardef contained -syn keyword texLuatex Umathcharfam Umathcharslot Umathclass Umathcode Umathconnectoroverlapmin contained -syn keyword texLuatex Umathdegreevariant Umathdelimiterextendmargin Umathdelimiterovervariant Umathdelimiterpercent Umathdelimitershortfall contained -syn keyword texLuatex Umathdelimiterundervariant Umathdenominatorvariant Umathdict Umathdictdef Umathdiscretionary contained -syn keyword texLuatex Umathextrasubpreshift Umathextrasubprespace Umathextrasubshift Umathextrasubspace Umathextrasuppreshift contained -syn keyword texLuatex Umathextrasupprespace Umathextrasupshift Umathextrasupspace Umathflattenedaccentbasedepth Umathflattenedaccentbaseheight contained -syn keyword texLuatex Umathflattenedaccentbottomshiftdown Umathflattenedaccenttopshiftup Umathfractiondelsize Umathfractiondenomdown Umathfractiondenomvgap contained -syn keyword texLuatex Umathfractionnumup Umathfractionnumvgap Umathfractionrule Umathfractionvariant Umathhextensiblevariant contained -syn keyword texLuatex Umathlimitabovebgap Umathlimitabovekern Umathlimitabovevgap Umathlimitbelowbgap Umathlimitbelowkern contained -syn keyword texLuatex Umathlimitbelowvgap Umathlimits Umathnoaxis Umathnolimits Umathnolimitsubfactor contained -syn keyword texLuatex Umathnolimitsupfactor Umathnumeratorvariant Umathopenupdepth Umathopenupheight Umathoperatorsize contained -syn keyword texLuatex Umathoverbarkern Umathoverbarrule Umathoverbarvgap Umathoverdelimiterbgap Umathoverdelimitervariant contained -syn keyword texLuatex Umathoverdelimitervgap Umathoverlayaccentvariant Umathoverlinevariant Umathphantom Umathpresubshiftdistance contained -syn keyword texLuatex Umathpresupshiftdistance Umathprimeraise Umathprimeraisecomposed Umathprimeshiftdrop Umathprimeshiftup contained -syn keyword texLuatex Umathprimespaceafter Umathprimevariant Umathprimewidth Umathquad Umathradicaldegreeafter contained -syn keyword texLuatex Umathradicaldegreebefore Umathradicaldegreeraise Umathradicalextensibleafter Umathradicalextensiblebefore Umathradicalkern contained -syn keyword texLuatex Umathradicalrule Umathradicalvariant Umathradicalvgap Umathruledepth Umathruleheight contained -syn keyword texLuatex Umathskeweddelimitertolerance Umathskewedfractionhgap Umathskewedfractionvgap Umathsource Umathspaceafterscript contained -syn keyword texLuatex Umathspacebeforescript Umathstackdenomdown Umathstacknumup Umathstackvariant Umathstackvgap contained -syn keyword texLuatex Umathsubscriptvariant Umathsubshiftdistance Umathsubshiftdown Umathsubshiftdrop Umathsubsupshiftdown contained -syn keyword texLuatex Umathsubsupvgap Umathsubtopmax Umathsupbottommin Umathsuperscriptvariant Umathsupshiftdistance contained -syn keyword texLuatex Umathsupshiftdrop Umathsupshiftup Umathsupsubbottommax Umathtopaccentvariant Umathunderbarkern contained -syn keyword texLuatex Umathunderbarrule Umathunderbarvgap Umathunderdelimiterbgap Umathunderdelimitervariant Umathunderdelimitervgap contained -syn keyword texLuatex Umathunderlinevariant Umathuseaxis Umathvextensiblevariant Umathvoid Umathxscale contained -syn keyword texLuatex Umathyscale Umiddle Unosubprescript Unosubscript Unosuperprescript contained -syn keyword texLuatex Unosuperscript Uoperator Uover Uoverdelimiter Uoverwithdelims contained -syn keyword texLuatex Uprimescript Uradical Uright Uroot Urooted contained -syn keyword texLuatex Ushiftedsubprescript Ushiftedsubscript Ushiftedsuperprescript Ushiftedsuperscript Uskewed 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 Uunderdelimiter Uvextensible additionalpageskip adjustspacing adjustspacingshrink contained -syn keyword texLuatex adjustspacingstep adjustspacingstretch advanceby afterassigned aftergrouped contained -syn keyword texLuatex aliased aligncontent alignmark alignmentcellsource alignmentwrapsource contained -syn keyword texLuatex aligntab allcrampedstyles alldisplaystyles allmainstyles allmathstyles contained -syn keyword texLuatex allscriptscriptstyles allscriptstyles allsplitstyles alltextstyles alluncrampedstyles contained -syn keyword texLuatex allunsplitstyles amcode associateunit atendoffile atendoffiled contained -syn keyword texLuatex atendofgroup atendofgrouped attribute attributedef automaticdiscretionary contained -syn keyword texLuatex automatichyphenpenalty automigrationmode autoparagraphmode begincsname beginlocalcontrol contained -syn keyword texLuatex beginmathgroup beginsimplegroup boundary boxadapt boxanchor contained -syn keyword texLuatex boxanchors boxattribute boxdirection boxfreeze boxgeometry contained -syn keyword texLuatex boxlimitate boxorientation boxrepack boxshift boxshrink contained -syn keyword texLuatex boxsource boxstretch boxtarget boxtotal boxvadjust contained -syn keyword texLuatex boxxmove boxxoffset boxymove boxyoffset catcodetable contained -syn keyword texLuatex cdef cdefcsname cfcode clearmarks constant contained -syn keyword texLuatex constrained copymathatomrule copymathparent copymathspacing crampeddisplaystyle contained -syn keyword texLuatex crampedscriptscriptstyle crampedscriptstyle crampedtextstyle csactive csstring contained -syn keyword texLuatex currentloopiterator currentloopnesting currentmarks dbox defcsname contained -syn keyword texLuatex deferred detokened detokenized dimensiondef dimexpression contained -syn keyword texLuatex directlua discretionaryoptions divideby dpack dsplit contained -syn keyword texLuatex edefcsname edivide edivideby efcode emergencyleftskip contained -syn keyword texLuatex emergencyrightskip endlocalcontrol endmathgroup endsimplegroup enforced contained -syn keyword texLuatex etoks etoksapp etokspre eufactor everybeforepar contained -syn keyword texLuatex everymathatom everytab exceptionpenalty expand expandactive contained -syn keyword texLuatex expandafterpars expandafterspaces expandcstoken expanded expandedafter contained -syn keyword texLuatex expandeddetokenize expandedendless expandedloop expandedrepeat expandparameter contained -syn keyword texLuatex expandtoken expandtoks explicitdiscretionary explicithyphenpenalty firstvalidlanguage contained -syn keyword texLuatex float floatdef floatexpr flushmarks fontcharba contained -syn keyword texLuatex fontcharta fontid fontmathcontrol fontspecdef fontspecid contained -syn keyword texLuatex fontspecifiedname fontspecifiedsize fontspecscale fontspecxscale fontspecyscale contained -syn keyword texLuatex fonttextcontrol formatname frozen futurecsname futuredef contained -syn keyword texLuatex futureexpand futureexpandis futureexpandisap gdefcsname gleaders contained -syn keyword texLuatex glet gletcsname glettonothing gluespecdef glyph contained -syn keyword texLuatex glyphdatafield glyphoptions glyphscale glyphscriptfield glyphscriptscale contained -syn keyword texLuatex glyphscriptscriptscale glyphstatefield glyphtextscale glyphxoffset glyphxscale contained -syn keyword texLuatex glyphxscaled glyphyoffset glyphyscale glyphyscaled gtoksapp contained -syn keyword texLuatex gtokspre hccode hjcode hmcode holdingmigrations contained -syn keyword texLuatex hpack hpenalty hyphenationmin hyphenationmode ifabsdim contained -syn keyword texLuatex ifabsfloat ifabsnum ifarguments ifboolean ifchkdim contained -syn keyword texLuatex ifchkdimension ifchknum ifchknumber ifcmpdim ifcmpnum contained -syn keyword texLuatex ifcondition ifcstok ifdimexpression ifdimval ifempty contained -syn keyword texLuatex ifflags iffloat ifhaschar ifhastok ifhastoks contained -syn keyword texLuatex ifhasxtoks ifinalignment ifincsname ifinsert ifintervaldim contained -syn keyword texLuatex ifintervalfloat ifintervalnum ifmathparameter ifmathstyle ifnumexpression contained -syn keyword texLuatex ifnumval ifparameter ifparameters ifrelax iftok contained -syn keyword texLuatex ifzerodim ifzerofloat ifzeronum ignorearguments ignoredepthcriterion 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 luatexbanner luatexrevision luatexversion mathatom mathatomglue contained -syn keyword texLuatex mathatomskip mathbackwardpenalties mathbeginclass mathboundary mathcheckfencesmode contained -syn keyword texLuatex mathdictgroup mathdictproperties mathdirection mathdisplaymode mathdisplaypenaltyfactor contained -syn keyword texLuatex mathdisplayskipmode mathdoublescriptmode mathendclass matheqnogapstep mathfontcontrol contained -syn keyword texLuatex mathforwardpenalties mathgluemode mathgroupingmode mathinlinepenaltyfactor mathleftclass contained -syn keyword texLuatex mathlimitsmode mathmainstyle mathnolimitsmode mathpenaltiesmode mathpretolerance contained -syn keyword texLuatex mathrightclass mathrulesfam mathrulesmode mathscale mathscriptsmode contained -syn keyword texLuatex mathslackmode mathspacingmode mathstackstyle mathstyle mathstylefontid contained -syn keyword texLuatex mathsurroundmode mathsurroundskip maththreshold mathtolerance meaningasis contained -syn keyword texLuatex meaningful meaningfull meaningles meaningless mugluespecdef contained -syn keyword texLuatex multiplyby mutable nestedloopiterator noaligned noatomruling contained -syn keyword texLuatex noboundary nohrule norelax normalizelinemode normalizeparmode contained -syn keyword texLuatex nospaces novrule numericscale numericscaled numexpression contained -syn keyword texLuatex optionalboundary orelse orphanpenalties orphanpenalty orunless contained -syn keyword texLuatex outputbox overloaded overloadmode overshoot pageboundary contained -syn keyword texLuatex pagedepth pageexcess pageextragoal pagefistretch pagelastdepth contained -syn keyword texLuatex pagelastfilllstretch pagelastfillstretch pagelastfilstretch pagelastheight pagelastshrink contained -syn keyword texLuatex pagelaststretch pagevsize parametercount parameterdef parameterindex contained -syn keyword texLuatex parametermark parametermode parattribute pardirection parfillleftskip contained -syn keyword texLuatex parfillrightskip parinitleftskip parinitrightskip parpasses permanent contained -syn keyword texLuatex pettymuskip positdef postexhyphenchar posthyphenchar postinlinepenalty contained -syn keyword texLuatex postshortinlinepenalty prebinoppenalty predisplaygapfactor preexhyphenchar prehyphenchar contained -syn keyword texLuatex preinlinepenalty prerelpenalty preshortinlinepenalty previousloopiterator protecteddetokenize contained -syn keyword texLuatex protectedexpandeddetokenize protrudechars protrusionboundary pxdimen quitloop contained -syn keyword texLuatex quitloopnow quitvmode rdivide rdivideby resetmathspacing contained -syn keyword texLuatex retained retokenized rightmarginkern rpcode savecatcodetable contained -syn keyword texLuatex scaledemwidth scaledexheight scaledextraspace scaledfontcharba scaledfontchardp contained -syn keyword texLuatex scaledfontcharht scaledfontcharic scaledfontcharta scaledfontcharwd scaledfontdimen contained -syn keyword texLuatex scaledinterwordshrink scaledinterwordspace scaledinterwordstretch scaledmathstyle scaledslantperpoint contained -syn keyword texLuatex scantextokens semiexpand semiexpanded semiprotected setdefaultmathcodes contained -syn keyword texLuatex setfontid setmathatomrule setmathdisplaypostpenalty setmathdisplayprepenalty setmathignore 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 texOmega Omegaminorversion Omegarevision Omegaversion contained -syn keyword texPdftex ifpdfabsdim ifpdfabsnum ifpdfprimitive pdfadjustspacing pdfannot contained -syn keyword texPdftex pdfcatalog pdfcolorstack pdfcolorstackinit pdfcompresslevel pdfcopyfont contained -syn keyword texPdftex pdfcreationdate pdfdecimaldigits pdfdest pdfdestmargin pdfdraftmode contained -syn keyword texPdftex pdfeachlinedepth pdfeachlineheight pdfendlink pdfendthread pdffirstlineheight contained -syn keyword texPdftex pdffontattr pdffontexpand pdffontname pdffontobjnum pdffontsize contained -syn keyword texPdftex pdfgamma pdfgentounicode pdfglyphtounicode pdfhorigin pdfignoreddimen contained -syn keyword texPdftex pdfignoreunknownimages pdfimageaddfilename pdfimageapplygamma pdfimagegamma pdfimagehicolor contained -syn keyword texPdftex pdfimageresolution pdfincludechars pdfinclusioncopyfonts pdfinclusionerrorlevel pdfinfo contained -syn keyword texPdftex pdfinfoomitdate pdfinsertht pdflastannot pdflastlinedepth pdflastlink contained -syn keyword texPdftex pdflastobj pdflastxform pdflastximage pdflastximagepages pdflastxpos contained -syn keyword texPdftex pdflastypos pdflinkmargin pdfliteral pdfmajorversion pdfmapfile contained -syn keyword texPdftex pdfmapline pdfminorversion pdfnames pdfnoligatures pdfnormaldeviate contained -syn keyword texPdftex pdfobj pdfobjcompresslevel pdfomitcharset pdfomitcidset pdfomitinfodict contained -syn keyword texPdftex pdfoutline pdfoutput pdfpageattr pdfpagebox pdfpageheight contained -syn keyword texPdftex pdfpageref pdfpageresources pdfpagesattr pdfpagewidth pdfpkfixeddpi contained -syn keyword texPdftex pdfpkmode pdfpkresolution pdfprimitive pdfprotrudechars pdfpxdimen contained -syn keyword texPdftex pdfrandomseed pdfrecompress pdfrefobj pdfrefxform pdfrefximage contained -syn keyword texPdftex pdfreplacefont pdfrestore pdfretval pdfsave pdfsavepos contained -syn keyword texPdftex pdfsetmatrix pdfsetrandomseed pdfstartlink pdfstartthread pdfsuppressoptionalinfo contained -syn keyword texPdftex pdfsuppressptexinfo pdftexbanner pdftexrevision pdftexversion pdfthread contained -syn keyword texPdftex pdfthreadmargin pdftracingfonts pdftrailer pdftrailerid pdfuniformdeviate contained -syn keyword texPdftex pdfuniqueresname pdfvorigin pdfxform pdfxformattr pdfxformmargin contained -syn keyword texPdftex pdfxformname pdfxformresources pdfximage contained -syn keyword texTex - / above abovedisplayshortskip contained -syn keyword texTex abovedisplayskip abovewithdelims accent adjdemerits advance contained -syn keyword texTex afterassignment aftergroup atop atopwithdelims badness contained -syn keyword texTex baselineskip batchmode begingroup belowdisplayshortskip belowdisplayskip contained -syn keyword texTex binoppenalty botmark box boxmaxdepth brokenpenalty contained -syn keyword texTex catcode char chardef cleaders clubpenalty contained -syn keyword texTex copy count countdef cr crcr contained -syn keyword texTex csname day deadcycles def defaulthyphenchar contained -syn keyword texTex defaultskewchar delcode delimiter delimiterfactor delimitershortfall contained -syn keyword texTex dimen dimendef discretionary displayindent displaylimits contained -syn keyword texTex displaystyle displaywidowpenalty displaywidth divide doubleadjdemerits contained -syn keyword texTex doublehyphendemerits dp dump edef else contained -syn keyword texTex emergencyextrastretch emergencystretch end endcsname endgroup contained -syn keyword texTex endinput endlinechar eofinput eqno errhelp contained -syn keyword texTex errmessage errorcontextlines errorstopmode escapechar everycr contained -syn keyword texTex everydisplay everyhbox everyjob everymath everypar contained -syn keyword texTex everyvbox exhyphenchar exhyphenpenalty expandafter fam contained -syn keyword texTex fi finalhyphendemerits firstmark floatingpenalty font contained -syn keyword texTex fontdimen fontname futurelet gdef global contained -syn keyword texTex globaldefs halign hangafter hangindent hbadness contained -syn keyword texTex hbox hfil hfill hfilneg hfuzz contained -syn keyword texTex hkern holdinginserts hrule hsize hskip contained -syn keyword texTex hss ht hyphenation hyphenchar hyphenpenalty contained -syn keyword texTex if ifcase ifcat ifdim iffalse contained -syn keyword texTex ifhbox ifhmode ifinner ifmmode ifnum contained -syn keyword texTex ifodd iftrue ifvbox ifvmode ifvoid contained -syn keyword texTex ifx ignorespaces indent input inputlineno contained -syn keyword texTex insert insertpenalties interlinepenalty jobname kern contained -syn keyword texTex language lastbox lastkern lastpenalty lastskip contained -syn keyword texTex lccode leaders left lefthyphenmin leftskip contained -syn keyword texTex leqno let limits linepenalty lineskip contained -syn keyword texTex lineskiplimit long looseness lower lowercase contained -syn keyword texTex mark mathaccent mathbin mathchar mathchardef contained -syn keyword texTex mathchoice mathclose mathcode mathinner mathop contained -syn keyword texTex mathopen mathord mathpunct mathrel mathsurround contained -syn keyword texTex maxdeadcycles maxdepth meaning medmuskip message contained -syn keyword texTex middle mkern month moveleft moveright contained -syn keyword texTex mskip multiply muskip muskipdef newlinechar contained -syn keyword texTex noalign noexpand noindent nolimits nonscript contained -syn keyword texTex nonstopmode nulldelimiterspace nullfont number omit contained -syn keyword texTex or outer output outputpenalty over contained -syn keyword texTex overfullrule overline overwithdelims pagefilllstretch pagefillstretch contained -syn keyword texTex pagefilstretch pagegoal pageshrink pagestretch pagetotal contained -syn keyword texTex par parfillskip parindent parshape parskip contained -syn keyword texTex patterns pausing penalty postdisplaypenalty predisplaypenalty contained -syn keyword texTex predisplaysize pretolerance prevdepth prevgraf radical contained -syn keyword texTex raise relax relpenalty right righthyphenmin contained -syn keyword texTex rightskip romannumeral scriptfont scriptscriptfont scriptscriptstyle contained -syn keyword texTex scriptspace scriptstyle scrollmode setbox setlanguage contained -syn keyword texTex sfcode shipout show showbox showboxbreadth contained -syn keyword texTex showboxdepth showlists shownodedetails showthe skewchar contained -syn keyword texTex skip skipdef spacefactor spaceskip span contained -syn keyword texTex splitbotmark splitfirstmark splitmaxdepth splittopskip string contained -syn keyword texTex tabskip textfont textstyle the thickmuskip contained -syn keyword texTex thinmuskip time toks toksdef tolerance contained -syn keyword texTex topmark topskip tracingcommands tracinglostchars tracingmacros contained -syn keyword texTex tracingonline tracingoutput tracingpages tracingparagraphs tracingrestores contained -syn keyword texTex tracingstats uccode uchyph unboundary underline contained -syn keyword texTex unhbox unhcopy unkern unpenalty unskip contained -syn keyword texTex unvbox unvcopy uppercase vadjust valign contained -syn keyword texTex vbadness vbox vcenter vfil vfill contained -syn keyword texTex vfilneg vfuzz vkern vrule vsize contained -syn keyword texTex vskip vsplit vss vtop wd contained -syn keyword texTex widowpenalty xdef xleaders xspaceskip year contained -syn keyword texXetex XeTeXversion contained