diff options
| author | Alex Leferry 2 <alexherbo2@gmail.com> | 2019-03-18 19:56:34 +0100 |
|---|---|---|
| committer | Alex Leferry 2 <alexherbo2@gmail.com> | 2019-03-21 01:06:16 +0100 |
| commit | c0dccdd90dd615cf663d95fd94fbdbdf2a88b165 (patch) | |
| tree | cb48fb1b7fb74e6e3b98a62f6e2768686bb75c98 /rc/filetype/json.kak | |
| parent | f87e844244d5ee81e9c1ceb04c354726002ae760 (diff) | |
Add categories in rc/
Closes #2783
Diffstat (limited to 'rc/filetype/json.kak')
| -rw-r--r-- | rc/filetype/json.kak | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/rc/filetype/json.kak b/rc/filetype/json.kak new file mode 100644 index 00000000..ae04c55a --- /dev/null +++ b/rc/filetype/json.kak @@ -0,0 +1,60 @@ +# http://json.org +# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + +# Detection +# ‾‾‾‾‾‾‾‾‾ + +hook global BufCreate .*[.](json) %{ + set-option buffer filetype json +} + +# Highlighters +# ‾‾‾‾‾‾‾‾‾‾‾‾ + +add-highlighter shared/json regions +add-highlighter shared/json/code default-region group +add-highlighter shared/json/string region '"' (?<!\\)(\\\\)*" fill string + +add-highlighter shared/json/code/ regex \b(true|false|null|\d+(?:\.\d+)?(?:[eE][+-]?\d*)?)\b 0:value + +# Commands +# ‾‾‾‾‾‾‾‾ + +define-command -hidden json-trim-indent %{ + # remove trailing white spaces + try %{ execute-keys -draft -itersel <a-x> s \h+$ <ret> d } +} + +define-command -hidden json-indent-on-char %< + evaluate-commands -draft -itersel %< + # align closer token to its opener when alone on a line + try %< execute-keys -draft <a-h> <a-k> ^\h+[]}]$ <ret> m s \A|.\z <ret> 1<a-&> > + > +> + +define-command -hidden json-indent-on-new-line %< + evaluate-commands -draft -itersel %< + # preserve previous line indent + try %{ execute-keys -draft \; K <a-&> } + # filter previous line + try %{ execute-keys -draft k : json-trim-indent <ret> } + # indent after lines beginning with opener token + try %< execute-keys -draft k <a-x> <a-k> ^\h*[[{] <ret> j <a-gt> > + > +> + +# Initialization +# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾ + +hook -group json-highlight global WinSetOption filetype=json %{ + add-highlighter window/json ref json + hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/json } +} + +hook global WinSetOption filetype=json %{ + hook window ModeChange insert:.* -group json-trim-indent json-trim-indent + hook window InsertChar .* -group json-indent json-indent-on-char + hook window InsertChar \n -group json-indent json-indent-on-new-line + + hook -once -always window WinSetOption filetype=.* %{ remove-hooks window json-.+ } +} |
