NPP-JSONViewer / JSON-Viewer

A JSON viewer plugin for Notepad++. Displays the selected JSON string in a tree view.
MIT License
741 stars 151 forks source link

JSON Viewer Panel #194

Open kenanunkesti opened 1 month ago

kenanunkesti commented 1 month ago

Hello, First of all, thank you for developing this plugin, I hope you will make the following improvements soon :) 1) Press Enter in the search box and it will search. Each time the F3 key is pressed, it moves to the next item. 2) After selecting the item, the copy options in the right-click menu can be made without quotes. 3) After the item is selected, the cursor on the page moves to the relevant area. Thank you again.

SinghRajenM commented 1 month ago

@kenanunkesti Thank for using Json Viewer and providing valuable suggestion.

Press Enter in the search box and it will search. Each time the F3 key is pressed, it moves to the next item.

I will work upon this and hope, it can be available in next release

After selecting the item, the copy options in the right-click menu can be made without quotes.

I would like to retain the current behavior as it is more informative. Refer below example

{
    "default_time_interval_in_number" : 123400.0,
    "default_time_interval_in_string" : "123400.0"
}

After using copy feature.

default_time_interval_in_number : 123400.0
default_time_interval_in_string : "123400.0"

After the item is selected, the cursor on the page moves to the relevant area.

This is long awaited feature. I am finding it difficult to implement as underlying json parser (Rapidsjon) is not supporting this at this moment. I am exploring other parser and will try to find out the solution.