Horje
coc allow comments in json Code Example
coc allow comments in json
The filetype need to be jsonc.
To make Vim treat all json files as jsonc:

```
augroup JsonToJsonc
    autocmd! FileType json set filetype=jsonc
augroup END
```
Or you can use a modeline (:help modeline) at the very top or bottom of an individual json file, to set the filetype to jsonc for only that file:

// vim: ft=jsonc
Source: github.com




Html

Related
set default selected option in select form laravel Code Example set default selected option in select form laravel Code Example
how to move navlink to the right in bootstrap Code Example how to move navlink to the right in bootstrap Code Example
html theme meta Code Example html theme meta Code Example
regular expression to look for html tags Code Example regular expression to look for html tags Code Example
html button with link Code Example html button with link Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11