2015-05-09 22:00:50 +02:00
|
|
|
# http://asciidoc.org/
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2013-10-30 10:38:40 +01:00
|
|
|
hook global BufCreate .*\.asciidoc %{ set buffer filetype asciidoc }
|
2012-08-08 19:38:27 +02:00
|
|
|
|
2015-05-09 22:00:50 +02:00
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2014-06-12 22:52:23 +02:00
|
|
|
addhl -group / group asciidoc
|
2012-08-08 19:38:27 +02:00
|
|
|
|
2015-05-09 22:00:50 +02: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 18:39:39 +02: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 22:00:50 +02:00
|
|
|
addhl -group /asciidoc regex ^:[-\w]+: 0:meta
|
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
#
|
2016-09-25 15:15:07 +02:00
|
|
|
hook -group asciidoc-highlight global WinSetOption filetype=asciidoc %{ addhl ref asciidoc }
|
2013-12-03 23:15:59 +01:00
|
|
|
hook global WinSetOption filetype=(?!asciidoc).* %{ rmhl asciidoc }
|