File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
src/vs/workbench/contrib/chat/common/promptSyntax/contributions/languageFeatures Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ import { isWindows } from '../../../../../../../base/common/platform.js';
9
9
import { PromptPathAutocompletion } from './providers/promptPathAutocompletion.js' ;
10
10
import { PromptLinkDiagnosticsInstanceManager } from './providers/promptLinkDiagnosticsProvider.js' ;
11
11
import { PromptHeaderDiagnosticsInstanceManager } from './providers/promptHeaderDiagnosticsProvider.js' ;
12
- import { PromptDecorationsProviderInstanceManager } from './providers/decorationsProvider/promptDecorationsProvider.js' ;
13
12
14
13
/**
15
14
* Base list of language feature contributions.
@@ -18,7 +17,12 @@ const CONTRIBUTIONS: TContribution[] = [
18
17
PromptLinkProvider ,
19
18
PromptLinkDiagnosticsInstanceManager ,
20
19
PromptHeaderDiagnosticsInstanceManager ,
21
- PromptDecorationsProviderInstanceManager ,
20
+ /**
21
+ * PromptDecorationsProviderInstanceManager is currently disabled because the only currently
22
+ * available decoration is the Front Matter header, which we decided to disable for now.
23
+ * Add it back when more decorations are needed.
24
+ */
25
+ // PromptDecorationsProviderInstanceManager,
22
26
] ;
23
27
24
28
/**
You can’t perform that action at this time.
0 commit comments