json-utils-plugin icon indicating copy to clipboard operation
json-utils-plugin copied to clipboard

[DEPRECATED] Now JetBrains IDEs have native support for evaluating JSONPath expressions

Results 3 json-utils-plugin issues
Sort by recently updated
recently updated
newest added
trafficstars

### Steps: 1. load this json [2019-11-21T052759.200.txt](https://github.com/matheusfm/json-utils-plugin/files/3875401/2019-11-21T052759.200.txt) 2. paste this search $.hits.hits[*]._source.trays_cycle['fr'] 3. write some numbers and point inside square brackets $.hits.hits[*]._source.trays_cycle['fr'.345] 4. delete numbers and point one by one...

It could be interesting to give a bit of color to the json editors. I guess this could help: https://github.com/bobbylight/RSyntaxTextArea

`$.ads[0].ad.name` fails but `$.ads[0].ad.id` works with the following JSON: ``` { "ads": [ { "ad": { "id": "bla", "name": "Barbie Dream Camper" } } ] } ``` ![image](https://user-images.githubusercontent.com/36073609/52131553-55737000-263d-11e9-844f-f8aef87ffb04.png) ![image](https://user-images.githubusercontent.com/36073609/52131706-b69b4380-263d-11e9-88c4-fbf1cc26db63.png)