kakoune/rc/extra/latex.kak

35 lines
1.2 KiB
Plaintext
Raw Normal View History

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