1
1
import type { LanguageScopeSupportFacetMap } from "./scopeSupportFacets.types" ;
2
2
import { ScopeSupportFacetLevel } from "./scopeSupportFacets.types" ;
3
3
4
- const { supported, unsupported , notApplicable } = ScopeSupportFacetLevel ;
4
+ const { supported, notApplicable } = ScopeSupportFacetLevel ;
5
5
6
6
export const markdownScopeSupport : LanguageScopeSupportFacetMap = {
7
- "comment.line" : supported ,
8
7
"comment.block" : supported ,
8
+ "textFragment.comment.block" : supported ,
9
9
10
10
section : supported ,
11
11
"section.iteration.document" : supported ,
@@ -17,10 +17,6 @@ export const markdownScopeSupport: LanguageScopeSupportFacetMap = {
17
17
"collectionItem.unenclosed" : supported ,
18
18
list : supported ,
19
19
20
- // Unsupported
21
- "textFragment.comment.line" : unsupported ,
22
- "textFragment.comment.block" : unsupported ,
23
-
24
20
// Not applicable
25
21
26
22
anonymousFunction : notApplicable ,
@@ -53,6 +49,7 @@ export const markdownScopeSupport: LanguageScopeSupportFacetMap = {
53
49
"className.iteration.document" : notApplicable ,
54
50
"collectionItem.unenclosed.iteration" : notApplicable ,
55
51
command : notApplicable ,
52
+ "comment.line" : notApplicable ,
56
53
"condition.doWhile" : notApplicable ,
57
54
"condition.for" : notApplicable ,
58
55
"condition.if" : notApplicable ,
@@ -133,6 +130,7 @@ export const markdownScopeSupport: LanguageScopeSupportFacetMap = {
133
130
"textFragment.element" : notApplicable ,
134
131
"textFragment.string.multiLine" : notApplicable ,
135
132
"textFragment.string.singleLine" : notApplicable ,
133
+ "textFragment.comment.line" : notApplicable ,
136
134
"type.alias" : notApplicable ,
137
135
"type.argument.formal" : notApplicable ,
138
136
"type.argument.formal.constructor" : notApplicable ,
0 commit comments