File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11QuickJSON
22=========
33
4- A QuickLook plugin to pretty-print (node.js style) JSON.
4+ A QuickLook plugin to pretty-print JSON in the terse comma-first style, e g:
5+
6+ ``` json
7+ { "name" : " flux"
8+ , "description" : " An application architecture based on a unidirectional data flow"
9+ , "version" : " 2.1.1"
10+ , "homepage" : " http://facebook.github.io/flux/"
11+ , "repository" :
12+ { "type" : " git"
13+ , "url" : " https://github.com/facebook/flux.git"
14+ }
15+ , "authors" :
16+ [ " Facebook"
17+ , " Jing Chen <jingc@fb.com>"
18+ , " Bill Fisher <fisherwebdev@gmail.com>"
19+ , " Paul O'Shannessy <paul@oshanessy.com>"
20+ ]
21+ }
22+ ```
23+
24+ ### Installing
525
626To install a pre-built version for osx 10.6+,
727download and unzip
@@ -10,8 +30,11 @@ into `/Library/QuickLook/` (to install system-globally),
1030or into ` ~/Library/QuickLook/ ` (to install for yourself only).
1131You may need to create this directory, if it does not exist.
1232
13- To get sweet copy/paste functionality while in QuickLook, also run
33+ To get sweet copy/paste functionality while in QuickLook, also run:
1434
1535 defaults write com.apple.finder QLEnableTextSelection -bool true
1636
17- from a Terminal window.
37+ from a Terminal window,
38+ and to refresh installed plugins afterwards:
39+
40+ qlmanage -r
You can’t perform that action at this time.
0 commit comments