2014-07-14 22:58:40 +02:00
|
|
|
# http://w3.org/html
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2016-12-14 14:40:00 +01:00
|
|
|
hook global BufCreate .*\.html %{
|
2014-07-14 22:58:40 +02:00
|
|
|
set buffer filetype html
|
|
|
|
}
|
|
|
|
|
2016-12-14 14:40:00 +01:00
|
|
|
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 < > '' \
|
2016-04-21 21:43:17 +02:00
|
|
|
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 %{
|
2015-11-04 10:48:47 +01:00
|
|
|
# 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 %{
|
|
|
|
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 %{
|
|
|
|
eval -draft -itersel %{
|
|
|
|
# preserve previous line indent
|
|
|
|
try %{ exec -draft <space> K <a-&> }
|
|
|
|
# filter previous line
|
|
|
|
try %{ exec -draft k : _html_filter_around_selections <ret> }
|
|
|
|
# indent after lines ending with opening tag
|
|
|
|
try %{ exec -draft k x <a-k> <[^/][^>]+>$ <ret> j <a-gt> }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# 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
|
|
|
|
2016-12-14 14:40:00 +01:00
|
|
|
hook global WinSetOption filetype=(?:html|xml) %{
|
2014-07-14 22:58:40 +02:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group html-highlight global WinSetOption filetype=(?!html|xml).* %{ remove-highlighter html }
|
2016-09-28 08:45:01 +02:00
|
|
|
|
2016-12-14 14:40:00 +01:00
|
|
|
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
|
|
|
}
|