2018-05-14 04:46:45 +00:00
|
|
|
#+TITLE: JSON layer
|
|
|
|
|
|
|
|
[[file:img/json.png]]
|
|
|
|
|
2018-09-19 03:54:47 +00:00
|
|
|
* Table of Contents :TOC_4_gh:noexport:
|
2018-05-14 04:46:45 +00:00
|
|
|
- [[#description][Description]]
|
|
|
|
- [[#features][Features:]]
|
|
|
|
- [[#install][Install]]
|
|
|
|
- [[#configuration][Configuration]]
|
2018-05-18 05:15:03 +00:00
|
|
|
- [[#web-beautify][web-beautify]]
|
2018-06-19 06:25:33 +00:00
|
|
|
- [[#prettier][prettier]]
|
|
|
|
- [[#choosing-a-formatter][Choosing a formatter]]
|
2018-05-14 04:46:45 +00:00
|
|
|
- [[#usage][Usage]]
|
|
|
|
- [[#reformat][Reformat]]
|
|
|
|
- [[#display-navigable-hierarchy][Display navigable hierarchy]]
|
|
|
|
- [[#key-bindings][Key Bindings]]
|
|
|
|
- [[#json-hierarchy][JSON hierarchy]]
|
|
|
|
|
|
|
|
* Description
|
|
|
|
This layer adds support for JSON files with [[https://github.com/joshwnj/json-mode][json-mode]]
|
|
|
|
|
|
|
|
** Features:
|
|
|
|
- Syntax highlighting
|
|
|
|
- Auto-completion
|
|
|
|
- Get the path to a JSON value with [[https://github.com/Sterlingg/json-snatcher][json-snatcher]]
|
|
|
|
- Navigate JSON hierarchy with [[https://github.com/DamienCassou/json-navigator][json-nagivator]]
|
2018-05-24 02:12:30 +00:00
|
|
|
- Formatting with [[https://github.com/yasuyk/web-beautify][web-beautify]]
|
2018-05-14 04:46:45 +00:00
|
|
|
|
|
|
|
* Install
|
|
|
|
To use this configuration layer, add it to your =~/.spacemacs=. You will need to
|
|
|
|
add =json= to the existing =dotspacemacs-configuration-layers= list in this file.
|
|
|
|
|
|
|
|
** Configuration
|
|
|
|
To define the default indentation set the variable =js-indent-level=.
|
|
|
|
|
2018-05-18 05:15:03 +00:00
|
|
|
** web-beautify
|
2018-05-18 06:04:45 +00:00
|
|
|
See [[file:../../+tools/web-beautify/README.org][web-beautify layer]] documentation.
|
2018-05-18 05:15:03 +00:00
|
|
|
|
2018-06-19 06:25:33 +00:00
|
|
|
** prettier
|
|
|
|
See [[file:../../+tools/prettier/README.org][prettier layer]] documentation.
|
|
|
|
|
|
|
|
** Choosing a formatter
|
|
|
|
To choose a formatter, set the layer variable =json-fmt-tool=:
|
|
|
|
|
|
|
|
#+BEGIN_SRC elisp
|
2018-09-19 03:54:47 +00:00
|
|
|
(json :variables json-fmt-tool 'web-beautify)
|
2018-06-19 06:25:33 +00:00
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
Formatter can be chosen on a per project basis using directory local variables
|
|
|
|
(files named =.dir-locals.el= at the root of a project), an example to use the
|
|
|
|
=prettier= formatter:
|
|
|
|
|
|
|
|
#+BEGIN_SRC elisp
|
2018-09-19 03:54:47 +00:00
|
|
|
;;; Directory Local Variables
|
|
|
|
;;; For more information see (info "(emacs) Directory Variables")
|
2018-06-19 06:25:33 +00:00
|
|
|
|
2018-09-19 03:54:47 +00:00
|
|
|
((json-mode (json-fmt-tool . prettier)))
|
2018-06-19 06:25:33 +00:00
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
*Note:* you can easily add a directory local variable with ~SPC f v d~.
|
|
|
|
|
2018-05-14 04:46:45 +00:00
|
|
|
* Usage
|
|
|
|
** Reformat
|
|
|
|
~SPC m =~ will reformat the whole buffer or the active region. Use numerical
|
|
|
|
prefix argument to specify a different indentation than =js-indent-level=.
|
|
|
|
Use the universal prefix argument to print decoded strings, for instance:
|
|
|
|
|
2018-09-19 03:54:47 +00:00
|
|
|
#+BEGIN_SRC json
|
|
|
|
{"name":"foo\"bar","nick":"foo \u00e4 bar","description":"<pre>\nbaz\n</pre>","home":"/home/foobar"}
|
2018-05-14 04:46:45 +00:00
|
|
|
|
2018-09-19 03:54:47 +00:00
|
|
|
Will be reformatted:
|
2018-05-14 04:46:45 +00:00
|
|
|
|
2018-09-19 03:54:47 +00:00
|
|
|
{
|
|
|
|
"name": "foo\"bar",
|
|
|
|
"nick": "foo ä bar",
|
|
|
|
"description": "<pre>
|
|
|
|
baz
|
|
|
|
</pre>",
|
|
|
|
"home": "/home/foobar"
|
|
|
|
}
|
|
|
|
#+END_SRC
|
2018-05-14 04:46:45 +00:00
|
|
|
|
|
|
|
** Display navigable hierarchy
|
|
|
|
~SPC m h h~ displays the hierarchy for the whole JSON document or the active
|
|
|
|
region. Use the universal prefix argument ~SPC u SPC m h h~ to create the
|
|
|
|
hierarchy for the JSON *after* the point.
|
|
|
|
|
|
|
|
* Key Bindings
|
|
|
|
|
|
|
|
| Key Binding | Description |
|
|
|
|
|-------------+---------------------------------------------|
|
|
|
|
| ~SPC m =~ | DWIM Reformat JSON |
|
|
|
|
| ~SPC m h p~ | Get the path of the value at point |
|
|
|
|
| ~SPC m h h~ | DWIM navigate JSON hierarchy |
|
|
|
|
| ~SPC m h H~ | Navigate JSON hierarchy of the whole buffer |
|
|
|
|
|
|
|
|
** JSON hierarchy
|
|
|
|
|
|
|
|
| Key Binding | Description |
|
|
|
|
|-------------+----------------------|
|
|
|
|
| ~RET~ | Expand/Collapse node |
|
|
|
|
| ~TAB~ | Select next node |
|
|
|
|
| ~S-TAB~ | Select previous node |
|