Emmet Toggle Comment HTML 💄

This commit is contained in:
Raymond Zhao
2020-12-18 18:01:15 +00:00
committed by GitHub
parent ea15eb4e5a
commit 6ad2dccc78
2 changed files with 30 additions and 30 deletions

View File

@@ -11,8 +11,8 @@ import { DocumentStreamReader } from './bufferStream';
const startCommentStylesheet = '/*';
const endCommentStylesheet = '*/';
const startCommentHTML = '<!--';
const endCommentHTML = '-->';
const startCommentHTML = '<!-- ';
const endCommentHTML = ' -->';
export function toggleComment(): Thenable<boolean> | undefined {
if (!validate() || !vscode.window.activeTextEditor) {