fortinmike/XcodeBoost

Expand Selection

fortinmike opened this issue · 0 comments

What I have in mind is something close to what ReSharper does: expand the selection outward based on scope. For example: (where "^" is the caret)

if (something)
{
    [object1 doSomething:[object2 doSome^thingElse:object3]];
}

Using Expand Selection three times with this selection would result in the inner message send to be selected, then the outer message send, then the whole if statement, etc. until the whole method is selected.