kakoune/rc/base/html.kak

80 lines
2.4 KiB
Plaintext
Raw Normal View History

2014-07-14 22:58:40 +02:00
# http://w3.org/html
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
# Detection
# ‾‾‾‾‾‾‾‾‾
hook global BufCreate .*\.html %{
2014-07-14 22:58:40 +02:00
set buffer filetype html
}
hook global BufCreate .*\.xml %{
set buffer filetype xml
2014-07-14 22:58:40 +02:00
}
# Highlighters
# ‾‾‾‾‾‾‾‾‾‾‾‾
2017-01-04 01:07:45 +01:00
add-highlighter -group / regions html \
2014-07-14 22:58:40 +02:00
comment <!-- --> '' \
tag < > '' \
style <style\b.*?>\K (?=</style>) '' \
script <script\b.*?>\K (?=</script>) ''
2014-07-14 22:58:40 +02:00
2017-01-04 01:07:45 +01:00
add-highlighter -group /html/comment fill comment
2014-07-14 22:58:40 +02:00
2017-01-04 01:07:45 +01:00
add-highlighter -group /html/style ref css
add-highlighter -group /html/script ref javascript
2014-07-14 22:58:40 +02:00
2017-01-04 01:07:45 +01:00
add-highlighter -group /html/tag regex </?(\w+) 1:keyword
2014-07-14 22:58:40 +02:00
2017-01-04 01:07:45 +01:00
add-highlighter -group /html/tag regions content \
2014-07-14 22:58:40 +02:00
string '"' (?<!\\)(\\\\)*" '' \
string "'" "'" ''
2017-01-04 01:07:45 +01:00
add-highlighter -group /html/tag/content/string fill string
2014-07-14 22:58:40 +02:00
# Commands
# ‾‾‾‾‾‾‾‾
def -hidden html-filter-around-selections %{
# remove trailing white spaces
try %{ exec -draft -itersel <a-x> s \h+$ <ret> d }
2014-07-14 22:58:40 +02:00
}
def -hidden html-indent-on-char %{
2014-07-14 22:58:40 +02:00
eval -draft -itersel %{
# align closing tag to opening when alone on a line
try %{ exec -draft <space> <a-h> s ^\h+</(\w+)>$ <ret> <a-\;> <a-?> <lt><c-r>1 <ret> s \`|.\' <ret> <a-r> 1<a-&> }
}
}
def -hidden html-indent-on-new-line %{
2014-07-14 22:58:40 +02:00
eval -draft -itersel %{
# preserve previous line indent
try %{ exec -draft \; K <a-&> }
2014-07-14 22:58:40 +02:00
# filter previous line
try %{ exec -draft k : html-filter-around-selections <ret> }
2014-07-14 22:58:40 +02:00
# indent after lines ending with opening tag
try %{ exec -draft k <a-x> <a-k> <[^/][^>]+>$ <ret> j <a-gt> }
2014-07-14 22:58:40 +02:00
}
}
# Initialization
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
2017-01-04 01:07:45 +01:00
hook -group html-highlight global WinSetOption filetype=(?:html|xml) %{ add-highlighter ref html }
2014-07-14 22:58:40 +02:00
hook global WinSetOption filetype=(?:html|xml) %{
hook window InsertEnd .* -group html-hooks html-filter-around-selections
hook window InsertChar .* -group html-indent html-indent-on-char
hook window InsertChar \n -group html-indent html-indent-on-new-line
2014-07-14 22:58:40 +02:00
}
2017-01-04 01:07:45 +01:00
hook -group html-highlight global WinSetOption filetype=(?!html|xml).* %{ remove-highlighter html }
hook global WinSetOption filetype=(?!html|xml).* %{
2017-01-04 01:07:45 +01:00
remove-hooks window html-indent
remove-hooks window html-hooks
2014-07-14 22:58:40 +02:00
}