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

Fixes #8986: Double tab tag closing removes one space from the tab

上级 a07bcd67
......@@ -73,7 +73,7 @@ export class EditorAccessor implements emmet.Editor {
var match = currentLine.match(/<[/]?$/);
if (match) {
if (strings.startsWith(value, match[0])) {
startPosition = { lineNumber: startPosition.lineNumber, column: startPosition.column - 1 - match[0].length };
startPosition = { lineNumber: startPosition.lineNumber, column: startPosition.column - match[0].length };
} else {
return; // ignore
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册