From 76121ad4db2b66168f01048d52f00973d97b1224 Mon Sep 17 00:00:00 2001 From: Julius Breckel Date: Wed, 17 Aug 2016 09:52:13 +0200 Subject: [PATCH] Add space after commentStart and before commentEnd --- lib/block-comment-plus.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/block-comment-plus.js b/lib/block-comment-plus.js index beadede..638caec 100644 --- a/lib/block-comment-plus.js +++ b/lib/block-comment-plus.js @@ -25,8 +25,8 @@ function toggle() { let endLanguage = getLanguage(bufferRange.end); // defaults to C based comments - let commentStart = '/*'; - let commentEnd = '*/'; + let commentStart = '/* '; + let commentEnd = ' */'; let addNewLine = false; if (startLanguage !== endLanguage || startLanguage === "plain") {