vim-json icon indicating copy to clipboard operation
vim-json copied to clipboard

A better JSON for Vim: distinct highlighting of keywords vs values, JSON-specific (non-JS) warnings, quote concealing. Pathogen-friendly.

Results 46 vim-json issues
Sort by recently updated
recently updated
newest added

See :help undo_indent for details

While not officially part of the JSON standard, there are many parsers which will accept comments. This change allows users to set an option which recognizes comments as comments instead...

I installed via vim-plugged (similar to Vundle) but seems like it's not working because it does not show the distinct keyword/value highlights. I also tried manually copying all the files...

Loading `syntax/json.vim` currently loads `ftplugin/json.vim`, which sets `conceallevel`. This is IMHO bad practise. For instance, if you load nested syntax in Markdown, LaTeX or similar, it should not affect the...

Not an in-depth level of support, but avoids error indications at end of objects by treating .cjson and .ndjson files the same as jsonl.

I'm not a huge fan of the quote concealing but I do appreciate how jq colors quotes to match their values to make the output less noisy. This PR adds...

Updated to allow for better debugging. The indent script should work as it did before, but you'll be able to call the function manually with a line number. Based on...

`indent/json.vim` seems to interpret '{' within a string equally as outside of it, thus it "thinks" that a '{' within a string starts a new json-object, thus e.g. using autoindentation:...

Files whose name ends in *.template may be in one of many formats. This plugin shouldn't unconditionally assume that they are all JSON files.

It appears that it's valid json syntax to allow double quotes as a value by escaping them like so `\"`. But doing that breaks the coloring that this plugin provides......