Skip to content

Commit e0b6b5b

Browse files
[pre-commit.ci lite] apply automatic fixes
1 parent c26d704 commit e0b6b5b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

packages/cursorless-engine/src/processTargets/modifiers/scopeHandlers/ContiguousScopeHandler.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,13 @@ export class ContiguousScopeHandler extends BaseScopeHandler {
5555
editor: TextEditor,
5656
position: Position,
5757
): Iterable<TargetScope> {
58-
let targetRangeForward = next(
59-
generateTargetRangesInDirection(this.scopeHandler, editor, position, "forward"),
58+
const targetRangeForward = next(
59+
generateTargetRangesInDirection(
60+
this.scopeHandler,
61+
editor,
62+
position,
63+
"forward",
64+
),
6065
);
6166

6267
const targetRangesBackwardIter = generateTargetRangesInDirection(

0 commit comments

Comments
 (0)