commit d3771e68a2a6be47a3ec158c9b0aff892a9038b9 parent 3587377cdae300f5568151a822e777bbbf184643 Author: Christian Clason <c.clason@uni-graz.at> Date: Tue, 26 Mar 2024 21:33:43 +0100 vim-patch:63833bb0217f runtime(json5): add basic indent support (vim/vim#14298) https://github.com/vim/vim/commit/63833bb0217fbfd5556a77103bd6c1ce78cfd996 Co-authored-by: Rocco Mao <dapeng.mao@qq.com> Diffstat:
| A | runtime/indent/json5.vim | | | 11 | +++++++++++ |
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/runtime/indent/json5.vim 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