Skip to content

Commit 0ceba6e

Browse files
committed
fix(language-core): enable navigation code feature on directive modifiers
1 parent b7a9bbb commit 0ceba6e

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

packages/language-core/lib/codegen/codeFeatures.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,6 @@ const raw = {
5252
navigation: true,
5353
completion: true,
5454
},
55-
withoutHighlightAndNavigation: {
56-
semantic: { shouldHighlight: () => false },
57-
verification: true,
58-
completion: true,
59-
},
6055
withoutHighlightAndCompletion: {
6156
semantic: { shouldHighlight: () => false },
6257
verification: true,

packages/language-core/lib/codegen/template/elementDirectives.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export function* generateModifiers(
144144
ctx,
145145
mod.content,
146146
mod.loc.start.offset,
147-
codeFeatures.withoutHighlightAndNavigation,
147+
codeFeatures.withoutHighlight,
148148
);
149149
yield `: true, `;
150150
}

0 commit comments

Comments
 (0)