2015-05-09 23:00:50 +03:00
|
|
|
# http://asciidoc.org/
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2013-10-30 13:38:40 +04:00
|
|
|
hook global BufCreate .*\.asciidoc %{ set buffer filetype asciidoc }
|
2012-08-08 21:38:27 +04:00
|
|
|
|
2015-05-09 23:00:50 +03:00
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2014-06-13 00:52:23 +04:00
|
|
|
addhl -group / group asciidoc
|
2012-08-08 21:38:27 +04:00
|
|
|
|
2015-05-09 23:00:50 +03:00
|
|
|
addhl -group /asciidoc regex (\A|\n\n)[^\n]+\n={2,}\h*\n\h*$ 0:title
|
|
|
|
addhl -group /asciidoc regex (\A|\n\n)[^\n]+\n-{2,}\h*\n\h*$ 0:header
|
|
|
|
addhl -group /asciidoc regex (\A|\n\n)[^\n]+\n~{2,}\h*\n\h*$ 0:header
|
|
|
|
addhl -group /asciidoc regex (\A|\n\n)[^\n]+\n\^{2,}\h*\n\h*$ 0:header
|
|
|
|
addhl -group /asciidoc regex ^\h+([-\*])\h+[^\n]*(\n\h+[^-\*]\S+[^\n]*)*$ 0:list 1:bullet
|
|
|
|
addhl -group /asciidoc regex ^([-=~]+)\n[^\n\h].*?\n\1$ 0:block
|
2015-09-20 19:39:39 +03:00
|
|
|
addhl -group /asciidoc regex (?<!\w)(?:\+[^\n]+?\+|`[^\n]+?`)(?!\w) 0:mono
|
|
|
|
addhl -group /asciidoc regex (?<!\w)_[^\n]+?_(?!\w) 0:italic
|
|
|
|
addhl -group /asciidoc regex (?<!\w)\*[^\n]+?\*(?!\w) 0:bold
|
2015-05-09 23:00:50 +03:00
|
|
|
addhl -group /asciidoc regex ^:[-\w]+: 0:meta
|
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
#
|
2013-12-04 02:15:59 +04:00
|
|
|
hook global WinSetOption filetype=asciidoc %{ addhl ref asciidoc }
|
|
|
|
hook global WinSetOption filetype=(?!asciidoc).* %{ rmhl asciidoc }
|