2021-09-04 10:49:17 -07:00
|
|
|
" Vim filetype plugin
|
|
|
|
" Language: JSONC (JSON with Comments)
|
|
|
|
" Original Author: Izhak Jakov <izhak724@gmail.com>
|
|
|
|
" Acknowledgement: Based off of vim-jsonc maintained by Kevin Locke <kevin@kevinlocke.name>
|
|
|
|
" https://github.com/kevinoid/vim-jsonc
|
|
|
|
" License: MIT
|
2021-11-27 11:39:42 -07:00
|
|
|
" Last Change: 2021 Nov 22
|
2024-06-04 00:39:28 -07:00
|
|
|
" 2024 May 23 by Riley Bruins <ribru17@gmail.com> ('commentstring')
|
2021-09-04 10:49:17 -07:00
|
|
|
|
|
|
|
runtime! ftplugin/json.vim
|
|
|
|
|
|
|
|
if exists('b:did_ftplugin_jsonc')
|
|
|
|
finish
|
|
|
|
else
|
|
|
|
let b:did_ftplugin_jsonc = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
" Set comment (formatting) related options. {{{1
|
2024-06-04 00:39:28 -07:00
|
|
|
setlocal commentstring=//\ %s comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,://
|
2021-09-04 10:49:17 -07:00
|
|
|
|
|
|
|
" Let Vim know how to disable the plug-in.
|
2021-11-27 11:39:42 -07:00
|
|
|
let b:undo_ftplugin = 'setlocal commentstring< comments<'
|