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
We have a few nodes which could have overriding definitions in the same match (example). We have to override the inner one with .start one if this is present.
In the above case, we have to use function.outer if function.outer.start is not available, but the latter otherwise and ignore function.outer. We have to remove the first one as otherwise we will have two starts for the same function.
@function.outer.start are optional decorations for the textobject like doctrings or template declarations. They will be added to the textobject range if present.
The text was updated successfully, but these errors were encountered:
We have a few nodes which could have overriding definitions in the same match (example). We have to override the inner one with
.start
one if this is present.In the above case, we have to use
function.outer
iffunction.outer.start
is not available, but the latter otherwise and ignorefunction.outer
. We have to remove the first one as otherwise we will have two starts for the same function.The text was updated successfully, but these errors were encountered: