diff options
author | Bob Williams <bobwilliams.ii@gmail.com> | 2014-03-24 13:36:26 -0400 |
---|---|---|
committer | Bob Williams <bobwilliams.ii@gmail.com> | 2014-03-24 13:36:26 -0400 |
commit | 8db3e6329d25ae3e7d6c4996b5a0c3a5f31d645e (patch) | |
tree | 2744fad052e53082dc9f0e0446650cf570cfca16 /plugins/jsontools | |
parent | 1fc40c60b506bc71f20efcafc7e7350ece3a1596 (diff) | |
download | zsh-8db3e6329d25ae3e7d6c4996b5a0c3a5f31d645e.tar.gz zsh-8db3e6329d25ae3e7d6c4996b5a0c3a5f31d645e.tar.bz2 zsh-8db3e6329d25ae3e7d6c4996b5a0c3a5f31d645e.zip |
bug fix for node pp_json version
Diffstat (limited to 'plugins/jsontools')
-rw-r--r-- | plugins/jsontools/jsontools.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/jsontools/jsontools.plugin.zsh b/plugins/jsontools/jsontools.plugin.zsh index 7b6f8c585..ee092ff09 100644 --- a/plugins/jsontools/jsontools.plugin.zsh +++ b/plugins/jsontools/jsontools.plugin.zsh @@ -6,7 +6,7 @@ if [[ $(whence $JSONTOOLS_METHOD) = "" ]]; then fi if [[ $(whence node) != "" && ( "x$JSONTOOLS_METHOD" = "x" || "x$JSONTOOLS_METHOD" = "xnode" ) ]]; then - alias pp_json='node -e "console.log(JSON.stringify(process.argv[1]), null, 4)"' + alias pp_json='node -e "console.log(JSON.stringify(JSON.parse(process.argv[1]), null, 4));"' elif [[ $(whence python) != "" && ( "x$JSONTOOLS_METHOD" = "x" || "x$JSONTOOLS_METHOD" = "xpython" ) ]]; then alias pp_json='python -mjson.tool' elif [[ $(whence ruby) != "" && ( "x$JSONTOOLS_METHOD" = "x" || "x$JSONTOOLS_METHOD" = "xruby" ) ]]; then |