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
Copy file name to clipboardExpand all lines: packages/cursorless-engine/src/processTargets/modifiers/scopeHandlers/SurroundingPairScopeHandler/InteriorScopeHandler.ts
+8-12Lines changed: 8 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -79,12 +79,10 @@ export class InteriorScopeHandler extends BaseScopeHandler {
79
79
this.languageId,
80
80
);
81
81
82
-
/*
83
-
If the scope type is explicit (ie, the user has specified a scope
84
-
type), then we want to prioritize language scopes. The user might
85
-
have said something like "inside element" and then we don't want to
86
-
yield the interior of the `<div>` pair first.
87
-
*/
82
+
// If the scope type is explicit (ie, the user has specified a scope
83
+
// type), then we want to prioritize language scopes. The user might
84
+
// have said something like "inside element" and then we don't want to
85
+
// yield the interior of the `<div>` pair first.
88
86
if(this.scopeType.explicitScopeType){
89
87
if(languageScopeHandler==null){
90
88
returnpairScopeHandler;
@@ -114,12 +112,10 @@ export class InteriorScopeHandler extends BaseScopeHandler {
0 commit comments