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
It would be amazing for verification/usability if hovering over an element in the AST view also highlighted the matching text range in the text editor on the left pane. For example, in this screenshot:
The New UAST node has a range of (2,4--9,36), so the text from new ... to the end of the constructor should be highlighted when I have hovered over or selected the New UAST node.
The text was updated successfully, but these errors were encountered:
We used to have such a thing in the other AST views, where you could click an item and highlight it in the text.
The proposal you made could work in a similar fashion, however, I'm not sure how to implement it exactly.
Getting to the correct range (if present) at any given cursor position seems challenging.
Any ideas on how to approach this?
It would be amazing for verification/usability if hovering over an element in the AST view also highlighted the matching text range in the text editor on the left pane. For example, in this screenshot:
The
New
UAST node has a range of(2,4--9,36)
, so the text fromnew ...
to the end of the constructor should be highlighted when I have hovered over or selected theNew
UAST node.The text was updated successfully, but these errors were encountered: