You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is probably resolved now
Now hitting Enter when in the error form
and using the "Refresh with current errors" right-click context item
do the same thing, as they always should have done.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
63
63
2. Minor bug where JsonTools could not set the text of a file to end with the SOH character (ASCII code `\x01`)
64
64
3. Minor bug where some JsonGrepper tests would always fail because they queried an external API that had previously returned JSON but now returns HTML.
65
65
4. Bug where editing a document in [multi-selection mode](/docs/README.md#working-with-selections) would sometimes cause selections to be forgotten (fixed in [v8.4.0.3](https://github.com/molsonkiko/JsonToolsNppPlugin/commit/16f0358274c662273a2015994c5ab22d22fd23ab))
66
+
5. Bug ([issue 104](https://github.com/molsonkiko/JsonToolsNppPlugin/issues/104)) where [error form](/docs/README.md#error-form-and-status-bar) would not always re-parse the document after the `Refresh with current errors` right-click context menu item on the error form was clicked.
Copy file name to clipboardExpand all lines: docs/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -194,11 +194,11 @@ As the above example shows, this method *can* handle unmatched quotes/braces, bu
194
194
195
195
### Error form and status bar ###
196
196
197
-
If you click "Yes", a docking form will open up at the bottom of the document. Each row in the document will correspond to a different syntax error.
197
+
If you respond "Yes" to the prompt that appears after parsing JSON with errors, a docking form will open up at the bottom of the document. Each row in the document will correspond to a different syntax error.
198
198
199
199
Clicking on or paging to a row in the error form with the arrow keys will move the caret to the location in the document where that error was found.
200
200
201
-
Hitting `Enter` while in the form refreshes the form with the JSON in the current document. You can also seek the next syntax error with a description that starts with a letter by typing that letter while in the form. For example, typing `P` in the form might select the next `Python-style '#' comments are not part of any well-accepted JSON specification` error.
201
+
Hitting `Enter`or choosing the `Refresh with current errors` right-click context menu item while in the form refreshes the form with the JSON in the current document. You can also seek the next syntax error with a description that starts with a letter by typing that letter while in the form. For example, typing `P` in the form might select the next `Python-style '#' comments are not part of any well-accepted JSON specification` error.
202
202
203
203
Beginning in [v6.0](/CHANGELOG.md#600---2023-12-13), you can right-click on this form to gain the option of exporting all errors to JSON or refreshing the form.
0 commit comments