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
Very useful but it would be great if based on the current cursor position, when summoned, it could attempt to make sense of the current structure, looking for valid matching brackets and then creating a path.
Often in code we have JSON objects inside ts / js files that are like
let constants = {
module1:{
feature1: {
panel1: {}
panel2: {
"key1": "value1",
"key2": "value2",
"key3": "value3"
}
panel3: {}
}
},
module2:{},
module3:{}
moduleN:{}
};
Now imagine if I wanted to add key4 to constants.module18.panel15, it would be extermely useful if I can find the current path based on the cursor position.
The text was updated successfully, but these errors were encountered:
Very useful but it would be great if based on the current cursor position, when summoned, it could attempt to make sense of the current structure, looking for valid matching brackets and then creating a path.
Often in code we have JSON objects inside ts / js files that are like
let constants = {
module1:{
feature1: {
panel1: {}
panel2: {
"key1": "value1",
"key2": "value2",
"key3": "value3"
}
panel3: {}
}
},
module2:{},
module3:{}
moduleN:{}
};
Now imagine if I wanted to add key4 to constants.module18.panel15, it would be extermely useful if I can find the current path based on the cursor position.
The text was updated successfully, but these errors were encountered: