2014-07-05 14:32:37 +02:00
|
|
|
# http://json.org
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
hook global BufCreate .*[.](json) %{
|
|
|
|
set buffer filetype json
|
|
|
|
}
|
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group / regions -default code json \
|
2014-07-05 14:32:37 +02:00
|
|
|
string '"' (?<!\\)(\\\\)*" ''
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /json/string fill string
|
2014-07-05 14:32:37 +02:00
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /json/code regex \b(true|false|null|\d+(?:\.\d+)?(?:[eE][+-]?\d*)?)\b 0:value
|
2014-07-05 14:32:37 +02:00
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-13 01:56:30 +01:00
|
|
|
def -hidden json-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-05 14:32:37 +02:00
|
|
|
}
|
|
|
|
|
2017-01-13 01:56:30 +01:00
|
|
|
def -hidden json-indent-on-char %<
|
2015-11-10 14:36:16 +01:00
|
|
|
eval -draft -itersel %<
|
2014-07-16 13:56:40 +02:00
|
|
|
# align closer token to its opener when alone on a line
|
2015-11-10 14:36:16 +01:00
|
|
|
try %< exec -draft <a-h> <a-k> ^\h+[]}]$ <ret> m s \`|.\' <ret> 1<a-&> >
|
|
|
|
>
|
|
|
|
>
|
2014-07-05 14:32:37 +02:00
|
|
|
|
2017-01-13 01:56:30 +01:00
|
|
|
def -hidden json-indent-on-new-line %<
|
2015-11-10 14:36:16 +01:00
|
|
|
eval -draft -itersel %<
|
2014-07-05 14:32:37 +02:00
|
|
|
# preserve previous line indent
|
2017-01-13 01:50:03 +01:00
|
|
|
try %{ exec -draft \; K <a-&> }
|
2014-07-05 14:32:37 +02:00
|
|
|
# filter previous line
|
2017-01-13 01:56:30 +01:00
|
|
|
try %{ exec -draft k : json-filter-around-selections <ret> }
|
2014-07-05 14:32:37 +02:00
|
|
|
# indent after lines beginning with opener token
|
2017-01-13 01:50:03 +01:00
|
|
|
try %< exec -draft k <a-x> <a-k> ^\h*[[{] <ret> j <a-gt> >
|
2015-11-10 14:36:16 +01:00
|
|
|
>
|
|
|
|
>
|
2014-07-05 14:32:37 +02:00
|
|
|
|
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group json-highlight global WinSetOption filetype=json %{ add-highlighter ref json }
|
2014-07-05 14:32:37 +02:00
|
|
|
|
2016-09-25 15:15:07 +02:00
|
|
|
hook global WinSetOption filetype=json %{
|
2017-01-13 01:56:30 +01:00
|
|
|
hook window InsertEnd .* -group json-hooks json-filter-around-selections
|
|
|
|
hook window InsertChar .* -group json-indent json-indent-on-char
|
|
|
|
hook window InsertChar \n -group json-indent json-indent-on-new-line
|
2014-07-05 14:32:37 +02:00
|
|
|
}
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group json-highlight global WinSetOption filetype=(?!json).* %{ remove-highlighter json }
|
2016-09-28 08:45:01 +02:00
|
|
|
|
2014-07-05 14:32:37 +02:00
|
|
|
hook global WinSetOption filetype=(?!json).* %{
|
2017-01-04 01:07:45 +01:00
|
|
|
remove-hooks window json-indent
|
|
|
|
remove-hooks window json-hooks
|
2014-07-05 14:32:37 +02:00
|
|
|
}
|