2016-02-09 10:52:18 +01:00
|
|
|
# https://www.latex-project.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global BufCreate .*\.tex %{
|
|
|
|
set buffer filetype latex
|
|
|
|
}
|
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group / regions -default content latex \
|
2016-11-19 16:01:07 +01:00
|
|
|
comment '(?<!\\)%' '\n' ''
|
2016-02-09 10:52:18 +01:00
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /latex/comment fill comment
|
2016-02-09 10:52:18 +01:00
|
|
|
# Scopes, starting with a backslash
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /latex/content regex '\\(?!_)\w+\b' 0:keyword
|
2016-02-09 10:52:18 +01:00
|
|
|
# Options passed to scopes, between brackets
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /latex/content regex '\\(?!_)\w+\b\[([^]]+)\]' 1:value
|
2016-02-09 10:52:18 +01:00
|
|
|
# Content between dollar signs/pairs
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /latex/content regex '(?<!\\)\$\$?([^$]|(?<=\\)\$)+\$\$?' 0:magenta
|
2016-02-09 10:52:18 +01:00
|
|
|
# Emphasized text
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /latex/content regex '\\(emph|textit)\{([^}]+)\}' 2:default+i
|
2016-02-09 10:52:18 +01:00
|
|
|
# Bold text
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /latex/content regex '\\textbf\{([^}]+)\}' 1:default+b
|
2016-02-09 10:52:18 +01:00
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group latex-highlight global WinSetOption filetype=latex %{ add-highlighter ref latex }
|
2016-02-09 10:52:18 +01:00
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group latex-highlight global WinSetOption filetype=(?!latex).* %{ remove-highlighter latex }
|