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
I'm exploring a json document consisting of an array of arrays grouped by a key. [[{"k":1,},{"k":1}],[{"k":2}]]. As I query > .[0] and try appending [*]. If I go back and try to add . just after the initial .[0] it overwrites the line before it. It seems that in order to edit an earlier part of the line, I need to always rewrite the line that follows.
The issue may be exacerbated by the behavior that filters are not evaluated until a whole new component is recognized, so it's hard to discover syntax because of a slower feedback loop.
The text was updated successfully, but these errors were encountered:
I'm exploring a json document consisting of an array of arrays grouped by a key.
[[{"k":1,},{"k":1}],[{"k":2}]]
. As I query> .[0]
and try appending[*]
. If I go back and try to add.
just after the initial.[0]
it overwrites the line before it. It seems that in order to edit an earlier part of the line, I need to always rewrite the line that follows.The issue may be exacerbated by the behavior that filters are not evaluated until a whole new component is recognized, so it's hard to discover syntax because of a slower feedback loop.
The text was updated successfully, but these errors were encountered: