提交 cf1596c6 编写于 作者: M Martin Aeschlimann

[html] close tag fix

上级 b66b9871
......@@ -56,7 +56,7 @@ export function doComplete(document: TextDocument, position: Position, doc: HTML
function collectCloseTagSuggestions(afterOpenBracket: number, matchingOnly: boolean) : CompletionList {
let range = getReplaceRange(afterOpenBracket);
let contentAfter = document.getText().substr(offset);
let contentAfter = document.getText().substr(offset, 1);
let closeTag = isWhiteSpace(contentAfter) || startsWith(contentAfter, '<') ? '>' : '';
let curr = node;
while (curr) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册