2016-02-09 10:52:18 +01:00
|
|
|
# https://www.latex-project.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2019-09-05 10:19:39 +02:00
|
|
|
hook global BufCreate .*\.(tex|cls|sty|dtx) %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype latex
|
2016-02-09 10:52:18 +01:00
|
|
|
}
|
|
|
|
|
2019-04-10 05:54:19 +02:00
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2019-05-31 17:27:36 +02:00
|
|
|
hook global WinSetOption filetype=latex %(
|
2019-03-13 22:00:59 +01:00
|
|
|
require-module latex
|
2019-05-31 17:27:36 +02:00
|
|
|
|
2023-02-24 08:41:16 +01:00
|
|
|
hook window InsertChar \n -group latex-insert %{ latex-insert-on-newline }
|
2019-05-31 17:27:36 +02:00
|
|
|
hook window InsertChar \n -group latex-indent %{ latex-indent-newline }
|
|
|
|
hook window InsertChar \} -group latex-indent %{ latex-indent-closing-brace }
|
2019-10-16 11:19:43 +02:00
|
|
|
hook window ModeChange pop:insert:.* -group latex-indent %{ latex-trim-indent }
|
2021-09-12 22:31:12 +02:00
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-hooks window latex-indent }
|
2020-09-05 15:49:50 +02:00
|
|
|
hook window InsertChar \n -group latex-insert latex-insert-on-new-line
|
2019-05-31 17:27:36 +02:00
|
|
|
)
|
2019-03-13 22:00:59 +01:00
|
|
|
|
2019-04-10 05:54:19 +02:00
|
|
|
hook -group latex-highlight global WinSetOption filetype=latex %{
|
|
|
|
add-highlighter window/latex ref latex
|
|
|
|
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/latex }
|
|
|
|
}
|
|
|
|
|
2019-05-31 17:27:36 +02:00
|
|
|
provide-module latex %~
|
2019-03-13 22:00:59 +01:00
|
|
|
|
2016-02-09 10:52:18 +01:00
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/latex regions
|
|
|
|
add-highlighter shared/latex/content default-region group
|
2022-06-30 14:00:45 +02:00
|
|
|
# Region for control sequence (includes latex2e arguments and options)
|
|
|
|
# starting with unescaped \ and ending :
|
|
|
|
# - at eol, or
|
|
|
|
# - at word boundaries not preceded nor followed by @ : \ { } [ ] *, or
|
|
|
|
# - after an unescaped }
|
2022-06-28 17:04:35 +02:00
|
|
|
add-highlighter shared/latex/cs region '(?<!\\)(?:\\\\)*\K\\[@\w]' '/\n|(?<![@:\\{}\[\]*])(?![@:\\{}\[\]*])\b|(?<!\\)(?:\\\\)*\K\}\K' group
|
2022-06-26 09:50:09 +02:00
|
|
|
add-highlighter shared/latex/comment region '(?<!\\)(?:\\\\)*\K%' '\n' fill comment
|
2016-02-09 10:52:18 +01:00
|
|
|
|
2022-06-27 08:55:09 +02:00
|
|
|
# Document and LaTeX2e control sequence
|
2022-06-26 21:40:56 +02:00
|
|
|
add-highlighter shared/latex/cs/ regex '(?:\\[a-zA-Z@]+)' 0:keyword
|
2022-06-27 08:55:09 +02:00
|
|
|
## Options passed to LaTeX2e control sequences, between brackets
|
2022-06-26 21:40:56 +02:00
|
|
|
add-highlighter shared/latex/cs/ regex '\\[a-zA-Z@]+\b\[([^\]]+)\]' 1:value
|
|
|
|
## Emphasized text
|
|
|
|
add-highlighter shared/latex/cs/ regex '\\(?:emph|textit|textsl)\{([^}]+)\}' 1:default+i
|
|
|
|
## Underlined text
|
|
|
|
add-highlighter shared/latex/cs/ regex '\\underline\{([^}]+)\}' 1:default+u
|
|
|
|
## Bold text
|
|
|
|
add-highlighter shared/latex/cs/ regex '\\textbf\{([^}]+)\}' 1:default+b
|
|
|
|
## Section headings
|
|
|
|
add-highlighter shared/latex/cs/ regex '\\(part|section)\*?\{([^}]+)\}' 2:title
|
|
|
|
add-highlighter shared/latex/cs/ regex '\\(chapter|(sub)+section|(sub)*paragraph)\*?\{([^}]+)\}' 4:header
|
|
|
|
|
|
|
|
# LaTeX3 control sequence
|
|
|
|
## Functions (expl3 doc) module_name:arguments_types.
|
|
|
|
add-highlighter shared/latex/cs/ regex '\\(?:__|@@_)?[a-zA-Z@]+_\w+(:[nNpTFDwcVvxefo]+)?' 0:function 1:+db@type
|
|
|
|
## Variables (expl3 doc): scope_name_type
|
2022-06-28 17:04:35 +02:00
|
|
|
add-highlighter shared/latex/cs/ regex '\\([lgc]_)[a-zA-Z@]+_\w+' 0:variable 1:+db
|
2022-06-26 21:40:56 +02:00
|
|
|
## l3kernel modules (l3kernel/doc/l3prefixes.csv)
|
|
|
|
add-highlighter shared/latex/cs/ regex '\\(alignment|alloc|ampersand|atsign|backslash|bitset|bool|box|catcode|cctab|char|chk|circumflex|clist|code|codedoc|coffin|colon|color|cs|debug|dim|document|dollar|driver|e|else|empty|etex|exp|expl|false|fi|file|flag|fp|group|hash|hbox|hcoffin|if|inf|initex|insert|int|intarray|ior|iow|job|kernel|keys|keyval|left|log|lua|luatex|mark|marks|math|max|minus|mode|msg|muskip|nan|nil|no|novalue|one|or|other|parameter|pdf|pdftex|peek|percent|pi|prg|prop|ptex|quark|recursion|ref|regex|reverse|right|scan|seq|skip|sort|space|stop|str|sys|tag|term|tex|text|tilde|tl|tmpa|tmpb|token|true|underscore|uptex|use|utex|vbox|vcoffin|xetex|zero)_' 0:+db
|
|
|
|
# LaTeX3 types (expl3 doc)
|
|
|
|
add-highlighter shared/latex/cs/ regex '_(bool|box|cctab|clist|coffin|dim|fp|ior|iow|int|muskip|prop|seq|skip|str|tl)\b' 0:+db
|
2016-02-09 10:52:18 +01:00
|
|
|
|
2022-06-26 21:40:56 +02:00
|
|
|
# This belongs to content group as the LaTeX3 convention is separating macros names, args and options
|
|
|
|
# with spaces and thus should not be catched by the cs region
|
|
|
|
## macros arguments
|
|
|
|
add-highlighter shared/latex/content/ regex '(?<!\\)(?:\\\\)*\K#+[1-9]' 0:string
|
2022-06-27 08:55:09 +02:00
|
|
|
## group containing words and numbers (list separated by ; , / or spaces)
|
|
|
|
add-highlighter shared/latex/content/ regex '(?<!\\)(?:\\\\)*\K\{([\s/;,.\w\d]+)\}' 1:string
|
2022-06-26 21:40:56 +02:00
|
|
|
|
|
|
|
# Math mode between dollar signs/pairs
|
2022-06-26 21:55:01 +02:00
|
|
|
add-highlighter shared/latex/content/ regex '((?<!\\)(?:\\\\)*\K\$(\\\$|[^$])+\$)|((?<!\\)(?:\\\\)*\K\$\$(\\\$|[^$])+\$\$)|((?<!\\)(?:\\\\)*\K\\\[.*?\\\])|(\\\(.*?\\\))' 0:meta
|
2019-05-31 17:27:36 +02:00
|
|
|
|
|
|
|
# Indent
|
|
|
|
# ------
|
|
|
|
|
|
|
|
define-command -hidden latex-trim-indent %{
|
|
|
|
evaluate-commands -no-hooks -draft -itersel %{
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys x 1s^(\h+)$<ret> d }
|
2019-05-31 17:27:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-24 08:41:16 +01:00
|
|
|
define-command -hidden latex-insert-on-newline %{
|
|
|
|
# copy '%' comment prefix and following white spaces
|
|
|
|
try %{ execute-keys -draft kx s^\h*%\h*<ret> y jgh P }
|
|
|
|
}
|
|
|
|
|
2019-05-31 17:27:36 +02:00
|
|
|
define-command -hidden latex-indent-newline %(
|
|
|
|
evaluate-commands -no-hooks -draft -itersel %(
|
|
|
|
# preserve previous line indent
|
|
|
|
try %{ execute-keys -draft K<a-&> }
|
|
|
|
# cleanup trailing whitespaces from previous line
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft kx s\h+$<ret> d }
|
2019-05-31 17:27:36 +02:00
|
|
|
# indent after line ending with {
|
2022-03-16 23:20:07 +01:00
|
|
|
try %( execute-keys -draft kx <a-k>\{$<ret> j<a-gt> )
|
2020-07-28 05:43:07 +02:00
|
|
|
# deindent closing brace(s) when after cursor
|
2022-03-16 23:20:07 +01:00
|
|
|
try %( execute-keys -draft x <a-k> ^\h*\} <ret> gh / \} <ret> m <a-S> 1<a-&> )
|
2019-05-31 17:27:36 +02:00
|
|
|
# indent after line ending with \begin{...}[...]{...}, with multiple
|
|
|
|
# sets of arguments possible
|
|
|
|
try %(
|
|
|
|
execute-keys -draft \
|
2022-03-16 23:20:07 +01:00
|
|
|
kx \
|
2019-05-31 17:27:36 +02:00
|
|
|
<a-k>\\begin\h*\{[^\}]+\}(\h|\[.*\]|\{.*\})*$<ret> \
|
|
|
|
j<a-gt>
|
|
|
|
)
|
|
|
|
)
|
2019-03-13 22:00:59 +01:00
|
|
|
)
|
2019-05-31 17:27:36 +02:00
|
|
|
|
|
|
|
define-command -hidden latex-indent-closing-brace %(
|
|
|
|
evaluate-commands -no-hooks -draft -itersel %(
|
|
|
|
# Align lone } with matching bracket
|
2022-03-16 23:20:07 +01:00
|
|
|
try %( execute-keys -draft x_ <a-k>\A\}\z<ret> m<a-S>1<a-&> )
|
2019-05-31 17:27:36 +02:00
|
|
|
# Align \end{...} with corresponding \begin{...}
|
|
|
|
try %(
|
|
|
|
execute-keys -draft h<a-h> 1s\\end\h*\{([^\}]+)\}\z<ret> \
|
|
|
|
<a-?>\\begin\s*\{<c-r>.\}<ret> <a-S>1<a-&>
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2020-09-05 15:49:50 +02:00
|
|
|
define-command -hidden latex-insert-on-new-line %(
|
|
|
|
evaluate-commands -no-hooks -draft -itersel %(
|
|
|
|
# Wisely add "\end{...}".
|
|
|
|
evaluate-commands -save-regs xz %(
|
|
|
|
# Save previous line indent in register x.
|
2022-03-16 23:20:07 +01:00
|
|
|
try %( execute-keys -draft kxs^\h+<ret>"xy ) catch %( reg x '' )
|
2020-09-05 15:49:50 +02:00
|
|
|
# Save item of begin in register z.
|
2022-03-16 23:20:07 +01:00
|
|
|
try %( execute-keys -draft kxs\{.*\}<ret>"zy ) catch %( reg z '' )
|
2020-09-05 15:49:50 +02:00
|
|
|
try %(
|
|
|
|
# Validate previous line and that it is not closed yet.
|
2022-03-16 23:20:07 +01:00
|
|
|
execute-keys -draft kx <a-k>^<c-r>x\h*\\begin\{.*\}<ret> J}iJx <a-K>^<c-r>x(\\end\<c-r>z<backspace>\})<ret>
|
2020-09-05 15:49:50 +02:00
|
|
|
# Auto insert "\end{...}".
|
|
|
|
execute-keys -draft o<c-r>x\end<c-r>z<esc>
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2019-05-31 17:27:36 +02:00
|
|
|
~
|