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 b7a9bbb commit 0ceba6eCopy full SHA for 0ceba6e
packages/language-core/lib/codegen/codeFeatures.ts
@@ -52,11 +52,6 @@ const raw = {
52
navigation: true,
53
completion: true,
54
},
55
- withoutHighlightAndNavigation: {
56
- semantic: { shouldHighlight: () => false },
57
- verification: true,
58
- completion: true,
59
- },
60
withoutHighlightAndCompletion: {
61
semantic: { shouldHighlight: () => false },
62
verification: true,
packages/language-core/lib/codegen/template/elementDirectives.ts
@@ -144,7 +144,7 @@ export function* generateModifiers(
144
ctx,
145
mod.content,
146
mod.loc.start.offset,
147
- codeFeatures.withoutHighlightAndNavigation,
+ codeFeatures.withoutHighlight,
148
);
149
yield `: true, `;
150
}
0 commit comments