Skip to content

Commit df66ee2

Browse files
committed
add new snippet levels
1 parent ac08ebc commit df66ee2

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/index.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,15 @@ export enum SnippetLevel {
129129
/** inside a variable value, argument call, default value or similar */
130130
value = 3,
131131
/** Other scope types (for example outside of braces but after a function definition or some other invalid syntax place) */
132-
other = 4
132+
other = 4,
133+
/** Inside a string literal. */
134+
strings = 5,
135+
/** Inside a normal comment */
136+
comment = 6,
137+
/** Inside a documentation comment */
138+
docComment = 7,
139+
/** Inside explicitly declared mixin templates */
140+
mixinTemplate = 8,
133141
}
134142

135143
/**

0 commit comments

Comments
 (0)