From: Rocco Mao Date: Tue, 26 Mar 2024 18:02:44 +0000 (+0800) Subject: runtime(json5): add basic indent support (#14298) X-Git-Tag: v9.1.0212~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=63833bb0217fbfd5556a77103bd6c1ce78cfd996;p=thirdparty%2Fvim.git runtime(json5): add basic indent support (#14298) Signed-off-by: Rocco Mao Signed-off-by: Christian Brabandt --- diff --git a/runtime/indent/json5.vim b/runtime/indent/json5.vim new file mode 100644 index 0000000000..5977a4b912 --- /dev/null +++ b/runtime/indent/json5.vim @@ -0,0 +1,11 @@ +" Vim indent file +" Language: JSON5 +" Maintainer: The Vim Project +" Last Change: 2024-03-26 + +if exists("b:did_indent") + finish +endif + +" Same as jsonc indenting for now +runtime! indent/jsonc.vim