PYENV prompt.
[profile.git] / .vim / doc / jdaddy.txt
1 *jdaddy.txt*  JSON manipulation and pretty printing
2
3 Author:  Tim Pope <http://tpo.pe/>
4 Repo:    https://github.com/tpope/vim-jdaddy
5 License: Same terms as Vim itself (see |license|)
6
7 USAGE                                           *jdaddy*
8
9                                                 *ij*
10 ij                      Text object for innermost JSON number, string, array,
11                         object, or keyword (including but not limited to
12                         true/false/null).
13
14                                                 *aj*
15 aj                      Text object for outermost JSON object or array.
16
17                                                 *gqij*
18 gqij                    Replace the innermost JSON with a pretty printed
19                         version.
20
21                                                 *gqaj*
22 gqaj                    Replace the outermost JSON with a pretty printed
23                         version.
24
25                                                 *gwij*
26 ["x]gwij                Merge the JSON from the register into the innermost
27                         JSON.  Merging extends objects, concatenates strings
28                         and arrays, and adds numbers.
29
30                                                 *gwaj*
31 ["x]gwaj                Merge the JSON from the register into the outermost
32                         JSON.
33
34 Pretty printing indents based on 'shiftwidth' and wraps at 'textwidth'.
35
36  vim:tw=78:et:ft=help:norl: