Skip to content

Commit e667d12

Browse files
authored
fix: remove unsupported snippet syntax (#115)
Fixes: #101
1 parent 5e743a5 commit e667d12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ function insertTextOf(completion: Completion): string {
122122
switch (completion.kind) {
123123
case 'attribute':
124124
case 'html attribute':
125-
return `${completion.name}="{{}}"`
125+
return `${completion.name}=`;
126126
}
127127
return completion.name;
128128
}

0 commit comments

Comments
 (0)