From 758bf0d85f629159eee3b551d733be553c6d68fe Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Thu, 3 Dec 2015 09:50:00 +0100 Subject: [PATCH] [html] punctuation for tags can not be colored by syntax themes #928 --- src/vs/languages/html/common/htmlTokenTypes.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vs/languages/html/common/htmlTokenTypes.ts b/src/vs/languages/html/common/htmlTokenTypes.ts index e8224bd31ae..e731e759cd4 100644 --- a/src/vs/languages/html/common/htmlTokenTypes.ts +++ b/src/vs/languages/html/common/htmlTokenTypes.ts @@ -6,9 +6,9 @@ import strings = require('vs/base/common/strings'); -export const DELIM_END = 'punctuation.tag.end.html'; -export const DELIM_START = 'punctuation.tag.begin.html'; -export const DELIM_ASSIGN = 'tag.assign.html'; +export const DELIM_END = 'punctuation.definition.meta.tag.end.html'; +export const DELIM_START = 'punctuation.definition.meta.tag.begin.html'; +export const DELIM_ASSIGN = 'meta.tag.assign.html'; export const ATTRIB_NAME = 'entity.other.attribute-name.html'; export const ATTRIB_VALUE = 'string.html'; export const COMMENT = 'comment.html.content';