We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6a88b6 commit 3cf7b5aCopy full SHA for 3cf7b5a
src/providers/FileSystemProvider/TextSearchProvider.ts
@@ -149,6 +149,12 @@ function searchMatchToLine(
149
// This is in the class description
150
line = descLineToDocLine(content, match.attrline, i);
151
break;
152
+ } else if (match.attr == "Super") {
153
+ // This is a superclass
154
+ if (content[i].includes(match.text)) {
155
+ line = i;
156
+ }
157
+ break;
158
} else {
159
// This is a class keyword or keyword value
160
// Need to keep looping due to the possibility of keywords with multiline values
0 commit comments