Emacs mode to edit JSON

后端 未结 12 1887
面向向阳花
面向向阳花 2021-01-30 12:15

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 woul

12条回答
  •  耶瑟儿~
    2021-01-30 13:03

    Since JSON is a subset of YAML, yaml-mode works too (I don't know how it compares to js-mode and json-mode, though).

    Install (from emacs): M-x package-install yaml-mode.

    Association of yaml-mode with YAML and JSON files, in ~/.emacs.d/init.el:

    (add-to-list 'auto-mode-alist '("\\.yaml$" . yaml-mode))
    (add-to-list 'auto-mode-alist '("\\.json$" . yaml-mode))
    

提交回复
热议问题