2014-07-15 00:58:40 +04:00
|
|
|
# http://w3.org/html
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2016-12-14 16:40:00 +03:00
|
|
|
hook global BufCreate .*\.html %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer filetype html
|
2014-07-15 00:58:40 +04:00
|
|
|
}
|
|
|
|
|
2016-12-14 16:40:00 +03:00
|
|
|
hook global BufCreate .*\.xml %{
|
2017-11-03 10:34:41 +03:00
|
|
|
set-option buffer filetype xml
|
2014-07-15 00:58:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-10-28 06:00:51 +03:00
|
|
|
add-highlighter shared/ regions html \
|
2014-07-15 00:58:40 +04:00
|
|
|
comment <!-- --> '' \
|
|
|
|
tag < > '' \
|
2016-04-21 22:43:17 +03:00
|
|
|
style <style\b.*?>\K (?=</style>) '' \
|
|
|
|
script <script\b.*?>\K (?=</script>) ''
|
2014-07-15 00:58:40 +04:00
|
|
|
|
2017-10-28 06:00:51 +03:00
|
|
|
add-highlighter shared/html/comment fill comment
|
2014-07-15 00:58:40 +04:00
|
|
|
|
2017-10-28 06:00:51 +03:00
|
|
|
add-highlighter shared/html/style ref css
|
|
|
|
add-highlighter shared/html/script ref javascript
|
2014-07-15 00:58:40 +04:00
|
|
|
|
2017-10-28 06:00:51 +03:00
|
|
|
add-highlighter shared/html/tag regex \b([a-zA-Z0-9_-]+)=? 1:attribute
|
|
|
|
add-highlighter shared/html/tag regex </?(\w+) 1:keyword
|
|
|
|
add-highlighter shared/html/tag regex <(!DOCTYPE(\h+\w+)+) 1:meta
|
2014-07-15 00:58:40 +04:00
|
|
|
|
2017-10-28 06:00:51 +03:00
|
|
|
add-highlighter shared/html/tag regions content \
|
2014-07-15 00:58:40 +04:00
|
|
|
string '"' (?<!\\)(\\\\)*" '' \
|
|
|
|
string "'" "'" ''
|
|
|
|
|
2017-10-28 06:00:51 +03:00
|
|
|
add-highlighter shared/html/tag/content/string fill string
|
2014-07-15 00:58:40 +04:00
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-11-03 10:34:41 +03:00
|
|
|
define-command -hidden html-filter-around-selections %{
|
2015-11-04 12:48:47 +03:00
|
|
|
# remove trailing white spaces
|
2017-11-03 11:09:45 +03:00
|
|
|
try %{ execute-keys -draft -itersel <a-x> s \h+$ <ret> d }
|
2014-07-15 00:58:40 +04:00
|
|
|
}
|
|
|
|
|
2017-11-03 10:34:41 +03:00
|
|
|
define-command -hidden html-indent-on-greater-than %[
|
2017-11-03 11:09:45 +03:00
|
|
|
evaluate-commands -draft -itersel %[
|
2014-07-15 00:58:40 +04:00
|
|
|
# align closing tag to opening when alone on a line
|
2017-11-03 11:09:45 +03:00
|
|
|
try %[ execute-keys -draft <space> <a-h> s ^\h+<lt>/(\w+)<gt>$ <ret> {c<lt><c-r>1,<lt>/<c-r>1<gt> <ret> s \A|.\z <ret> 1<a-&> ]
|
2017-10-30 08:52:07 +03:00
|
|
|
]
|
|
|
|
]
|
2014-07-15 00:58:40 +04:00
|
|
|
|
2017-11-03 10:34:41 +03:00
|
|
|
define-command -hidden html-indent-on-new-line %{
|
2017-11-03 11:09:45 +03:00
|
|
|
evaluate-commands -draft -itersel %{
|
2014-07-15 00:58:40 +04:00
|
|
|
# preserve previous line indent
|
2017-11-03 11:09:45 +03:00
|
|
|
try %{ execute-keys -draft \; K <a-&> }
|
2014-07-15 00:58:40 +04:00
|
|
|
# filter previous line
|
2017-11-03 11:09:45 +03:00
|
|
|
try %{ execute-keys -draft k : html-filter-around-selections <ret> }
|
2014-07-15 00:58:40 +04:00
|
|
|
# indent after lines ending with opening tag
|
2017-11-03 11:09:45 +03:00
|
|
|
try %{ execute-keys -draft k <a-x> <a-k> <[^/][^>]+>$ <ret> j <a-gt> }
|
2014-07-15 00:58:40 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-10-28 06:00:51 +03:00
|
|
|
hook -group html-highlight global WinSetOption filetype=(?:html|xml) %{ add-highlighter window ref html }
|
2014-07-15 00:58:40 +04:00
|
|
|
|
2016-12-14 16:40:00 +03:00
|
|
|
hook global WinSetOption filetype=(?:html|xml) %{
|
2018-01-21 02:35:05 +03:00
|
|
|
hook window ModeChange insert:.* -group html-hooks html-filter-around-selections
|
2017-10-30 08:52:07 +03:00
|
|
|
hook window InsertChar '>' -group html-indent html-indent-on-greater-than
|
2017-01-13 03:56:30 +03:00
|
|
|
hook window InsertChar \n -group html-indent html-indent-on-new-line
|
2014-07-15 00:58:40 +04:00
|
|
|
}
|
|
|
|
|
2017-10-28 06:00:51 +03:00
|
|
|
hook -group html-highlight global WinSetOption filetype=(?!html)(?!xml).* %{ remove-highlighter window/html }
|
2016-09-28 09:45:01 +03:00
|
|
|
|
2017-10-02 15:59:22 +03:00
|
|
|
hook global WinSetOption filetype=(?!html)(?!xml).* %{
|
2017-01-04 03:07:45 +03:00
|
|
|
remove-hooks window html-indent
|
|
|
|
remove-hooks window html-hooks
|
2014-07-15 00:58:40 +04:00
|
|
|
}
|