Does anybody know a good Emacs mode to edit JSON? An app I am working on uses a JSON based communication protocol and having the data nicely indented and syntax-highlighted would help me a lot in the process of figuring it out.
|
Have you tried Steve Yegge's js2-mode for Emacs? |
|||||||
|
|
+1 for Josh's json-mode -- works well for me. I added
and
to json-mode.el to make the shell command invocation easier. UPDATE: for those of you with a need/desire to do this with unicode, see my question here. The upshot is rather than using:
you will want to use
this both beautifies the JSON as well as preserving the original unicode content. |
|||||||||
|
|
If you want something lightweight try this major-mode I hacked together: https://github.com/joshwnj/json-mode It's actually no more than some extra syntax highlighting on top of javascript-mode, but for my purposes I've found it to work quite well. Another common use-case is auto-formatting a JSON file (eg. if it's whitespace-compressed and you want more readability). To do this I'm just piping the buffer through a command-line script: C-u M-| |
|||||||
|
|
js-mode supports syntax highlighting and indentation for json files. This is as of Emacs 23.2, when espresso-mode was incorporated into Emacs and renamed js-mode. Check it out: http://www.nongnu.org/espresso/ |
|||||
|
|
I've prepared a workaround for js2-mode so it parses json files without errors. You can find it in my comment: http://code.google.com/p/js2-mode/issues/detail?id=50#c7 (I wanted to post it as a comment do J.F. Sebastian solution, but it seems I'm not allowed to do so (no 'add comment' link)) |
||||
|
|
|
JSON is supported by espresso-mode |
|||||
|
|
js2.el fails on byte-compile? In js2-node-string:
js2xxx.el:5907:48:Warning: Strange. It compiled on my windows 7 machine, fails on Linux (Fedora), both emacs 23. any suggestions please? |
|||
|
|
|
FWIW Josh accepted Chad's pull request to include jstevenco's addition (got all that?) so as of this writing Josh's json-mode repo on github is the most up-to-date source for json-mode. |
|||
|
|
|
I would also recommand js2-mode. JSON stands for JavaScript Object Notation. It's not another language and it's even not a data container like yaml or xml are. JSON could be used as a data container if there's no function (or in this case we should say method) inside a JSON object, but it's not the primary goal of JSON :-)
|
|||||||||
|