changeset 34655:a63ac82f6e7f

runtime(json5): add basic indent support (#14298) Commit: https://github.com/vim/vim/commit/63833bb0217fbfd5556a77103bd6c1ce78cfd996 Author: Rocco Mao <dapeng.mao@qq.com> Date: Wed Mar 27 02:02:44 2024 +0800 runtime(json5): add basic indent support (https://github.com/vim/vim/issues/14298) Signed-off-by: Rocco Mao <dapeng.mao@qq.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Tue, 26 Mar 2024 19:15:03 +0100
parents 76ff9f693d41
children 3b29a2cdbf74
files runtime/indent/json5.vim
diffstat 1 files changed, 11 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/runtime/indent/json5.vim
@@ -0,0 +1,11 @@
+" Vim indent file
+" Language:     JSON5
+" Maintainer:   The Vim Project <https://github.com/vim/vim>
+" Last Change:  2024-03-26
+
+if exists("b:did_indent")
+  finish
+endif
+
+" Same as jsonc indenting for now
+runtime! indent/jsonc.vim