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
Formerly if we call swap_next("@parameter.inner") while the cursor is at arg2, nothing will happen, because there's no next parameter in the same parent node. Now it will swap with arg3 in f2 because it is the next parameter even though they do not have a common parent node.
Currently, it seems not possible to do this because we only record nodes' range, but it should be easily fixed if we complete #674.
The text was updated successfully, but these errors were encountered:
To record a regression I found while refactoring
main
.Formerly if we call
swap_next("@parameter.inner")
while the cursor is atarg2
, nothing will happen, because there's no next parameter in the same parent node. Now it will swap witharg3
inf2
because it is the next parameter even though they do not have a common parent node.Currently, it seems not possible to do this because we only record nodes' range, but it should be easily fixed if we complete #674.
The text was updated successfully, but these errors were encountered: